home-assistant.io/source/_components/sensor.knx.markdown
2018-09-05 12:42:57 +02:00

1.4 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, ha_iot_class
layout title description date sidebar comments sharing footer logo ha_category ha_release ha_iot_class
page KNX Sensor Instructions on how to use the KNX Sensor with Home Assistant. 2016-08-20 22:24 true false true true knx.png Sensor 0.29 Local Push

The knx sensor platform allows you to monitor KNX sensors.

The knx component must be configured correctly, see KNX Component.

{% linkable_title Configuration %}

To use your KNX sensor in your installation, add the following lines to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: knx
    name: Heating.Valve1
    address: '2/0/0'
  • address (Required): KNX group address of the sensor.
  • name (Optional): A name for this device used within Home Assistant.
  • type (Optional): "percent", "temperature", "humidity", "illuminance", "brightness", "speed_ms", "current", "power", "electric_current", "electric_potential", "energy", "frequency", "heatflowrate", "phaseanglerad", "phaseangledeg", "powerfactor" or "speed".

{% linkable_title Full example %}

# Example configuration.yaml entry
sensor:
  - platform: knx
    name: Heating.Valve1
    address: '2/0/0'
    type: 'percent'
  - platform: knx
    name: Kitchen.Temperature
    address: '6/2/1'
    type: 'temperature'