Skip to content

Minimizing of the configuration sample (DIY) #1013

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 30, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/_components/climate.knx.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 0 additions & 2 deletions source/_components/knx.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
7 changes: 1 addition & 6 deletions source/_components/sensor.dht.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ sensor:
platform: dht
sensor: DHT22
pin: 23
name: Living Room
monitored_conditions:
- temperature
- humidity
Expand All @@ -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.

5 changes: 2 additions & 3 deletions source/_components/sensor.knx.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions source/_components/switch.arduino.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion source/_components/switch.knx.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down