A Python Package to parse the NEC IR remote control protocol
This is a fully tested Python package to parse the NEC IR remote control protocol.
The NEC protocol is used by many remotes, you can read about it here.
NOTE: Although there is an example of this sketch that is made for the Raspberry PI, it is unlikely to work. The Raspberry Pi does not have a real time operating system and in my testing this did not work reliably.
- This project has no external dependencies but the example code does depend on being run on a Raspberry Pi.
- All code follows PEP 8 and there is a Github action to run code through YAPF before it is merged to the main branch.
- A Raspberry Pi (first generation)
- A Yamaha MRX-90M remote
pip install irreceiver
- An example file can be found in the
examples
directory. - Here is a basic example of decoding an list of IR timing pulses:
from irreceiver import NecDecoder
decoder = NecDecoder()
# PULSES should be a list of IR pulse timings
message = decoder.decode(PULSES)
# Message will be a number such as 0x00AD where the first byte 00 is the address and the second byte AD is the command
Directory structure should be clear. All code is in the irreceiver
directory.
©️ Willy Nolan 2020