Skip to main content

Python asyncio package to connect to MySensors gateways.

Project description

aiomysensors

CI Status Test coverage percentage

Poetry black pre-commit

PyPI Version Supported Python versions License

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


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.13.tar.gz (27.7 kB view details)

Uploaded Source

Built Distribution

aiomysensors-0.3.13-py3-none-any.whl (40.6 kB view details)

Uploaded Python 3

File details

Details for the file aiomysensors-0.3.13.tar.gz.

File metadata

  • Download URL: aiomysensors-0.3.13.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

Hashes for aiomysensors-0.3.13.tar.gz
Algorithm Hash digest
SHA256 4f3fd10453922c8603cbfb9da1c206e99edba74069537685ae6654ee529925b7
MD5 0ec4234fd3517c59d977dea0d546a6f1
BLAKE2b-256 9b7405824d0a32f064651d2f72be6cd81fa238de6e8dff3ee55fbcff26d75866

See more details on using hashes here.

Provenance

File details

Details for the file aiomysensors-0.3.13-py3-none-any.whl.

File metadata

File hashes

Hashes for aiomysensors-0.3.13-py3-none-any.whl
Algorithm Hash digest
SHA256 ffb90261f120f6e3e132de125bb1f228dccf3c13a783f15b32cf814a862e6457
MD5 9e8e09d48f8edcebab78e5ecd33750d0
BLAKE2b-256 080fdbdda77d68b1fb5c87e88368a568daf4b74492fd2d013dd76d8c01b2dad6

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page