Note: I'm migrating from gonzalo123.com to here. When I finish I'll swap the DNS to here. The "official" blog will be always gonzalo123.com

      Controlling bedside lamp with the TV's remote using Arduino and IR receiver.

      I’ve got a new Arduino board (Arduino nano) and I want to hack a little bit. Today I want to play with IR receiver. My idea is to use my TV’s remote and switch on/off one bedside lamp, using one relay. It’s a simple Arduino program. First we need to include de IRremote library.

      #include <IRremote.h>
       
      #define IR 11
      #define RELAY 9
       
      IRrecv irrecv(IR);
      IRsend irsender;
      decode_results results;
       
      unsigned long code;
       
      void setup()
      {
        pinMode(RELAY, OUTPUT);
        digitalWrite(RELAY, LOW);
       
        irrecv.blink13(true);
        irrecv.enableIRIn();
      }
       
      void loop() {
        if (irrecv.decode(&results)) {
          unsigned long current = results.value;
          if (current != code) {
            code = current;
            switch (code) {
              case 3772833823:
                digitalWrite(RELAY, HIGH);
                break;
              case 3772829743:
                digitalWrite(RELAY, LOW);
                break;
            }
          }
       
          irrecv.resume();
          delay(100);
        }
      }
      
      

      Normally IR receivers have three pins. Vcc (5V), Gnd and signal. We only need to connect the IR receiver to our Arduino and see which hex codes uses our TV’s remote. Then we only need to fire our relay depending on the code.

      The circuit:

      The hardware:

      • 1 Arduino Nano
      • 1 IR receiver
      • 1 Relay
      • 1 Red led
      • a couple of pull down resistors

      youtube

      Source code is available in my github.

      comments powered by Disqus