Decode IR Remote Control Signals Of Any Remote Using Arduino
Maybe your like
Embed the widget on your own site
Add the following snippet to your HTML:

In this project you will be going to decode the signal sent by any type of Remote to make Projects
Read up about this project on 
Decode IR Remote Control Signals of any Remote Using Arduino
DIY Inventor7 19,752In this project you will be going to decode the signal sent by any type of Remote to make Projects
BeginnerProtip19,752Things used in this project
Hardware components | |||||
![]() |
| × | 1 |
| |
| × | 1 |
| ||
![]() |
| × | 1 | ||
Software apps and online services | |||||
![]() |
| ||||
Hand tools and fabrication machines | |||||
| |||||
Story
Connect me on Youtube
ClickHere
Introduction
In this project I will show you how to Decode IR Remote Control Signals' of any Remote using Arduino.
The remotes which we use in our home are basically made of IR transmissions for example TV remote, DVD remote, Sound System remote etc. But these signals never interfere with each other because every key in the remote control has unique operation code in Hexadecimal format. By decoding these signals we can know what is the unique code of the key. By knowing the codes we can implement several applications where we can control with same remote.
Working on Basics
IR remote has a button and a microcontroller with IR LED attached. When a button is pressed, a microcontroller identified the button and sends the corresponding modulated signals (codes) to the IR LED. Then, the IR LED sends it to the IR receiver in the appliance.
System in the appliance demodulate the signals(codes) and the checks the function corresponding to it and executes it. Each function has a different code.
Every IR operated appliance has different codes for different function.
Prototype Image's
1 / 7Hookup
Follow the Steps:-
- Connect the First pin from the left of TSOP1738 (OUT pin) with pin 11 of Arduino.
- Hook the Middle pin (GND pin) with the GND pin of Arduino.
- Connect the third and the last pin (VCC pin) with 5V pin of Arduino.
Uploading and Testing
Remember to install the IRremote.h library from here
- Copy or download the code attached with the project.
- Hit upload and open serial monitor.
- Take any remote you want to use or you want the codes off it and press any button.
- Now, see in the serial monitor. You will see a code of the corresponding button you pressed.
- Note the codes on a paper or copy them in a document file on PC.
Watch the Video
Click Here
Read moreSchematics
Circuit Diagram
1. Connect the First pin from the left of TSOP1738 (OUT pin) with pin 11 of Arduino.2. Hook the Middle pin (GND pin) with the GND pin of Arduino.3. Connect the third and the last pin (VCC pin) with 5V pin of Arduino.
Code
- Code
Code
C/C++Upload the Code and See the Code of Button Pressed in Serial Monitor#include <IRremote.h> int RECV_PIN = 11; IRrecv irrecv(RECV_PIN); decode_results results; void setup() { Serial.begin(9600); irrecv.enableIRIn(); // Start the receiver } void loop() { if (irrecv.decode(&results)) { Serial.println(results.value, HEX); irrecv.resume(); // Receive the next value } } //Credits
DIY Inventor
0 projects • 20 followersHello Guys, My name is Krishna Agarwal , and I'm passionate about Making DIY Projects. Here I make Arduino and Robotics related projects. FollowComments
Related channels and tags
- tsop1738
Tag » Arduino Ir Remote Example Code
-
Find The Codes For Your Remote
-
Use An IR Remote Transmitter And Receiver With Arduino
-
Arduino IR Remote Controller Tutorial - Setup And Map Buttons
-
IR Remote And Receiver With Arduino Tutorial (4 Examples)
-
IRremote Arduino Library - GitHub
-
Infrared Remote Control (điều Khiển Bằng Hồng Ngoại) Với Arduino
-
Arduino Infrared Remote Tutorial : 7 Steps - Instructables
-
Arduino IR Remote Control : 4 Steps (with Pictures) - Instructables
-
Arduino - Control LED's With IR Remote Control
-
Setup An IR Remote For An Arduino - The Geek Pub
-
VS1838 Arduino IR Remote
-
Using IR Remote Controls With Arduino | DroneBot Workshop
-
Arduino Based IR Remote Decoder
-
IR Control Kit Hookup Guide - Learn.
_ztBMuBhMHo.jpg?auto=compress%2Cformat&w=48&h=48&fit=fill&bg=ffffff)


