Rayan kiwan
Created November 14, 2022 © CC BY-NC-ND

How to control your Leds using remote control and IR sensor

In this tutorial, I will show you a few steps you should follow to control your led using a remote control and Arduino Uno

IntermediateFull instructions provided16
How to control your Leds using remote control and IR sensor

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
IR receiver (generic)
×1
Infrared Receiver, Remote Control
Infrared Receiver, Remote Control
×1
LED (generic)
LED (generic)
×2
Resistor 330 ohm
Resistor 330 ohm
×2

Story

Read more

Schematics

ir remote control led on/off

Code

ir remote control led on/off

Arduino
#include <IRremote.h>

int RECV_PIN = 2;

IRrecv irrecv(RECV_PIN);
decode_results results;
void setup()
{
Serial.begin(9600);
  irrecv.enableIRIn();


}
void loop(){
  if(irrecv.decode(&results)){             //1 is turn led on
  Serial.println(results.value, HEX);
    switch(results.value){
    case 0xFD08F7:
      digitalWrite(13, HIGH);
      break;
    case 0xFD48B7:
      digitalWrite(12, HIGH);
      break;  	
    case 0xFD8877:
      digitalWrite(13, LOW); // Red Dot is Off
      break;
    case 0xFD28D7:
      digitalWrite(12, LOW);
      break;
    }
    irrecv.resume();
  
  }
  delay(100);

}

Credits

Rayan kiwan
36 projects • 2 followers
Contact

Comments

Please log in or sign up to comment.