Infrared
You can create Homey apps that use Infrared signals to control devices. This allows you to automate devices such as TVs and speakers that don't have "smart" capabilities.
Infrared is a Signal
similar to Radio (433Mhz & 868Mhz), this means that adding support for an Infrared device to your Homey App is done in much the same way as adding a 433Mhz device.
In order to use Infrared in your app will need the homey:wireless:ir
permission. For more information about permissions read the permissions guide.
You can view a working example of a Homey App that uses Infrared at: https://github.com/athombv/com.lg.ir-example
Installation
The homey-rfdriver
implements the basic functionality needed for all infrared apps and implements a higher level interface that you can use to control infrared devices. Install homey-rfdriver
with the following command:
You will also need to copy the infrared pairing templates from node-homey-rfdriver.
Read the RFDriver documentation at https://athombv.github.io/node-homey-rfdriver.
Copy the pair/rf_ir_remote_add.html
and pair/rf_ir_remote_learn.html
files to the drivers/<driver_id>/pair/
folder of your app.
Usage
Now that you have homey-rfdriver
installed and copied the pairing templates, you can add them to your driver's manifest:
Signal definition
Next you need to add the signals you want to send to your manifest, you can define your signals by creating .homeycompose/signals/ir/my_signal.json
. We will explain the basics next but if you want to know more about creating signal definitions your should read the RF 433Mhz/868Mhz guide.
First you need to configure the carrier frequency, number of repetitions for all commands and the signal characteristics. For example:
The carrier
frequencies for infrared are: min: 30000, default: 38000, max: 45000
Now that the signal characteristics are defined you can add commands, for example:
Classes
The only things left to do is to define the right classes, starting with the signal which tells homey-rfdriver
what signal to use (and allows you to override the signal functionality):
Next you need to link create a Driver
that extends RFDriver
and the link your RFSignal
class to it.
And lastly you need to create a Device
that extends RFDevice
and create a mapping from Homey capabilities to the commands you defined for your signal.
Prontohex
Homey also supports Prontohex signal definitions for infrared devices.
Properties
The table below shows the encoding properties in the Prontohex signal definition.
Attribute | Description | Remark |
| Static commands | The Prontohex command string definition |
| Type of Signal | Set to |
Commands
Sometimes, devices have a static set of commands and do not include any dynamic data such as an address. This is the case for most infrared devices. In these cases, the cmds
attribute can be used to predefine all commands. This property consists of an object that maps commands (specified as identifier string) to a prontohex payload (specified as String). The carrier in the prontohex String overrides the carrier in the signal radio specification.
Last updated