Update Oem climate component configuration (#6940)

This commit is contained in:
Klaas Schoute 2018-10-19 20:00:48 +02:00 committed by Fabian Affolter
parent 6aabc13bf2
commit 3b91c3f7f2

View File

@ -26,12 +26,32 @@ climate oem:
host: 192.168.0.100
```
Configuration variables:
- **host** (*Required*): The IP address or hostname of the thermostat.
- **port** (*Optional*): The port for the web interface. Defaults to 80.
- **name** (*Optional*): The name to use for the frontend.
- **username** (*Optional*): Username for the web interface if set.
- **password** (*Optional*): Password for the web interface if set.
- **away_temp** (*Optional*): Setpoint for the thermostat in away mode. Defaults to 14 C.
{% configuration %}
host:
description: The IP address or hostname of the thermostat.
required: true
type: string
port:
description: The port for the web interface.
required: false
default: 80
type: integer
name:
description: The name to use for the frontend.
required: false
default: Thermostat
type: string
username:
description: Username for the web interface if set.
required: inclusive
type: string
password:
description: Password for the web interface if set.
required: inclusive
type: string
away_temp:
description: Setpoint for the thermostat in away mode.
required: false
default: 14.0
type: float
{% endconfiguration %}