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.14.tar.gz
(27.7 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.3.14.tar.gz
.
File metadata
- Download URL: aiomysensors-0.3.14.tar.gz
- Upload date:
- Size: 27.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27b82f0245c0d51229a9c1da915f6c3cd2d5aad497b3be31f9e92be2b299ddaa |
|
MD5 | 2ba73019a6bd9f7e753973c9f481b452 |
|
BLAKE2b-256 | a9725ce248b2fdffe0a3e511fd4eb42f6b179ecce655fc30e603a2092d5d7136 |
Provenance
File details
Details for the file aiomysensors-0.3.14-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.3.14-py3-none-any.whl
- Upload date:
- Size: 40.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84005b717664b14c8df134997e5df1c1e4862720d5d6dd6b50a1fa7011d0a865 |
|
MD5 | 4ae8274e502cfc3b733e301a51b49716 |
|
BLAKE2b-256 | 923800657b8dfe3e808b9196841dbed3eabc4a94f1e818c70040ea3f265ae4a4 |