A module to parse the NEC IR remote control protocol in Python
Project description
IRReceiver
A module to parse the NEC IR remote control protocol in Python
Description
This is a fully tested module that creates a parser for 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.
Dependencies
- 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 is run through YAPF before it is committed
Tested On
- A Raspberry Pi (first generation)
- A Yamaha MRX-90M remote
To Install
pip install irreceiver
To Use
- 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
Project Structure
Directory structure should be clear. All code is in the irreceiver
directory.
License
:copyright: Willy Nolan 2020
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
irreceiver-0.9.4.tar.gz
(4.4 kB
view hashes)
Built Distribution
Close
Hashes for irreceiver-0.9.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d262755c7931895cada06f536de30c6ef1d185c85514aa8a15b3b3770becc93d |
|
MD5 | fe0d77693838b06619a84d1eb90bbdc1 |
|
BLAKE2b-256 | e6b3ffdd72340b22d3436124994ce6ddcef15ba5ae94e04d52b79e94033515ee |