The geeekus Infrared IR Wireless Remote Control Kit for Arduino consists of a infrared remote control with 17 function keys and a 38KHz infrared receiver module, with the capabiltiy to transmit distances of up to 5-8 meters.
This IR receiver module can receive a standard 38KHz modulation remote control signal.
This module allows you to design a variety of remote control robots and interactive works. You can decode the remote control signal through Arduino programming.
The Kit includes:
-IR Remote Control
-CR2025 Coin Cell Battery
-IR Receiver Breakout Board x 1
-Jumper Wires
Wiring Diagram

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
}
}