This repository provides an ORCON RF15 mechanical ventilation message decoder class. It can also use a Raspberry Pi + CC1101 transceiver to listen to traffic and decode it in real time.
The protocol is based on the Honeywell Evohome protocol
- Clone this repository
- virtualenv env
- Activate the virtualenv
- pip install spidev RPi.GPIO numpy bitstring
- python rx.py
The CC1101 in the ORCON network is configured with the following settings
- 868.299866 MHz carrier frequency 2-FSK
- 38.385 kbaud bit rate
- 50.781250 FSK frequency deviation
- 325 kHz RX filter BW
So far the following command types have been observed, further analysis is required.
Command | Purpose? |
---|---|
0x0404 | Boot |
0x1212 | CO2 PPM |
0x2222 | Set Speed |
0x3131 | Current Speed |
If you want to contribute, shoot me a message or create a pull-request.