Metadata-Version: 2.1
Name: evohome-rf
Version: 0.7.8
Summary: An interface for Honeywell RF (RAMSES II), as used by HVAC, CH/DHW.
Home-page: https://github.com/zxdavb/evohome_rf
Author: David Bonnes
Author-email: zxdavb@gmail.com
License: MIT
Download-URL: https://github.com/zxdavb/evohome_rf/archive/0.7.8.tar.gz
Keywords: ramses,evohome,sunidal,chronotherm,hometronics
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Home Automation
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: colorlog (>=4.7.2)
Requires-Dist: pyserial-asyncio (>=0.5)
Requires-Dist: voluptuous (>=0.12.1)

# evohome_rf

[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![CircleCI](https://circleci.com/gh/zxdavb/evohome_rf.svg?style=svg)](https://circleci.com/gh/zxdavb/evohome_rf) [![Join the chat at https://gitter.im/evohome_rf/community](https://badges.gitter.im/evohome_rf/community.svg)](https://gitter.im/evohome_rf/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

It does three things:
a) convert the RF packets in useful JSON
b) builds a picture (schema, config & state) of an evohome-compatible system - either passively (by eavesdropping), or actively (probing)
c) allows you to send commands to evohome

Requires a Honeywell HGI80 or similar. Provide services to https://github.com/zxdavb/evohome_cc, a Home Assistant integration

## Installation

```
git clone https://github.com/zxdavb/evohome_rf
cd evohome_rf
pip install -r requirements.txt
```

You may want to clean up/create a virtual environment somewhere along the way, something like:
```
deactivate
rm -rf venv
python -m venv venv
. venv/bin/activate
pip install --upgrade pip
```

## Instructions

```
python client.py monitor /dev/ttyUSB0
```

Be sure to have a look at `-o packet_log.out` and `-p` (probe).


