IR Remote Analyzer / Receiver With Arduino

by DerGlorreiche in Circuits > Remote Control

7560 Views, 8 Favorites, 0 Comments

IR Remote Analyzer / Receiver With Arduino

NEC.jpg
AllProtocol_SerialMonitor.png
IR Remote Analyzer / Receiver with Arduino

This analyzer receives 40 different IR protocols concurrently and shows the address and code of the received signal.

It uses the Arduino IRMP library, which includes this application as an example as well as other usefull applications!

If you want to analyze your remote or want to control your Arduino application with a spare remote, you need to know the code sent for each key.

A serial or paralell LCD can be attached to operate this as a standalone device without the need of a Serial Monitor.

A similar but more basic instruction can be found at https://www.hackster.io/techmirtz/finding-the-ir-...

BOM

IRMP_UNO_Steckplatine.png
IRMP_UNO_LCD_Steckplatine.png
  • Arduino Nano or UNO
  • Infrared receiver

Optional

  • Serial 1604 LCD
  • Breadboard
  • Jumper wires

Software Installation

After installing the IDE and choosing the right board, open the Library Manager with Ctrl+Shift+I and search for IRMP. Install it and then choose File -> Examples -> Examples from Custom Libraries -> AllProtocols.

Enable the type of LCD you have at line 43 ff. All outputs can be seen also at the Arduino Serial Monitor, so there is no need to attach a LCD for analyzing!

Analyzing / Receiving

AllProtocol_SerialMonitor.png
NUBERT.jpg
DENON.jpg
GRUNDIG.jpg
IR60.jpg
KASEIKYO.jpg
MATSUSHITA.jpg
NEC42.jpg

Run the program and if an IR signal is detected, the built in LED will flash.

If the signal can be decoded the result is printed to Serial output (and the LCD). The trailing R means that this command is a repeat command.

If you need to analyze one of the 10 disabled protocols use the OneProtocol example.