# IR gateway

There is two methods for finding the IR codes you want to replicate:

  1. Point the remote control to an IR receiver see Receiving data from IR signal & Send data by MQTT to convert it on IR signal
  2. Find the code corresponding to your devices with IR global cache database https://irdb.globalcache.com/ see Send data by MQTT from Global cache database to convert it on IR signal

Here is the List of protocols (opens new window) supported by OMG, even if your device brand is not in the list you can still use raw IR data or GlobalCache database.

# Receiving data from IR signal

Subscribe to all the messages with mosquitto or open your MQTT client software: mosquitto_sub -t +/# -v And press your IR remote control in front of the receiver led you should see the following messages for example:

home/OpenMQTTGateway/IRtoMQTT {"value":875849879,"protocol":7,"protocol_name":SAMSUNG,"bits":32,"raw":"4534,4432,612,518,614,516,616,1618,618,1616,618,512,618,1618,608,524,612,518,616,514,618,512,616,1618,616,1618,618,514,616,1618,616,514,616,514,618,512,616,1618,618,1618,618,514,610,1622,616,514,618,514,614,516,616,1618,618,512,618,512,618,1616,550,580,618,1616,612,1624,618,1616,618"}
1

With an hexadecimal value:

{"value":9938405643,"protocol":55,"bits":35,"hex":"0x25060090B","protocol_name":"TECO"}
1

To receive big dump of raw data you need first to modify the config_IR.h (opens new window) and uncomment DumpMode true

Unknown protocols are filtered by default, if you want to see the unknown protocols set into config_IR.h (opens new window) #define pubIRunknownPrtcl true instead of false

IR serial

You can take this code and try to reproduce it with the gateway either by using decimal value or the raw value.

# Send data by MQTT to convert it on IR signal

With the IR gateway you need to put on the topic the protocol_name you want to use to send the signal, the different protocols implemented are here (opens new window)

Exhaustive list here (opens new window)

For example if I want to send a command to a Sony TV you can use the following command:

mosquitto_pub -t home/OpenMQTTGateway/commands/MQTTtoIR -m '{"value":551489775,"protocol_name":"SONY"}'

The code after the -m represent the payload you want to send.

You could alternatively use an hex value (bits is the number of hexadecimal values): mosquitto_pub -t home/OpenMQTTGateway/commands/MQTTtoIR -m '{"hex":"0x250600090B","bits":5,"protocol_name":"TECO"}'

or

mosquitto_pub -t home/OpenMQTTGateway/commands/MQTTtoIR -m '{"hex":"0xA6BCF20040600020000000000519","bits":14,"protocol_name":"HAIER_AC_YRW02"}'

If you don’t want to use special parameters for IR just use value key, the protocol per default is NEC

mosquitto_pub -t home/OpenMQTTGateway/commands/MQTTtoIR -m '{"value":551489775}'

NOTE: on Arduino Uno most of the protocols are not enable per default due to memory constraints (it is not the case for MEGA), to enable them go to User_config.h (opens new window) and uncomment the #define corresponding the protocols you want:

//#define IR_COOLIX
//#define IR_Whynter
//#define IR_LG
//#define IR_Sony
//#define IR_DISH
//#define IR_RC5
//#define IR_Sharp
#define IR_SAMSUNG
1
2
3
4
5
6
7
8

# Send data by MQTT from Global Caché database to convert it on IR signal

The website https://irdb.globalcache.com/ contains an important database of IR codes of various devices brand. By registering and asking the code you will receive a code as the example below:

code1: sendir,1:1,1,38000,1,69,340,169,20,20,20,20,20,64,20,20,20,20,20,20,20,20,20,20,20,64,20,64,20,20,20,64,20,64,20,64,20,64,20,64,20,64,20,64,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,64,20,64,20,64,20,64,20,64,20,64,20,1544,340,85,20,3663
1

Extract this part of the code:

38000,1,69,340,169,20,20,20,20,20,64,20,20,20,20,20,20,20,20,20,20,20,64,20,64,20,20,20,64,20,64,20,64,20,64,20,64,20,64,20,64,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,64,20,64,20,64,20,64,20,64,20,64,20,1544,340,85,20,3663
1

and publish it to MQTT with the subject containing IR_GC:

mosquitto_pub -t home/OpenMQTTGateway/commands/MQTTtoIR -m '{"raw":"38000,1,1,171,171,21,64,21,21,21,21,21,21,21,21,21,21,21,21,21,64,21,64,21,21,21,21,21,21,21,21,21,21,21,21,21,64,21,21,21,21,21,21,21,64,21,21,21,21,21,21,21,21,21,64,21,64,21,64,21,21,21,64,21,64,21,64,21,64,21,1114","protocol_name":"GC"}'
1

You should be able to command your devices without having listened with the IR receiver or if your protocol is unknown by the IRremote library

# Send data by MQTT with advanced IR parameters

IR sending support two advanced parameters; bits length and repeat number.

The example below will send the following advanced parameters bits: 14 and repeat:4 times for a Sony protocol:

mosquitto_pub -t home/OpenMQTTGateway/commands/MQTTtoIR -m '{"value":551489775,"protocol_name":"NEC","repeat":4,"bits":14}'
1

# Send raw IR data by MQTT

Publish your code like below

mosquitto_pub -t home/OpenMQTTGateway/commands/MQTTtoIR -m '{"raw":"8850,4450,600,550,550,550,600,1600,600,550,600,500,600,500,600,550,600,500,600,1650,600,1600,600,550,600,1600,600,1650,600,1600,600,1650,600,1600,600,550,600,500,600,550,550,1650,600,500,600,550,600,500,600,550,550,1650,600,1650,550,1650,600,550,550,1650,600,1650,550,1650,600,1650,600","protocol_name":"Raw"}'
1

With big raw array you may cross the limit of default payload size. In this case the gateway will not receive the message or will not send it to the broker. In this case the best way is to use hex values instead, but if you can't you may change the parameters below: In User_config.h replace:

# define JSON_MSG_BUFFER 512
# define mqtt_max_packet_size 1024
1
2

by

# define JSON_MSG_BUFFER 1280
# define mqtt_max_packet_size 1280
1
2

# Repeat the IR signal OpenMQTTGateway receive

So as to repeat the IR signal received by the gateway once set the following parameter to true in config_IR.h (opens new window) #define repeatIRwMQTT true

# Raw IR signal forwarding

So as to repeat the raw IR signal received by the gateway, uncomment and set the following parameter to true in config_IR.h (opens new window) #define RawDirectForward true