#include <IRremote.h>
IRrecv remote(2);
decode_results code;
void setup()
{
Serial.begin(9600);
remote.enableIRIn();
}
void loop()
{
if (remote.decode(&code))
{
Serial.print("irCode:");
Serial.println(code.value);
remote.resume();
}
}