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.15.tar.gz
(27.7 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.3.15.tar.gz
.
File metadata
- Download URL: aiomysensors-0.3.15.tar.gz
- Upload date:
- Size: 27.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 250d0d6031ef297ea99d8f3f8e2ff6281f77e2b5ad9d9780cf63de3c7c034532 |
|
MD5 | 4f11caaccec450a050c69b90fde17309 |
|
BLAKE2b-256 | 3aabd1c5a05b4bbdb6327ee06348354af1a2d75c66d0f0dd1c5a9d2378fd9d86 |
Provenance
File details
Details for the file aiomysensors-0.3.15-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.3.15-py3-none-any.whl
- Upload date:
- Size: 40.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01412a20178c82e27eed534db5d40ace31fe8ddd622f7a846936ddf1366897f6 |
|
MD5 | 49cca6ef728cd7b3fcac2668e26a4721 |
|
BLAKE2b-256 | 340cb2f403030a67475f7b83de567773cbd533b93a532f69d229b7cc254114d2 |