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.2.tar.gz
(28.3 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.3.2.tar.gz
.
File metadata
- Download URL: aiomysensors-0.3.2.tar.gz
- Upload date:
- Size: 28.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/37.2 requests/2.28.1 requests-toolbelt/0.10.0 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/5.0.0 keyring/23.9.3 rfc3986/2.0.0 colorama/0.4.5 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f43f1c35c7df3881707442ffbcf92fd38e52f733a6065a7f9b4bfa37df59f4b1 |
|
MD5 | ba30cb7c1507a19df944266e30b0a5a0 |
|
BLAKE2b-256 | 67492c1b107eb5351f35bfa2cc15146a278c19c1dd2ccdb1378e10326e7b956f |
Provenance
File details
Details for the file aiomysensors-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.3.2-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.8.3 readme-renderer/37.2 requests/2.28.1 requests-toolbelt/0.10.0 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/5.0.0 keyring/23.9.3 rfc3986/2.0.0 colorama/0.4.5 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a25078990c45db25f4afc55901813586617616455f06f422df80d0e260e7f3b1 |
|
MD5 | 8c14732b9f8c1ffdf87f796d88dc6492 |
|
BLAKE2b-256 | 7d8819329c9d06b9a57c132b0d3ad643a4b27990372c9f5a1e8138352b9db8a7 |