Minimizing of the configuration sample (#1013)

This commit is contained in:
Fabian Affolter 2016-09-30 20:59:45 +02:00 committed by GitHub
parent ef7531c297
commit 3d47c6f54b
6 changed files with 7 additions and 16 deletions

View File

@ -29,9 +29,9 @@ climate:
setpoint_address: 0/1/0
```
- **address** (*Required*): The KNX group address that is used to turn on/off this actuator channel
- **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
- **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.

View File

@ -27,8 +27,6 @@ A `knx` section must be present in the `configuration.yaml` file and contain the
```yaml
# Example configuration.yaml entry
knx:
host: IP_ADDRESS
port: PORT
```
- **host** (*Optional*): The IP address of the KNX/IP interface to use. It defaults to `0.0.0.0` which will start discovery for your KNX/IP gateway.

View File

@ -24,7 +24,6 @@ sensor:
platform: dht
sensor: DHT22
pin: 23
name: Living Room
monitored_conditions:
- temperature
- humidity
@ -35,11 +34,7 @@ Configuration variables:
- **sensor** (*Required*): The sensor type, supported devices are DHT11, DHT22, and AM2302
- **pin** (*Required*): The pin the sensor is connected to.
- **name** (*Optional*): The name of the sensor
- **monitored_conditions** array: Conditions to monitor.
- **temperature**:
- **humidity**:
Available conditions are only *temperature* and *humidity*.
- **monitored_conditions** array (*Required*): Conditions to monitor. Available conditions are only *temperature* and *humidity*.
The name of the pin to which the sensor is connected has different names on different platforms. 'P8_11' for Beaglebone, '23' for Raspberry Pi.

View File

@ -30,17 +30,16 @@ To use your KNX sensor in your installation, add the following to your `configur
# Example configuration.yaml entry
sensor:
- platform: knx
name: knxweather_temp
type: temperature
address: 1/0/3
- platform: knx
name: knxweather_wind
name: Wind speed
type: speed_ms
address: 1/0/0
- platform: knx
name: knxweather_lux
name: Lux
type: illuminance
address: 1/0/1
```

View File

@ -25,11 +25,11 @@ switch:
11:
name: Fan Office
type: digital
default: on
negate: true
12:
name: Light Desk
type: digital
default: on
negate: true
```
Configuration variables:

View File

@ -24,7 +24,6 @@ switch:
- platform: knx
name: KNX Switch
address: 0/0/1
state_address: 0/0/3
```
- **name** (*Optional*): A name for this devices used within Home assistant