XKNX

A KNX library written in Python

Introduction

Changelog

XKNX Object

Lights / Dimmer

Cover

Switches

Time

Sensors

Binary Sensors

HVAC

Configuration

Home Assistant Plugin

Sensor - Monitor values of KNX

Overview

Sensors are monitoring temperature, air humidity, pressure etc. from KNX bus.

    sensor = Sensor(
        xknx=xknx,
        name='DiningRoom.Temperatur.Sensor',
        group_address='6/2/1',
        value_type='float',
        device_class='temperature')
    await sensor2.sync()
    print(sensor2)

Configuration via xknx.yaml

Sensor objects are usually configured via xknx.yaml:

    sensor:
        Heating.Valve1: {group_address: '2/0/0', value_type: 'percent'}
        Heating.Valve2: {group_address: '2/0/1', value_type: 'percent'}
	Kitchen.Temperature: {group_address: '2/0/2', value_type: 'temperature'}
        Some.Other.Value: {group_address: '2/0/3'}

Interface

sensor = Sensor(
        xknx=xknx,
        name='DiningRoom.Temperatur.Sensor',
        group_address='6/2/1')

await sensor.sync() # Syncs the state. Tries to read the corresponding value from the bus.

sensor.resolve_state() # Returns the value of in a human readable way

sensor.unit_of_measurement() # returns the unit of the value in a human readable way