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 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). - **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. - **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. 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 ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
knx: 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. - **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 platform: dht
sensor: DHT22 sensor: DHT22
pin: 23 pin: 23
name: Living Room
monitored_conditions: monitored_conditions:
- temperature - temperature
- humidity - humidity
@ -35,11 +34,7 @@ Configuration variables:
- **sensor** (*Required*): The sensor type, supported devices are DHT11, DHT22, and AM2302 - **sensor** (*Required*): The sensor type, supported devices are DHT11, DHT22, and AM2302
- **pin** (*Required*): The pin the sensor is connected to. - **pin** (*Required*): The pin the sensor is connected to.
- **name** (*Optional*): The name of the sensor - **name** (*Optional*): The name of the sensor
- **monitored_conditions** array: Conditions to monitor. - **monitored_conditions** array (*Required*): Conditions to monitor. Available conditions are only *temperature* and *humidity*.
- **temperature**:
- **humidity**:
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. 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 # Example configuration.yaml entry
sensor: sensor:
- platform: knx - platform: knx
name: knxweather_temp
type: temperature type: temperature
address: 1/0/3 address: 1/0/3
- platform: knx - platform: knx
name: knxweather_wind name: Wind speed
type: speed_ms type: speed_ms
address: 1/0/0 address: 1/0/0
- platform: knx - platform: knx
name: knxweather_lux name: Lux
type: illuminance type: illuminance
address: 1/0/1 address: 1/0/1
``` ```

View File

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

View File

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