Control LED Using IR Remote : Simple Using Arduino

Control LED Using IR Remote Simple (1)

Control LED Using IR Remote Simple (1)

 

 

 

 

 

 

 

 

Hello everyone, In this instructables we will control LED using IR remote.

Step 1: Gather the PartsGather the Parts 1 (1)

 

 

 

 

 

 

 

 

  1. A breadboard
  2. A LED
  3. A 220ohm resistor
  4. An Arduino UNO
  5. A TSOP382 IR receiver
  6. Some jumper or hookup wires

Step 2: WiringWiring 3 (2)

 

 

 

 

 

 

 

 

 

 

 

Hookup all the components according to the circuit diagram shown above.

Step 3: Receive the IR Signals From the RemoteReceive the IR Signals

 

 

 

 

 

 

 

 

Download Ken Shirriffs IR library from github then add the library to “Arduino installation location\libraries\”

Upload the following code to your arduino:

#include <IRremote.h

int IR_Recv = 2; //IR Receiver Pin 2

IRrecv irrecv(IR_Recv);

decode_results results;

void setup(){

pinMode(13, OUTPUT);

Serial.begin(9600); //starts serial communication

irrecv.enableIRIn(); // Starts the receiver

}

void loop(){

if (irrecv.decode(&results))

{

long int decCode = results.value;

Serial.println(decCode);

irrecv.resume();

}

}

Then open the serial monitor on your arduino IDE and receive IR decimal signals by pressing buttons on your remote for this project we’ll need two IR decimal signals.
For me the IR decimal values are “3733801123” and “403429887” for Select and Power button respectively.

Step 4: The Final CodeCode (1)

 

 

 

 

 

 

 

Upload the following code to your arduino after replacing 3733801123 and 403429887 with your IR remote decimal code:

#include <IRremote.h>

int IR_Recv = 2; //IR Receiver Pin 2

IRrecv irrecv(IR_Recv);

decode_results results;

void setup(){

pinMode(13, OUTPUT);

Serial.begin(9600); //starts serial communication

irrecv.enableIRIn(); // Starts the receiver

}

void loop(){

if (irrecv.decode(&results))

{

long int decCode = results.value;

Serial.println(decCode);

if (results.value == 3733801123) //Select button

{

digitalWrite(13, HIGH);

Serial.println(“LED turned ON”);

}

if (results.value == 403429887) //Power button

{

digitalWrite(13, LOW);

Serial.println(“LED turned OFF”);

}

irrecv.resume();

}

}

Step 5: DoneDone 1 (2)

 

 

 

 

 

 

 

Read more: Control LED Using IR Remote : Simple

Leave a Comment

Your email address will not be published. Required fields are marked *