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.0.tar.gz
(25.8 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.4.0.tar.gz
.
File metadata
- Download URL: aiomysensors-0.4.0.tar.gz
- Upload date:
- Size: 25.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a62da0989e5721d7490178a8a04fbf04e21bcecf4d8b13827341519f4daf4280 |
|
MD5 | 2ff5497879b44ba0df6771ca6144a8c8 |
|
BLAKE2b-256 | a84851b8a6b4096fcfe8583ad19a0830995df3762719f53a35ae8c1fb4f576e9 |
Provenance
File details
Details for the file aiomysensors-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.4.0-py3-none-any.whl
- Upload date:
- Size: 38.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cda4fd6ad435449bd204524f45c14891b6a8b845b3f8937ee212824ec03a0715 |
|
MD5 | 1def9cd314b42663318feeb8690c68af |
|
BLAKE2b-256 | 319b885d7ec25596656b64eb30e7a39f8a85f2ee94cf34371b88ac6af058ac2d |