mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-03 00:36:50 +00:00

* documentation for knx component * documentation of knx component * fixed typo * updated documentation for new HVAC controller status * fixed spelling
52 lines
1.1 KiB
Markdown
52 lines
1.1 KiB
Markdown
---
|
|
layout: page
|
|
title: "KNX Sensor"
|
|
description: "Instructions on how to use the KNX Sensor with Home Assistant."
|
|
date: 2016-08-20 22:24
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: knx.png
|
|
ha_category: Sensor
|
|
ha_release: 0.29
|
|
ha_iot_class: "Local Push"
|
|
---
|
|
|
|
The `knx` sensor platform allows you to monitor [KNX](http://www.knx.org) sensors.
|
|
|
|
The `knx` component must be configured correctly, see [KNX Component](/components/knx).
|
|
|
|
To use your KNX sensor in your installation, add the following lines to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# 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'
|
|
|
|
- platform: knx
|
|
name: Wind speed
|
|
type: speed_ms
|
|
address: 1/0/0
|
|
|
|
- platform: knx
|
|
name: Lux
|
|
type: illuminance
|
|
address: 1/0/1
|
|
```
|
|
|
|
* **name** (*Optional*): A name for this device used within Home Assistant.
|
|
* **address**: KNX group address of the sensor
|
|
* **type**: (Optional) "percent", "temperature", "illuminance", "speed_ms", "current"
|
|
|
|
|
|
|