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",80,"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))
Execute a one-shot register command:
This is intended for write-only registers which are not exposed in the unit's parameter metadata. Register meanings remain the responsibility of the caller.
atrea.executeOneShotCommand(register_id, value)
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.10.0.tar.gz
(7.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyatrea-0.10.0.tar.gz.
File metadata
- Download URL: pyatrea-0.10.0.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcc16ae9420ee5e9d6f2bbc186fd044b2b7520fbaf8c2a6a847588a00f78a343
|
|
| MD5 |
decedefc3386033e076ed6d08809ceb6
|
|
| BLAKE2b-256 |
b1aa231fdb8e3bd680a8a9e358035e091fa37461713e88e0fb2f773e6c77f32c
|
File details
Details for the file pyatrea-0.10.0-py3-none-any.whl.
File metadata
- Download URL: pyatrea-0.10.0-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cfcc5d781a3d3c0f41bcb0086a92faa802536610b0b493db68f587689053003
|
|
| MD5 |
0981cbd1a546782ce95520bc3d8149b3
|
|
| BLAKE2b-256 |
520d2bd276bc6d9cda468f17ad848f39b5d2b8c6fc82a49198f86d6536f7ab5f
|