Python asyncio package to connect to MySensors gateways.
Project description
aiomysensors
Python asyncio package to connect to MySensors gateways.
Installation
Install this via pip (or your favourite package manager):
pip install aiomysensors
Example
"""Show a minimal example using aiomysensors."""
import asyncio
from aiomysensors import AIOMySensorsError, Gateway, SerialTransport
async def run_gateway() -> None:
"""Run a serial gateway."""
port = "/dev/ttyACM0"
baud = 115200
transport = SerialTransport(port, baud)
try:
async with Gateway(transport) as gateway:
async for message in gateway.listen():
print("Message received:", message)
except AIOMySensorsError as err:
print("Error:", err)
if __name__ == "__main__":
try:
asyncio.run(run_gateway())
except KeyboardInterrupt:
pass
Command Line Interface
There's a CLI for testing purposes.
aiomysensors --debug serial-gateway -p /dev/ttyACM0
Credits
This package was created with Cookiecutter and the browniebroke/cookiecutter-pypackage project template.
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
aiomysensors-0.3.8.tar.gz
(27.7 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.3.8.tar.gz
.
File metadata
- Download URL: aiomysensors-0.3.8.tar.gz
- Upload date:
- Size: 27.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/37.3 requests/2.28.2 requests-toolbelt/0.10.1 urllib3/1.26.15 tqdm/4.65.0 importlib-metadata/6.0.0 keyring/23.13.1 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 763fda643d0bf83c5e19b4d928f97cad4ac4cb6173d38a25f55f96d460a376fc |
|
MD5 | 4f15ae636a238ee7d11e5c9411db049f |
|
BLAKE2b-256 | 9a4f0f503c02d5d4a25c660da5d942808c90c3489a1ba3101a27ff3301b503f7 |
Provenance
File details
Details for the file aiomysensors-0.3.8-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.3.8-py3-none-any.whl
- Upload date:
- Size: 40.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/37.3 requests/2.28.2 requests-toolbelt/0.10.1 urllib3/1.26.15 tqdm/4.65.0 importlib-metadata/6.0.0 keyring/23.13.1 rfc3986/2.0.0 colorama/0.4.6 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49f09721094af867a4143d8b07b6bcb34d6639e03023c5600710b72207607551 |
|
MD5 | bf08bdbd5f5d9819f6c3e1cde2f9f46b |
|
BLAKE2b-256 | 17361eb5f45aff5ec713e0070b05a02810152b5be37257a8ca0cc427f3f1b86d |