Use an IR Remote Transmitter and Receiver with Arduino GPL3+

Содержание

You’ll learn about IR protocol and how to use the IR receiver module.

  • 146,570 views
  • 24 comments
  • 32 respects

Components and supplies

Apps and online services

About this project

In this tutorial, you’ll learn about IR protocol and how to use the IR receiver Module. First, you’ll see how the IR protocol works, and then you will learn to use an IR remote control kit with Arduino. Some practical examples are also provided to help you learn it better.

What You Will Learn

  • What IR is and how it works
  • Introduction of IR Receiver Modules
  • How to use an IR module with Arduino
  • Controlling keyboard with IR remote control

Introduction to IR Protocol

IR or infrared communication is one of the most common methods of wireless communication due to being easy to use and having an affordable price. Infrared light, with a wavelength longer than visible light, is not within the range of human vision. That’s why it’s a good option for wireless communications. When you press a button on your TV control, an LED on your control turns on and off continuously and causes a modulated infrared signal to send from the control to your TV. The command will execute after the signal is demodulated. IR receiver modules are used to receive IR signals. These modules work in 3, 8 KHz frequency. When the sensor is not exposed to any light at its working frequency, the Vout output has a value equal to VS (power supply). With exposing to a 38 kHz infrared light, this output will be zero.

These modules have 3 pins for Vout, VDD, and Ground so it’s very easy to use them in circuits.

Find the Code for each Remote Control Button

In this part, we want to set up a connection between the Arduino and an IR sender and receiver. To do this, we first need to know the code for each button on the remote control. By pressing each button, a specific signal sends to the receiver and will be displayed on the Serial Monitor window.

You need to install the IR library to use an IR module. Download the library from the following link and in the Sketch window, open the Include library option and select IRRemote.h .

This library may be available in your Arduino libraries by default. In this case, you don’t need to install it.

Let’s have a closer look at the code:

Specifying the pin that is connected to receiver module output.

initialization to receive IR signals

irrecv.decode(results) function decodes the received IR signal and store it in variable result. It returns 0 when nothing is received.

Controlling an RGB LED Colors Using the IR Remote Control

After you found the code for each button, you can use it to control the commands. In this example, we connected an RGB LED to Arduino and use the remote control to change the colors. To do this, specify a few buttons on the remote control and save their code. In this example, buttons 1 to 3 are used. Then assign a specific color to each button. At the end by pressing any of the 1 to 3 keys, the LED changes its color.


Источник: create.arduino.cc