Feature

●1Set Infrared Remote Control Module Wireless IR Receiver Module DIY Kit HX1838 for Arduino


Description

|
Features:
Latest infrared wireless remote control kit consists Mini Slim 38KHz IR remote control and infrared receiver modules, Mini Slim infrared remote control with 17 function keys, firing distances of up to 8 meters, ideal for a variety of devices in the control room. IR receiver module can receive standard 38KHz modulation remote control signal, through programming, you can achieve remote control signal decoding operation, which can produce a variety of remote control robots and interactive works.Ultra-thin infrared remote control product parameters:
1 Transmission Distance: 8m above (specific and surroundings, the receiver sensitivity and other factors)
2 Effective angle: 60 degrees
3 Sticking Material: 0.125mmPET, the effective life of 20,000 times.
4. Stable quality, cost-effective
5 quiescent current 3-5uA, dynamic current 3-5mA.
#include
int RECV_PIN = 11;
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
  }
}
Step 1: Assemble Circuit:|ou will need one Arduino for this. I used a UNO, but just about any Arduino should work. First wire up the infrared receiver that came with your kit. There are 3 wires, PWR, GND, and SIG, I used port 11 for SIG. Note! some readers have reported that their sensor has different wiring, double check it yourself.
Step 2: Download IR Library|In order to reverse engineer the remote and obtain the codes for each button we are going to need to download and install the following library.
Extract the file in your libraries directory. e.g.  ( C:\electronics\arduino-1.0.5\libraries )

note: I had to rename the library because the name was too long, I just renamed it to IR.
Step 3: