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.2.tar.gz
(25.8 kB
view details)
Built Distribution
File details
Details for the file aiomysensors-0.4.2.tar.gz
.
File metadata
- Download URL: aiomysensors-0.4.2.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 | b9ba71bb475bc41595ba1a946f1d0cae8c57afdc4de8889cf5770a6550b58a68 |
|
MD5 | d652e0c5a0a8192282c6908babdbf4d5 |
|
BLAKE2b-256 | 54b47220163daf68af4722e4e49b98132ac5da0f53b326d200aac0219306f2b8 |
Provenance
File details
Details for the file aiomysensors-0.4.2-py3-none-any.whl
.
File metadata
- Download URL: aiomysensors-0.4.2-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 | 4c14e23e7f30260f8a86833a88520336fa8343617ab4bc2691cbf2e7caf92ce1 |
|
MD5 | d038c88560324766d42fd970ee0873c7 |
|
BLAKE2b-256 | 3d412b77d5bf1732ec7fb1f1e8aa5e53799e12a5ec0719ce3d57712d1dff617d |