Universal Arduino IR Receiver Circuit

The project Universal Arduino IR Receiver Circuit works with any IR remote thus can control any electronic or electrical appliance like T.V., Fan, AC, Lighting bulb etc.

Infrared Remote control as you know were introduce much earlier in the seventies. These day must electric/electronics device comes with inbuild infrared control system. Various devices like T.V., fan, AC or even a lighting bulb came with the features like remote control.

But every IR receiver circuit responds only to assigned frequency i.e. it works only on fixed assigned frequency. Thus, every IR remote controlled appliance have their own remote. In order to solve this problem today we came with an idea of universal remote receiver i.e. we can control any electrical or electronic appliance with single remote. We can control electrical bulb, AC or Fan using TV remote. So, in this universal arduino IR receiver you are going to learn how to get HEX code of different IR frequency and use it to control appliance.

Components Required

  1. Arduino UNO Board
  2. Two Different Color LEDs
  3. IR Receiver 1838T
  4. Two 220 Resistors
  5. A remote (Any)
  6. Ten Male to Male Connector

IR Sensor 1838T: We had chosen IR Receiver 1838T due to following reason.

  • It is compact design with built-in dedicated IC.
  • Long range and wide-angle reception.
  • Resist to ambient light and anti-stem design.
  • Low voltage and low power operation.

Circuit Description of Universal Arduino IR Receiver:

The circuit diagram of “Universal Arduino IR Receiver” is shown in figure 1 below. The entire circuit is build around arduino uno board or you can say that arduino uno is the brain of entire circuit because it takes input, process it and produce output as input is given. IR receiver is a transducer which detect infrared ray and change it into electrical signal which is detected by arduino uno board. Here in this circuit we had used two different color LEDs for output because the remote controller we are going to used here have only two switches.

universal arduino IR remote receiver circuit

Working of the circuit Universal Arduino IR Receiver

Different frequency is assigned to different button of IR remote. Every button has unique frequency thus at first, we have detected the frequency of button used to control the appliance. Let say the remote we are using here have two buttons ON and OFF. ON buttons have different frequency then OFF buttons which is detected by the circuit and operate appliance according to assigned value.

So before control the LED using remote let first configure the circuit according to remote. The procedure to find the frequency of different key is shown below.

  1. Gather all the components as shown above and assemble as shown in circuit diagram.
  2. Download the code from below and Add library file IR-Remote to your IDE
  3. Upload IF_Hex.ino in arduino board using arduino IDE.
  4. Open the serial monito and press any remote button in front of IR receiver you will see a HEX code of IR rays.
  5. Note these HEX code and use in main.ino program.
  6. Now your universal remote is ready to use.

Check out other Infrared (IR) based project posted in bestengineeringprojects.com

  1. Infrared Remote Controller Using Arduino
  2. Proximity Detector Circuit Using 555 timer IC
  3. IR Remote Controller Fan Regulator using AT89C2051
  4. DIY Opto Reflector Sensor using 555
  5. Power Saver Circuit Diagram using PIR

Software: The software code of universal arduino IR Receiver is written in arduino programming language and is burn in arduino uno board using arduino IDE. You can download the software code from below. The software code folder contains main.ino, IF_HEX.ino and IR remote library file.

Click Here to Download Software Code

author prototype ir receiver

Leave a Comment