Update Ecobee component configuration variable (#6768)

This commit is contained in:
Klaas Schoute 2018-10-14 08:58:49 +02:00 committed by Franck Nijhof
parent e780bcd49c
commit e253177a1c
2 changed files with 18 additions and 8 deletions

View File

@ -51,10 +51,17 @@ ecobee:
api_key: asdfghjklqwertyuiopzxcvbnm
```
Configuration variables:
- **api_key** (*Required*): Your ecobee API key. This is only needed for the initial setup of the component. Once registered it can be removed. If you revoke the key in the ecobee portal you will need to update this again and remove the ecobee.conf file in the `.homeassistant` configuration path.
- **hold_temp** (*Optional*): True/False whether or not to hold changes indefinitely (True) or until the next scheduled event. Defaults to `False`.
{% configuration %}
api_key:
description: Your ecobee API key. This is only needed for the initial setup of the component. Once registered it can be removed. If you revoke the key in the ecobee portal you will need to update this again and remove the ecobee.conf file in the `.homeassistant` configuration path.
required: true
type: string
hold_temp:
description: True/False whether or not to hold changes indefinitely (True) or until the next scheduled event.
required: false
default: "`false`"
type: boolean
{% endconfiguration %}
<p class='img'>
<img src='{{site_root}}/images/screenshots/ecobee-sensor-badges.png' />

View File

@ -23,9 +23,12 @@ notify:
platform: ecobee
```
Configuration variables:
- **name** (*Optional*): Setting the optional parameter `name` allows multiple notifiers to be created. The default value is `notify`. The notifier will bind to the service `notify.NOTIFIER_NAME`.
{% configuration %}
name:
description: Setting the optional parameter `name` allows multiple notifiers to be created. The notifier will bind to the service `notify.NOTIFIER_NAME`.
required: false
default: "`notify`"
type: string
{% endconfiguration %}
To use notifications, please see the [getting started with automation page](/getting-started/automation/).