Skip to main content

A pure Python async client for KNXD's (EIBD's) native Layer 4 KNX protocol.

Project description

KNXDclient

A pure Python async client for KNXD's (EIBD's) native Layer 4 KNX protocol.

EIBD is a *NIX daemon for routing EIB/KNX telegrams through various interfaces and programmatically accessing the EIB/KNX bus. It's part of the no-longer maintained BCUSDK. However, there's a fork called KNXD, which is still actively maintained.

This package reimplements small parts of the EIBD client (see BCUSDK documentation, section 7.7) in pure Python 3, based on asynchronous coroutines (asyncio). Currently, it allows to open a Group Socket for sending and receiving KNX telegrams to/for any group address via KNXD. Additionally, this package includes helper methods encode_value() and decode_value() to convert the send/received data from/to native Python types according to a known KNX Datapoint Type (DPT).

Usage example

import asyncio
import knxdclient


def handler(packet: knxdclient.ReceivedGroupAPDU) -> None:
    print("Received group telegram: {}".format(packet))

async def main() -> None:
    connection = knxdclient.KNXDConnection()
    connection.set_group_apdu_handler(handler)
    await connection.connect()
    # Connection was successful. Start receive loop:
    run_task = asyncio.create_task(connection.run())
    # Now that the receive loop is running, we can open the KNXd Group Socket:
    await connection.open_group_socket()

    # Startup completed. Now our `handler()` will receive incoming telegrams and we can send some:
    await connection.group_write(knxdclient.GroupAddress(1,3,2),
                                 knxdclient.KNXDAPDUType.WRITE,
                                 knxdclient.encode_value(True, knxdclient.KNXDPT.BOOLEAN))
    
    await asyncio.sleep(5)
    # Let's stop the connection and wait for graceful termination of the receive loop:
    await connection.stop()
    await run_task


asyncio.run_until_complete(main())

License

This package is published under the terms of the Apache License 2.0.

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

knxdclient-0.4.1.tar.gz (16.9 kB view details)

Uploaded Source

Built Distribution

knxdclient-0.4.1-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file knxdclient-0.4.1.tar.gz.

File metadata

  • Download URL: knxdclient-0.4.1.tar.gz
  • Upload date:
  • Size: 16.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for knxdclient-0.4.1.tar.gz
Algorithm Hash digest
SHA256 7fe82e4cc73bec3daacd833eef0c0ce49e6d65e34804cd25ed0305933015c4e2
MD5 2766e97ba87d627f670034aa99692a4c
BLAKE2b-256 71c214e96b43069aa094c1f4df1b6eb3ffdbc6a555955aedc8c191e34790ee01

See more details on using hashes here.

File details

Details for the file knxdclient-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: knxdclient-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for knxdclient-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bd3a203a75764af9c3b1120a328c275102d1463506950084a15aea109c10d970
MD5 955c0c84f85a3be2fcb59487f1ae444d
BLAKE2b-256 65af66cc2d4ef5ba6b1a121872ab3dc19ce7bbd4875a86de03a2ee64614eb55f

See more details on using hashes here.

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