Update Thingspeak component configuration variable (#6568)

Update style of Thingspeak component documentation to follow new configuration variables description.
Related to #6385.
This commit is contained in:
Klaas Schoute 2018-10-07 09:07:48 +02:00 committed by Fabian Affolter
parent 33627109b1
commit bae361992c

View File

@ -27,9 +27,17 @@ thingspeak:
whitelist: sensor.yr_temperature
```
Configuration variables:
- **api_key** (*Required*): Your ThingSpeak Channel Write API key.
- **id** (*Required*): The ID of your desired ThingSpeak channel.
- **whitelist** (*Required*): The name of the entity whose states should be sent to the channel.
{% configuration %}
api_key:
description: Your ThingSpeak Channel Write API key.
required: true
type: string
id:
description: The ID of your desired ThingSpeak channel.
required: true
type: integer
whitelist:
description: The name of the entity whose states should be sent to the channel.
required: true
type: string
{% endconfiguration %}