Arduino Nano ESP32 - IR Remote Control

You've probably come across the infrared remote control, also called the IR remote control, when using devices like TVs and air conditioners at home... In this guide, we'll learn how to use the infrared (IR) remote control and an infrared receiver to control the Arduino Nano ESP32. In detail, we will learn:

IR controller - IR receiver - ESP32

Hardware Preparation

1×Arduino Nano ESP32
1×USB Cable Type-C
1×IR Remote Controller and Receiver Kit
1×CR2025 Battery
1×Breadboard
1×Jumper Wires
1×(Recommended) Screw Terminal Adapter for Arduino Nano

Or you can buy the following sensor kit:

1×DIYables Sensor Kit 30 types, 69 units
Disclosure: Some of the links provided in this section are Amazon affiliate links. We may receive a commission for any purchases made through these links at no additional cost to you. We appreciate your support.

Overview of IR Remote Control

An IR control system has two components: an IR remote controller and an IR receiver.

  • The IR remote controller is used to send commands using infrared signals.
  • The IR receiver captures and interprets these signals to control the device.

An IR kit typically consists of the two components mentioned above: an IR remote controller and an IR receiver.

IR remote controller

The IR remote controller is a portable device that emits infrared signals. It is designed with a keypad featuring multiple buttons:

  • Each button on the remote controller is assigned a specific function or command.
  • When a button is pressed, the remote emits an infrared signal containing a unique code or pattern linked to the pressed button.
  • These infrared signals fall within the infrared spectrum and are not visible to the human eye.
IR controller
image source: diyables.io

IR Receiver

The IR receiver module is a sensor that detects and receives the infrared signals emitted by the remote controller.

The infrared receiver detects the incoming infrared signals and converts them into the code (command) representing the button pressed on the remote controller.

The IR Receiver can be a sensor or a module. You can use the following choices:

  • IR Receiver Module only
  • IR Receiver Sensor only
  • IR Receiver Sensor + Adapter
IR Receiver sensor module
image source: diyables.io
IR Receiver sensor adapter
image source: diyables.io

IR Receiver Pinout

IR receiver module or sensor has three pins:

  • VCC pin: Connect this pin to the 3.3V or 5V pin of the Arduino Nano ESP32 or external power source.
  • GND pin: Connect this pin to GND pin of the Arduino Nano ESP32 or external power source..
  • OUT (Output) pin: This pin is the output pin of the IR receiver module. Connected to a digital input pin on the Arduino Nano ESP32.

How It Works

When user presses a button on the IR remote controller

  • The IR remote controller encodes the command corresponding to the button to the infrared signal via a specific protocol
  • The IR remote controller emits the encoded infrared signal
  • The IR receiver receives the encoded infrared signal
  • The IR receiver decoded the encoded infrared signal in to the command
  • The Arduino Nano ESP32 reads the command from the IR receiver
  • The Arduino Nano ESP32 maps the command to the key pressed

When a button is pressed on the IR remote controller, the following sequence of events occurs:

  • The IR remote controller encodes the button's command into an infrared signal using a specific protocol.
  • The encoded infrared signal is emitted by the IR remote controller.
  • The IR receiver captures and receives the encoded infrared signal.
  • The IR receiver decodes the infrared signal, converting it back into the original command.
  • The Arduino Nano ESP32 reads and retrieves the command from the IR receiver.
  • The Arduino Nano ESP32 then maps the received command to the corresponding button that was pressed on the IR remote controller.

In essence, these steps outline how the IR remote controller's button press is transformed into a recognizable command that can be understood and processed by the Arduino Nano ESP32.

Regenerate response

It may appear complicated, but don't worry. Thanks to the user-friendly DIYables_IRcontroller library, it becomes incredibly easy to accomplish.

Wiring Diagram

Wiring diagram between Arduino Nano ESP32 and IR Receiver Module

The wiring diagram between Arduino Nano ESP32 and IR Remote Control

This image is created using Fritzing. Click to enlarge image

Wiring diagram between Arduino Nano ESP32 and IR Receiver Sensor

