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.12.tar.gz
(27.7 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.3.12.tar.gz
.
File metadata
- Download URL: aiomysensors-0.3.12.tar.gz
- Upload date:
- Size: 27.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6052e8b605411a57ae5f399d82546790f7dc58f7318ede57ddacf43491a37937 |
|
MD5 | 1cf57aa70e29438e2a9f6d0a2da63c5b |
|
BLAKE2b-256 | d6e5327c31e70655695c0c597ec3d311a981d9b7a278f0f3cc06c0ceb1a02da8 |
Provenance
File details
Details for the file aiomysensors-0.3.12-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.3.12-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.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f9c52dd8fb513c3dc4dbd700448f480d8a330d3a8b0afddd1e8b0cf38ea0699 |
|
MD5 | c2a9d03aec3b01fd4b5df55c6effb08c |
|
BLAKE2b-256 | e47e9495b00706f67950d4774f5d3bbae5198fc7db884602d9306cce79e265f2 |