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.0.tar.gz
(28.3 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.3.0.tar.gz
.
File metadata
- Download URL: aiomysensors-0.3.0.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/35.0 requests/2.28.1 requests-toolbelt/0.9.1 urllib3/1.26.11 tqdm/4.64.0 importlib-metadata/4.12.0 keyring/23.7.0 rfc3986/2.0.0 colorama/0.4.5 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4df65c19db32eff73272a8ab22658be65d469a39f915250042a068ef31fb2c0f |
|
MD5 | d599315f94febd399cc51bbd7bd97676 |
|
BLAKE2b-256 | 661e02843254049c9efaf3a676ecab40080d614d468e046eb19e1a7381e78d9f |
Provenance
File details
Details for the file aiomysensors-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.3.0-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/35.0 requests/2.28.1 requests-toolbelt/0.9.1 urllib3/1.26.11 tqdm/4.64.0 importlib-metadata/4.12.0 keyring/23.7.0 rfc3986/2.0.0 colorama/0.4.5 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbd7664023adc64b7b95ea8092bf36a402920740dae3beca65ff901272b091d0 |
|
MD5 | 71ae4d1ab829a97741d11eb4924372fb |
|
BLAKE2b-256 | 0aa6fd71bb015aacb577cdb671fcf37326dd45672fa75f2b081c2f022a75593e |