The wiring diagram between Arduino Nano ESP32 and IR Remote Control

This image is created using Fritzing. Click to enlarge image

Wiring diagram between Arduino Nano ESP32 and IR Receiver Sensor and Adapter

Before connecting the IR receiver sensor to the ESP32, you have the option to connect it to the adapter. This allows for easier integration and setup of the IR receiver sensor with the Arduino Nano ESP32.

Arduino Nano ESP32 IR remote control receiver adapter
image source: diyables.io

How To Program For IR Remote Controller

  • Include the library:
#include <DIYables_IRcontroller.h> // Library for IR Receiver
  • Declare a DIYables_IRcontroller_17 or DIYables_IRcontroller_21 object corresponds with 17-key or 21-key IR remote controllers:
DIYables_IRcontroller_17 irController(IR_RECEIVER_PIN, 200); // debounce time is 200ms // OR DIYables_IRcontroller_21 irController(IR_RECEIVER_PIN, 200); // debounce time is 200ms
  • Initialize the IR Controller.
irController.begin();
  • In the loop, check if a key is pressed or not. If yes, get the key
Key17 key = irController.getKey(); // if using 17-key IR controller // OR Key21 key = irController.getKey(); // if using 21-key IR controller
  • After detecting a key press, you can perform actions based on each key.

Arduino Nano ESP32 Code

/* * This Arduino Nano ESP32 code was developed by newbiely.com * * This Arduino Nano ESP32 code is made available for public use without any restriction * * For comprehensive instructions and wiring diagrams, please visit: * https://newbiely.com/tutorials/arduino-nano-esp32/arduino-nano-esp32-ir-remote-control */ #include <DIYables_IRcontroller.h> // DIYables_IRcontroller library #define IR_RECEIVER_PIN D7 // The Arduino Nano ESP32 pin connected to IR receiver DIYables_IRcontroller_17 irController(IR_RECEIVER_PIN, 200); // debounce time is 200ms void setup() { Serial.begin(9600); irController.begin(); } void loop() { Key17 key = irController.getKey(); if (key != Key17::NONE) { switch (key) { case Key17::KEY_1: Serial.println("1"); // TODO: YOUR CONTROL break; case Key17::KEY_2: Serial.println("2"); // TODO: YOUR CONTROL break; case Key17::KEY_3: Serial.println("3"); // TODO: YOUR CONTROL break; case Key17::KEY_4: Serial.println("4"); // TODO: YOUR CONTROL break; case Key17::KEY_5: Serial.println("5"); // TODO: YOUR CONTROL break; case Key17::KEY_6: Serial.println("6"); // TODO: YOUR CONTROL break; case Key17::KEY_7: Serial.println("7"); // TODO: YOUR CONTROL break; case Key17::KEY_8: Serial.println("8"); // TODO: YOUR CONTROL break; case Key17::KEY_9: Serial.println("9"); // TODO: YOUR CONTROL break; case Key17::KEY_STAR: Serial.println("*"); // TODO: YOUR CONTROL break; case Key17::KEY_0: Serial.println("0"); // TODO: YOUR CONTROL break; case Key17::KEY_SHARP: Serial.println("#"); // TODO: YOUR CONTROL break; case Key17::KEY_UP: Serial.println("UP"); // TODO: YOUR CONTROL break; case Key17::KEY_DOWN: Serial.println("DOWN"); // TODO: YOUR CONTROL break; case Key17::KEY_LEFT: Serial.println("LEFT"); // TODO: YOUR CONTROL break; case Key17::KEY_RIGHT: Serial.println("RIGHT"); // TODO: YOUR CONTROL break; case Key17::KEY_OK : Serial.println("OK"); // TODO: YOUR CONTROL break; default: Serial.println("WARNING: undefined key:"); break; } } }
/* * This Arduino Nano ESP32 code was developed by newbiely.com * * This Arduino Nano ESP32 code is made available for public use without any restriction * * For comprehensive instructions and wiring diagrams, please visit: * https://newbiely.com/tutorials/arduino-nano-esp32/arduino-nano-esp32-ir-remote-control */ #include <DIYables_IRcontroller.h> // DIYables_IRcontroller library #define IR_RECEIVER_PIN D7 // The Arduino Nano ESP32 pin connected to IR receiver DIYables_IRcontroller_21 irController(IR_RECEIVER_PIN, 200); // debounce time is 200ms void setup() { Serial.begin(9600); irController.begin(); } void loop() { Key21 key = irController.getKey(); if (key != Key21::NONE) { switch (key) { case Key21::KEY_CH_MINUS: Serial.println("CH-"); // TODO: YOUR CONTROL break; case Key21::KEY_CH: Serial.println("CH"); // TODO: YOUR CONTROL break; case Key21::KEY_CH_PLUS: Serial.println("CH+"); // TODO: YOUR CONTROL break; case Key21::KEY_PREV: Serial.println("<<"); // TODO: YOUR CONTROL break; case Key21::KEY_NEXT: Serial.println(">>"); // TODO: YOUR CONTROL break; case Key21::KEY_PLAY_PAUSE: Serial.println(">||"); // TODO: YOUR CONTROL break; case Key21::KEY_VOL_MINUS: Serial.println("–"); // TODO: YOUR CONTROL break; case Key21::KEY_VOL_PLUS: Serial.println("+"); // TODO: YOUR CONTROL break; case Key21::KEY_EQ: Serial.println("EQ"); // TODO: YOUR CONTROL break; case Key21::KEY_100_PLUS: Serial.println("100+"); // TODO: YOUR CONTROL break; case Key21::KEY_200_PLUS: Serial.println("200+"); // TODO: YOUR CONTROL break; case Key21::KEY_0: Serial.println("0"); // TODO: YOUR CONTROL break; case Key21::KEY_1: Serial.println("1"); // TODO: YOUR CONTROL break; case Key21::KEY_2: Serial.println("2"); // TODO: YOUR CONTROL break; case Key21::KEY_3: Serial.println("3"); // TODO: YOUR CONTROL break; case Key21::KEY_4: Serial.println("4"); // TODO: YOUR CONTROL break; case Key21::KEY_5: Serial.println("5"); // TODO: YOUR CONTROL break; case Key21::KEY_6: Serial.println("6"); // TODO: YOUR CONTROL break; case Key21::KEY_7: Serial.println("7"); // TODO: YOUR CONTROL break; case Key21::KEY_8: Serial.println("8"); // TODO: YOUR CONTROL break; case Key21::KEY_9: Serial.println("9"); // TODO: YOUR CONTROL break; default: Serial.println("WARNING: undefined key:"); break; } } }

