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.19.tar.gz
(27.7 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.3.19.tar.gz
.
File metadata
- Download URL: aiomysensors-0.3.19.tar.gz
- Upload date:
- Size: 27.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5da84d10041d50e3e48e93bfa6ef1acfa88e62f355bf46dbb779ccd6207c714 |
|
MD5 | e02edd07e851b9f4b420c445a9ed4376 |
|
BLAKE2b-256 | 2c525ebe7177f8b9120dc1deb6d1f7aec057f945bb6aaaf594a8653cd9e0ac67 |
Provenance
File details
Details for the file aiomysensors-0.3.19-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.3.19-py3-none-any.whl
- Upload date:
- Size: 40.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5a784ab3c4266a3dc20c8c028b262e9e8424da384fb1851d02ec9cc30c566c9 |
|
MD5 | 78aa5b94c7aeabaa11bf2bbc22d057fc |
|
BLAKE2b-256 | 445e45e41b81e63dbdbee01ba38b42dde0b97ccda8bdc049b2f6b3eb5d456f7f |