Update configuration variable format (#6697)

Update configuration variable format.
Change example configuration to clearly indicate the unique variable that needs replaced.
This commit is contained in:
Nicholas Westerhausen 2018-10-11 16:03:20 -04:00 committed by Franck Nijhof
parent 6999238d61
commit 22c80839ca

View File

@ -29,7 +29,7 @@ To use the `dweet` component in your installation, add the following to your `co
```yaml
# Example configuration.yaml entry
dweet:
name: HAExport
name: YOUR_UNIQUE_IDENTIFIER
whitelist:
- input_number.brightness
- input_boolean.notify_home
@ -37,8 +37,14 @@ dweet:
- sensor.cpu
```
Configuration variables:
- **name** (*Required*): Choose must choose an unique name.
- **whitelist** (*Required*): List of entity IDs you want to publish.
{% configuration %}
name:
description: A unique identifier for your Home Assistant instance.
required: true
type: string
whitelist:
description: List of entity IDs you want to publish
required: true
type: list
{% endconfiguration %}