Python library for communication with Atrea ventilation units
Project description
PyAtrea
Python library for communication with Atrea ventilation units
Install:
python3 -m pip install pyatrea
Usage examples:
Initiate library:
from pyatrea import pyatrea
atrea = pyatrea.Atrea("192.168.0.2","passwordOnAtreaWebsite")
Get status of your unit with human readable identifications (if available):
status = atrea.getStatus()
if(status == False):
exit("Authentication failed")
for id, value in status.items():
print(atrea.getTranslation(id) + ":" + value)
Get human readable warnings and errors:
status = atrea.getStatus()
params = atrea.getParams()
for warning in params['warning']:
if status[warning] == "1":
print(atrea.getTranslation(warning))
for alert in params['alert']:
if status[alert] == "1":
print(atrea.getTranslation(alert))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyatrea-0.9.3.tar.gz
(6.0 kB
view hashes)