Arduino Remote Control Projects

The Arduino remote control project will give lots of ideas to develop new electronic projects. A normal Tv or your DVD player can use for this project. Through this circuit, you can able to control the Home appliances by adding an extra relay circuit to this project, so in this article, I would like to share ideas about remote control based Arduino projects.

Circuit Diagram

ir remote control circuit using arduino
Arduino remote control circuit
Arduino ir remote control circuit

Arduino IR Remote Control Project

The ir remote control working with few components. in this article, a brief explanation is given about the project. For understating of the coding and wiring will be elaborated here. A three LED represents the ON/OFF of each channel when you pressing the corresponding buttons on the remote control.

How to setup an ir remote and receiver on an arduino board

Infrared communication is using as an easy wireless technology having more useful applications. The most important and daily using TV/video remote controls.

There are a lot of Arduino remote control projects are using Infrared for communications. With a simple Ir transmitter and receiver, you can build several electronic projects such as Arduino based robotic cars, distance sensor, TV remote jammier, lots more.

The tutorial explains how the infrared works. after that show you how to set up IR remote and Receiver on arduino. to control Led connected to the arduino.

Infrared working

The infrared lights are different from the normal light you will get from the outside. The difference between the normal light and Ir light is in wavelength and frequency. Using this condition we can control particular devices through their receiving device.

IR transmitter and receiver pair working

Infrared communication is working based on the specific wavelength and frequency, for this communication we need an IR transmitter LED and IR receiver. The IR led produces light in the region of the IR spectrum instead of the visible spectrum.

The IR receiver is a photodiode, which will convert the Infrared light to an electrical signal. and it will look like this:

Infrared signal modulation

The IR signals producing by several light sources like sun, normal bulb, or any hot burning thinks, so this will interfere with the transmission of signals. To avoid this interference from other sources the modulation of the signal has to be carried out. The IR remote sends a modulated IR signal to the receiver after the signals to be converted into a binary signal before going to the Arduino.

The modulated signals will be turned on and off IR led at a specific frequency of 38KHz. This frequency is known as a carrier frequency. The receiver only receives this 38kHz frequency and omits the other frequency that comes from the environment.

This binary numbers will be our Key factor for doing this project.

Connecting IR receiver to an arduino board

The IR receiver has three pins.

  • Vcc – Positive voltage input.
  • Gnd- Ground or negative supply
  • Out – The modulated signal output.
  • Connect the Output connection of the IR receiver to the Arduino Uno pin 11.
  • connect Gnd to the ground supply of the board.
  • connect positive supply to the 5v supply from the Arduino Uno board.

After connecting the IR receiver to Arduino we need to get the binary code for specific buttons you pressing in the remote. We need to perform ir sensor Arduino code serial monitor for identifying the specific code for every button in the remote. to do this follow the steps,

Arduino Programming

arduino board

Copy and past this code to your Arduino IDE software and upload it.

Then go to serial monitor of the Arduino

arduino remote serial monitor
Arduino remote serial monitor

Press any key on the remote and save its binary number displaying in the serial monitor.

pressing button remote control for arduino

After getting all the binary numbers copy the code.

arduino serial monitor working

and connect led or relay driver in Arduino pin number 2,4,7 pins respectively

arduino led remote control

Copy this code and upload it to the Arduino

then replace the binary codes what you gets and upload it to your Arduino board.

replace binary code in arduino remote control
replace binary code in arduino remote control

you are done now press the respective button for on and off the LEDs or relay, you connected I the pin of Arduino.

To control home appliances you needs to add a relay control circuit. The detailed circuit given below. As per the circuit connect all the components.