Python asyncio package to connect to MySensors gateways.
Project description
aiomysensors
Source Code: https://github.com/MartinHjelmare/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 Copier and the browniebroke/pypackage-template 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.4.4.tar.gz
(25.8 kB
view hashes)
Built Distribution
Close
Hashes for aiomysensors-0.4.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f165b2df4668dcfdadb2abf6ddf69fb3da2b0d2637ca93ac90013522d1da4330 |
|
MD5 | fedab6003a1601c2832a6df95d44658a |
|
BLAKE2b-256 | 1e23beb40a73662f0d92b8485eb0503933a76a3c89c33a86c414d96958652caf |