remoteprotocols
is a command line utility and a Python's library to convert between more than 20 encoded IR and 5 RF remote protocols (nec, jvc, RC switch, see full protocol list) and 4 raw formats (pronto, Broadlink, Xiaomi miio, raw durations) and between those. The goal is to be able to use any existing code listing with any transmitter, and to be able to decode raw signal received by any device into the proper encoded format.
To interact with remoteprotocols you'll be using remote commands to encode/decode/convert using the following syntax:
protocol:<arg 1>:<arg 2>: ... :<arg n>
# Example signatures
sony:<data>:<nbits?=12>
toshiba_ac:<rc_code_1>:<rc_code_2?=0>
# Example usage
nec:0x7A:0x57
You can get a list of all supported protocols and their command signatures here, and from the command line.
Optional arguments can be omitted, with empty ::
in the middle or completely omitting the colon at the end.
You can use remoteprotocols from the command line:
usage: remoteprotocols [-h] [-v] command ...
remoteprotocols v0.0.1
positional arguments:
command Command to run:
validate-protocol
Validate a protocol definition file.
validate-command
Validate a send command string(s).
encode Encodes command string(s) into raw signal (durations).
convert Converts command string(s) to other protocols.
list List supported protocols.
optional arguments:
-h, --help show this help message and exit
-v, --version Show version information.
To interact with remoteprotocols from your own program you import it and interact with it thru the registry, which has all built-in protocol definitions
from remoteprotocols import ProtocolRegistry
protocols = ProtocolRegistry()
matches = protocols.convert("nec:0x7A:0x57", 0.2, ["durations", "broadlink"])
Main ProtocolRegistry methods:
-
convert(command:str, tolerance: float, codec_filter:list[str]) -> list[DecodeMatch] Converts a given command into other protocols (all or filtered). Returns a list of DecodeMatch objects with the successful conversions, or an empty list if it couldn't convert. The match has the following attributes:
- protocol: the matched protocol as a ProtocolDef object
- args: an array of parsed arguments (including default ones)
- tolerance: the tolerance needed to match this protocol (lower better match)
- uniquematch: boolean indicating if the match is unique for this protocol. It should always be true for well defined protocols. When false, it means that the returned match is one out of multiple results that would encode in the same signal
- missing_bits: array of bitmasks of bits for each argument, that could not be decoded, and thus any value in those bits would be a valid result. If any mask is non zero, then the match is not unique for the protocol
- toggle_bit: state of the toggle bit (internal argument). Only relevant for protocols that use it (like RC5)
-
decode(signal: SignalData, tolerance: float, protocol: Optional[list[str]])-> list[DecodeMatch]
Decodes a signal (optional frequency & array of durations) and returns a list of all matching protocols and corresponding decoded arguments. It decodes into all known protocols or a filtered subset.
-
parse_command(command: str)-> RemoteCommand
Parses and validates a command string into a RemoteCommand object. It raises
voluptuous.Invalid
exception if there is any parsing problem.
Encoded protocols are easily defined using an intuitive declarative syntax in the definitions yaml file, which is then used to both encode and decode.
nec:
desc: NEC IR code (in LSB form)
type: IR
args:
- name: address
max: 16bits
desc: Address to send
print: 04X
- name: command
max: 16bits
desc: NEC command to send
print: 04X
timings:
frequency: 38000
unit: 1
one: [560, -1690]
zero: [560, -560]
header: [9000, -4500]
footer: [560]
pattern: header {address LSB 16} {command LSB 16} footer
Thanks to all of the following sites and projects from where I obtained information about different codec definitions:
- ESPHome
- IRremoteESP8266
- IRMP
- MakeHex
- IrScrutinizer
- python-miio for Xiaomi miio raw format
- python-broadlink for Broadlink raw format
- harctoolbox for Pronto