Skip to main content

Manage and convert many IR / RF remote protocols

Project description

remoteprotocols

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.

Remote command strings

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.

Command line

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.

API usage

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.

Example Protocol Definition

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

Acknowledgments

Thanks to all of the following sites and projects from where I obtained information about different codec definitions:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

remoteprotocols-0.0.7.tar.gz (28.5 kB view details)

Uploaded Source

Built Distribution

remoteprotocols-0.0.7-py2.py3-none-any.whl (33.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file remoteprotocols-0.0.7.tar.gz.

File metadata

  • Download URL: remoteprotocols-0.0.7.tar.gz
  • Upload date:
  • Size: 28.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.9.5

File hashes

Hashes for remoteprotocols-0.0.7.tar.gz
Algorithm Hash digest
SHA256 d7eaa76ff2137f80bfb2e9e80d4ec0cd36a1177365889f5a2181bc889d96269e
MD5 ea6e5509cfa0e866a957b9859b3ecc3a
BLAKE2b-256 b52e670cbd575ef537c2a5d7740215f94aedb957359fc5d5af437333fe57b5be

See more details on using hashes here.

File details

Details for the file remoteprotocols-0.0.7-py2.py3-none-any.whl.

File metadata

  • Download URL: remoteprotocols-0.0.7-py2.py3-none-any.whl
  • Upload date:
  • Size: 33.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.9.5

File hashes

Hashes for remoteprotocols-0.0.7-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b5371698397bfa255b755b38f6add113be484072a38ddd7a9d31362cdf1c39fb
MD5 275a6db91528aeea59233a60720f23c4
BLAKE2b-256 e33596260ee9d8cc65507af844b09545c3bff3d83c52a14483ce6f53162fd161

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page