Pandora d605 codegrabber
#include <iostream> using namespace std; // undefine the byte type to make sure its treated as a byte #undef byte int main() { byte pin = 4; // start the ir receiver irrecv irrecv(pin); irrecv.enableIRIn(); // wait for the next ir code while (1) { if (irrecv.decode(&results)) { // print the result for debugging purposes Serial.println(results.value, HEX); // start listening again irrecv.resume(); } delay(100); } }