Ks0088 New Infrared IR Wireless Remote Control Module Kits for Arduino: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
<br>
==New Infrared Wireless Remote Control Module Kit For Arduino==
==New Infrared Wireless Remote Control Module Kit For Arduino==
<br>[[File:KS0088) (1).jpg|500px|frameless|thumb]]<br>
<br>[[File:KS0088-1.png|500px|frameless|thumb]]<br>


<br>
==Kit Introduction==
==Kit Introduction==
Arduino kit of ultra-thin Mini infrared wireless remote control, infrared remote control and 38 KHZ infrared receiving module. The Mini ultra-thin remote control has 17 function keys, the infrared emission furthest distance up to 8 meters, suitable for controlling indoor devices of all kinds. Infrared remote control receiving module can receive standard 38 KHZ modulation signals, by programming the Arduino, the remote control signal decoding operation can be realized, which can be used in all kinds of remote control robots and interactive work.<br>
Arduino kit of ultra-thin Mini infrared wireless remote control, infrared remote control and 38 KHZ infrared receiving module. <br>
The Mini ultra-thin remote control has 17 function keys, the infrared emission furthest distance up to 8 meters, suitable for controlling indoor devices of all kinds. <br>
Infrared remote control receiving module can receive standard 38 KHZ modulation signals, by programming the Arduino, the remote control signal decoding operation can be realized, which can be used in all kinds of remote control robots and interactive work. <br>


<br>
==Specification ==
==Specification ==
Battery: CR2025 Button batteries (Included) <br>
* Battery: CR2025 Button batteries (Included) <br>
Transmission Distance: up to 8m (depending on the surrounding environment, sensitivity of receiver etc. <br>
* Transmission Distance: up to 8m (depending on the surrounding environment, sensitivity of receiver etc. <br>
Effective Angle: 60° <br>
* Effective Angle: 60° <br>
Static Current: 3-5uA, Dynamic Current: 3-5mA <br>
* Static Current: 3-5uA, Dynamic Current: 3-5mA <br>
Remote size:8.5 x 4 x 0.65cm(L x W x H) <br>
Note: Due to the difference between different monitors, the picture may not reflect the actual color of the item. <br>


<span style=color:red> Note: Due to the difference between different monitors, the picture may not reflect the actual color of the item. <br>
<br>
==Connection Diagram ==
==Connection Diagram ==
<br>[[File:ks0068 24-4.png|500px|frameless|thumb]]<br>
<br>[[File:KS0088-2.png|600px|frameless|thumb]]<br>


<br>
==Sample Code ==
==Sample Code ==
Download the Libraries of IRremote:[http://www.keyestudio.com/files/index/download/id/1507688457/]
*[http://www.keyestudio.com/files/index/download/id/1507688457/   Download the Libraries of IRremote]
<br>
<pre>
<pre>
#include <IRremote.h>  
#include <IRremote.h>  
Line 37: Line 46:
</pre>
</pre>


<br>
== Documents ==
== Documents ==


'''PDF'''
* '''PDF'''<br>
 
https://drive.google.com/open?id=1hNIRHK0yQPfjFMFO5X8QI4YkgI4r3TfO
https://drive.google.com/open?id=1hNIRHK0yQPfjFMFO5X8QI4YkgI4r3TfO


'''Download Link of Libraries IRremote'''
* '''Download Link of Libraries IRremote'''<br>
https://drive.google.com/open?id=1fLY5wu361pjVysecY1OXNr-aPO_L-Ymp


https://drive.google.com/open?id=1fLY5wu361pjVysecY1OXNr-aPO_L-Ymp


<br>
== Buy From ==
== Buy From ==
'''Official Website'''


http://www.keyestudio.com/keyestudio-infrared-wireless-remote-control-module-kits-for-arduino.html
*[https://www.keyestudio.com/free-shipping-keyestudio-ir-receiver-module-kitreceiver-moduleremote-controller3pin-f-m-dupont-line-for-arduino-p0252.html   '''Official Website''']




[[Category: Starter Kit]]
[[Category: Module ]]

Revision as of 10:43, 16 April 2019


New Infrared Wireless Remote Control Module Kit For Arduino


thumb


Kit Introduction

Arduino kit of ultra-thin Mini infrared wireless remote control, infrared remote control and 38 KHZ infrared receiving module.
The Mini ultra-thin remote control has 17 function keys, the infrared emission furthest distance up to 8 meters, suitable for controlling indoor devices of all kinds.
Infrared remote control receiving module can receive standard 38 KHZ modulation signals, by programming the Arduino, the remote control signal decoding operation can be realized, which can be used in all kinds of remote control robots and interactive work.


Specification

  • Battery: CR2025 Button batteries (Included)
  • Transmission Distance: up to 8m (depending on the surrounding environment, sensitivity of receiver etc.
  • Effective Angle: 60°
  • Static Current: 3-5uA, Dynamic Current: 3-5mA

Note: Due to the difference between different monitors, the picture may not reflect the actual color of the item.


Connection Diagram


thumb


Sample Code


#include <IRremote.h> 
int RECV_PIN = 11; //define input pin on Arduino 
IRrecv irrecv(RECV_PIN); 
decode_results results; 
void setup() 
{ 

Serial.begin(9600); 
irrecv.enableIRIn(); // Start the receiver 
} 
void loop() { 
if (irrecv.decode(&results)) { 
Serial.println(results.value, HEX); 
irrecv.resume(); // Receive the next value 
}
} 


Documents

  • PDF

https://drive.google.com/open?id=1hNIRHK0yQPfjFMFO5X8QI4YkgI4r3TfO

  • Download Link of Libraries IRremote

https://drive.google.com/open?id=1fLY5wu361pjVysecY1OXNr-aPO_L-Ymp



Buy From