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.2.0.tar.gz
(28.2 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.2.0.tar.gz
.
File metadata
- Download URL: aiomysensors-0.2.0.tar.gz
- Upload date:
- Size: 28.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.14 CPython/3.9.13 Linux/5.15.0-41-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc7b9ed31f51ade75812a31489d5f2e8b6aeb6904d6511e82e0ee9bc1ad52601 |
|
MD5 | f3de77ba30fa68b0178faf61b006a033 |
|
BLAKE2b-256 | ca6420fa23fb9e088dfdabff76f2dcfac65e31488c20cb038254af8e715a65b2 |
Provenance
File details
Details for the file aiomysensors-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.2.0-py3-none-any.whl
- Upload date:
- Size: 40.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.14 CPython/3.9.13 Linux/5.15.0-41-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38af5adb7bef44d803397fb57c6d17e17c288ae773e7c568c49b46a2d74a6cfe |
|
MD5 | a08015cb9ced308a09267197cabd3524 |
|
BLAKE2b-256 | 2f3836772f550d6789a0c496a01acd130b67c85338c170b4229c5261444afba6 |