
Components Required
- ESP8266 (NodeMCU)
- IR Led
- IR Receiver
- Wires
Circuit Diagram
This project includes two circuits one by one :
- IR Receiver circuit for capturing the IR codes.
- IR Led circuit for transmitting the codes.
IR Receiver Circuit Diagram
How do remote work?
Every button in the remote has a different code. The code is sent by the remote, decoded by the receiver, and performs that function.
Capturing Codes
1. Goto libraries > favourites > under IRREMOTEESP8266 Examples > IRrecvDemo
2. Make the circuit for the IR receiver. (As shown)
3. Upload the code Open the serial monitor.
4. Press the buttons on your remote Copy the HEX codes for a specific button.
NOTE: CHECK YOUR IR RECEIVER PINOUT. IT MAY BE DIFFERENT.
Here is the 3D Files of Universal IR Blaster.
IR LED Circuit Diagram
After uploading the other code embed this circuit.
Programming ESP8266 for Universal IR Blaster
/************************************************************* | |
Emulate a physical remote via an iOS and Android App. | |
Copyright Gaurav Barwalia 2020 | |
Edited by Naman Kansal | |
Download latest Blynk library here: | |
https://github.com/blynkkk/blynk-library/releases/latest | |
Blynk is a platform with iOS and Android apps to control | |
Arduino, Raspberry Pi and the likes over the Internet. | |
You can easily build graphic interfaces for all your | |
projects by simply dragging and dropping widgets. | |
Downloads, docs, tutorials: http://www.blynk.cc | |
Sketch generator: http://examples.blynk.cc | |
Blynk community: http://community.blynk.cc | |
Follow us: http://www.fb.com/blynkapp | |
http://twitter.com/blynk_app | |
Blynk library is licensed under MIT license | |
This example code is in public domain. | |
*************************************************************/ | |
#define BLYNK_PRINT Serial | |
#if defined(ESP8266) | |
#include <ESP8266WiFi.h> | |
#include <BlynkSimpleEsp8266.h> | |
#else | |
#include <WiFi.h> | |
#endif // ESP8266 | |
#if defined(ESP32) | |
#include <BlynkSimpleEsp32.h> | |
#endif // ESP32 | |
// IR library | |
#include <IRremoteESP8266.h> | |
#include <IRsend.h> | |
const uint16_t kIrLed = 4; // ESP8266 GPIO pin to use. Recommended: 4 (D2). | |
IRsend irsend(kIrLed); // Set the GPIO to be used to sending the message. | |
// You should get Auth Token in the Blynk App. | |
// Go to the Project Settings (nut icon). | |
char auth[] = ""; | |
// Your WiFi credentials. | |
// Set password to "" for open networks. | |
char ssid[] = ""; | |
char pass[] = ""; | |
void setup() { | |
irsend.begin(); | |
#if ESP8266 | |
Serial.begin(115200, SERIAL_8N1, SERIAL_TX_ONLY); | |
#else // ESP8266 | |
Serial.begin(115200, SERIAL_8N1); | |
#endif // ESP8266 | |
#if defined(BLYNK_PRINT) | |
// Debug console | |
Serial.begin(115200); | |
#endif // BLYNK_PRINT | |
Blynk.begin(auth, ssid, pass); | |
} | |
BLYNK_WRITE(V0) { // Power button | |
if (param.asInt() == 1) { | |
Serial.println("starplus"); | |
irsend.sendNEC(0x80BF49B6); | |
delay(1000); | |
irsend.sendNEC(0x80BFE11E); | |
delay(1000); | |
irsend.sendNEC(0x80BF49B6); | |
delay(1000); | |
} | |
else if (param.asInt()==2) { | |
Serial.println("colours"); | |
irsend.sendNEC(0x80BF49B6); | |
delay(1000); | |
irsend.sendNEC(0x80BFE11E); | |
delay(1000); | |
irsend.sendNEC(0x80BF33CC); | |
delay(1000); | |
} | |
else if (param.asInt()==3) { | |
Serial.println("sony"); | |
irsend.sendNEC(0x80BF49B6); | |
delay(1000); | |
irsend.sendNEC(0x80BFE11E); | |
delay(1000); | |
irsend.sendNEC(0x80BFF10E); | |
delay(1000); | |
} | |
else if (param.asInt()==4) { | |
Serial.println("SAB"); | |
irsend.sendNEC(0x80BF49B6); | |
delay(1000); | |
irsend.sendNEC(0x80BFE11E); | |
delay(1000); | |
irsend.sendNEC(0x80BFD12E); | |
delay(1000); | |
} | |
else if (param.asInt()==5) { | |
Serial.println("STAR GOLD"); | |
irsend.sendNEC(0x80BF49B6); | |
delay(1000); | |
irsend.sendNEC(0x80BF13EC); | |
delay(1000); | |
irsend.sendNEC(0x80BF49B6); | |
delay(1000); | |
} | |
else if (param.asInt()==6) { | |
Serial.println("ZEE CLASSIC"); | |
irsend.sendNEC(0x80BF49B6); | |
delay(1000); | |
irsend.sendNEC(0x80BF13EC); | |
delay(1000); | |
irsend.sendNEC(0x80BFD12E); | |
delay(1000); | |
} | |
else if (param.asInt()==7) { | |
Serial.println("ABP"); | |
irsend.sendNEC(0x80BF33CC); | |
delay(1000); | |
irsend.sendNEC(0x80BFE11E); | |
delay(1000); | |
irsend.sendNEC(0x80BFC936); | |
delay(1000); | |
} | |
else if (param.asInt()==8) { | |
Serial.println("NEWS"); | |
irsend.sendNEC(0x80BF33CC); | |
delay(1000); | |
irsend.sendNEC(0x80BFE11E); | |
delay(1000); | |
irsend.sendNEC(0x80BF49B6); | |
delay(1000); | |
} | |
else if (param.asInt()==9) { | |
Serial.println("SPORTS"); | |
irsend.sendNEC(0x80BF718E); | |
delay(1000); | |
irsend.sendNEC(0x80BFE11E); | |
delay(1000); | |
irsend.sendNEC(0x80BF718E); | |
delay(1000); | |
} | |
else if (param.asInt()==10) { | |
Serial.println("CARTOON"); | |
irsend.sendNEC(0x80BF718E); | |
delay(1000); | |
irsend.sendNEC(0x80BFC936); | |
delay(1000); | |
irsend.sendNEC(0x80BF13EC); | |
delay(1000); | |
} | |
else if (param.asInt()==11) { | |
Serial.println("MTV"); | |
irsend.sendNEC(0x80BF718E); | |
delay(1000); | |
irsend.sendNEC(0x80BFF10E); | |
delay(1000); | |
irsend.sendNEC(0x80BF49B6); | |
delay(1000); | |
} | |
else if (param.asInt()==12) { | |
Serial.println("9XM"); | |
irsend.sendNEC(0x80BF718E); | |
delay(1000); | |
irsend.sendNEC(0x80BFF10E); | |
delay(1000); | |
irsend.sendNEC(0x80BF718E); | |
delay(1000); | |
} | |
// else if (param.asInt()==13) { | |
// Serial.println("SONGS"); | |
// irsend.sendNEC(0x80BF718E); | |
// delay(1000); | |
// irsend.sendNEC(0x80BFF10E); | |
// delay(1000); | |
// irsend.sendNEC(0x80BF49B6); | |
// delay(1000); | |
// } | |
else if (param.asInt()==14) { | |
Serial.println("HISTORY"); | |
irsend.sendNEC(0x80BFF10E); | |
delay(1000); | |
irsend.sendNEC(0x80BFE11E); | |
delay(1000); | |
irsend.sendNEC(0x80BFC936); | |
delay(1000); | |
} | |
else if (param.asInt()==15) { | |
Serial.println("DIVYA"); | |
irsend.sendNEC(0x80BFD12E); | |
delay(1000); | |
irsend.sendNEC(0x80BF51AE); | |
delay(1000); | |
irsend.sendNEC(0x80BFD12E); | |
delay(1000); | |
} | |
else if (param.asInt()==16) { | |
Serial.println("FORWARD"); | |
irsend.sendNEC(0x80BF19E6); | |
} | |
else if (param.asInt()==17) { | |
Serial.println("BACKWARD"); | |
irsend.sendNEC(0x80BFE916); | |
} | |
else if (param.asInt()==18) { | |
Serial.println("BACK+"); | |
irsend.sendNEC(0x80BF43BC); | |
} | |
else if (param.asInt()==19) { | |
Serial.println("VOLUME-"); | |
irsend.sendNEC(0x80BF31CE); | |
} | |
else if (param.asInt()==20) { | |
Serial.println("VOLUME+"); | |
irsend.sendNEC(0x80BFBB44); | |
} | |
else if (param.asInt()==21) { | |
Serial.println("MUTE"); | |
irsend.sendNEC(0x80BF39C6); | |
} | |
} | |
void loop() { | |
Blynk.run(); | |
} | |
Line 26 to Line 71 are of simple initialization. Line 74 to 261 is the main code Here I am using only one virtual pin V0 so if the value of V0 pin will be 1 it will trigger "starplus" which has a number 101 so I send the hex values(which I captured earlier) of 101 with a delay of 1 second and so on using else if condition I wrote code for all the channels.
Blynk Setup
- Download the Blynk app from the google play store.
- Sign Up and create your project selecting your board.
- Add menu element by clicking on the + sign.
- Add STEP H and STEP V elements. (Refer Images) I added two buttons for mute and back.
- Now in every element you have to select the V0 pin. (IMPORTANT) In the menu element add channels on the position number that you have given in the code. For ex: In the code when the value of V0 will be 1 it will trigger star plus, Therefore we will add star plus at position 1
- Now add other channels on position according to their values in code.
- Now in STEP V for volume I will add value 19-20 19 for low and 20 for high.
- Similarly we will do for forward and backward.
- ENTER THE AUTH TOKEN, WIFI, PASSWORD TO THE CODE AND UPLOAD IT TO NODEMCU.
IFTTT Setup
- Download IFTTT app.
- Sign up.
- Click on create.
- Click on if > search google assistant.
- Select say a phrase.
- In then search webhook
- http://188.166.206.43/YOUR BLYNK AUTH TOKEN/update/V0
- Method PUT
- Content type > application/json
- Body > ["Add value of your channel"]
- Do the same for all the T.V. channel