Minimizing of the configuration sample (#1011)

This commit is contained in:
Fabian Affolter 2016-09-30 20:49:39 +02:00 committed by GitHub
parent 39f7c6289d
commit 695f16c114
6 changed files with 45 additions and 27 deletions

View file

@ -24,15 +24,14 @@ To use your KNX thermostats in your installation, add the following to your `con
# Example configuration.yaml entry
climate:
- platform: knx
name: KNX Thermostat
address : KNX_ADDRESS
temperature_address: 0/1/1
setpoint_address: 0/1/0
```
- **name** (*Optional*): A name for this devices used within Home assistant
- **address** (*Required*): The KNX group address that is used to turn on/off this actuator channel
- **temperature_address** (*Required*): The group address that is used to communicate the current temperature. Data format must be datapoint type 9.001 DPT_Value_Temp (2-Octet float value), check [details](http://www.knx.org/fileadmin/template/documents/downloads_support_menu/KNX_tutor_seminar_page/Advanced_documentation/05_Interworking_E1209.pdf).
- **setpoint_address** (*Required*): The group address that is used to set/read the target temperature. Data format must be datapoint type 9.001 DPT_Value_Temp (2-Octet float value). Make sure, you set the read-flag for the thermostat to allow Home Assistant to read the target temperature.
- **name** (*Optional*): A name for this devices used within Home Assistant
With the current version of the module, no advanced KNX thermostat functionalities (e.g. HVAC mode) are supported.