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.4.tar.gz
(28.3 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.3.4.tar.gz
.
File metadata
- Download URL: aiomysensors-0.3.4.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.3 requests/2.28.1 requests-toolbelt/0.10.1 urllib3/1.26.13 tqdm/4.64.1 importlib-metadata/5.1.0 keyring/23.11.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5946c91180c7308fcd6a23b62add92276790f1b2c732cfb92d695898e707ce78 |
|
MD5 | 393ad38488ef07fee3e1e86665ab64b5 |
|
BLAKE2b-256 | 662d417805f1ea9c2d4857df9e6ddcfe96776d2ab3f263fd3d9fc13a995da096 |
Provenance
File details
Details for the file aiomysensors-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.3.4-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.3 requests/2.28.1 requests-toolbelt/0.10.1 urllib3/1.26.13 tqdm/4.64.1 importlib-metadata/5.1.0 keyring/23.11.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 702995fd4f01ff2a61e3b40373d95181f6348d585dab1bbec6ab698c1691cffb |
|
MD5 | 7411e1384eaf5b62811cd64656bbcb9d |
|
BLAKE2b-256 | 6332a7761064e532b790dabca3be79d89ebc0af23b7197d45d5410ee8120c3d3 |