XKNX

A KNX library written in Python

Introduction

Changelog

XKNX Object

Lights / Dimmer

Cover

Switches

Time

Sensors

Binary Sensors

HVAC

Configuration

Home Assistant Plugin

Introduction

Simple Example:

XKNX is using asyncio for single-threaded concurrent code using coroutines.

This allows concurrency in a thread safe manner.

import asyncio
from xknx import XKNX

async def main():
    xknx = XKNX()
    await xknx.start()

    # USING THE XKNX OBJECT, e.g. for 
    # controlling lights, dimmers, shutters

    await xknx.stop()

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()

Explanation En Dé­tail:

async def main():

main() function. The async qualifier markes the function asy an asyncio function. See asyncio documentation for details.

    xknx = XKNX()

Initialization of XKNX object. Constructor may take several arguments like a reference to the asyncio-loop or various callbacks for device updates or telegram received. See XKNX object documentation for details.

    await xknx.start()

Asynchronous start of the XKNX object. xknx.start() will connect to a KNX/IP device and either build a tunnel or connect through Mulitcast UDP.

    await xknx.stop()

Asynchronous stop of the XKNX object. xknx.stop() will disconnect from Tunnels - which is important bc most of the devices have a limited amount of channels.

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()

Boilerplate code, for starting an asynchonous function. See asyncio documentation for details.

Important Note: If you are using Python 3.5 you have to replace the await syntax with the @asyncio.coroutine syntax.