Detailed Instructions

  • If this is the first time you use Arduino Nano ESP32, see how to setup environment for Arduino Nano ESP32 on Arduino IDE.
  • Open the Library Manager by clicking on the Library Manager icon on the left navigation bar of Arduino IDE
  • Search "DIYables_IRcontroller", then find the DIYables_IRcontroller library by DIYables
  • Click Install button to install DIYables_IRcontroller library.
Arduino Nano ESP32 DIYables_IRcontroller library
  • You will be asked for installing the library dependency as below image:
Arduino Nano ESP32 IRremote library
  • Click Install all button to install the dependency
  • Copy the above code and open with Arduino IDE
  • Click Upload button on Arduino IDE to upload code to Arduino Nano ESP32
  • Press keys on the remote controller one by one
  • Check out the result on the Serial Monitor.
  • When you press the keys on a 21-key IR controller one by one, the following is the result:
COM6
Send
9 8 7 6 5 4 3 2 1 0 200+ 100+ EQ + – || >> << CH+ CH CH-
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

You now have the ability to customize the code and control different devices like LEDs, fans, pumps, actuators, and more using IR remote controllers. This means you can make changes to the code to make these devices respond to your commands sent through the remote control.

Video Tutorial

※ OUR MESSAGES

  • As freelancers, We are AVAILABLE for HIRE. See how to outsource your project to us
  • Please feel free to share the link of this tutorial. However, Please do not use our content on any other websites. We invested a lot of effort and time to create the content, please respect our work!