* Added documentation for the json_attributes configuration.
* Updated to reflect change to make json_attributes a list rather than a boolean.
* Fixed json_attributes examples to mark templates in documentation as {% raw %}.
Also corrected typos in entity_id entries for examples.
* Add additional example
* Added netdisco note for Synology users.
The suggested steps for netdisco issue don't work for Synology users. I've added a link to forum post with confirmed steps.
* Minor changes
* Information about compatible ETHM module
Component works only with ETHM-1 Plus module and firmware version > 2.00. It doesn't work with ETHM-1 module and ETHM-1 Plus module with firmware 2.00, confirmed compatibility with version 2.04.
* Use full words:wq
* Add tts.baidu platform
* Update tts.baidu.markdown
Change appid to api_id, apikey to api_key, and secretkey to secret_key, because the baidu.py platform program changed.
I banged my head against the table for hours trying to make the script work on this page and then I figured out something. When viewing the page on the HA site, the variable tags {{value1}}, etc...do not display. I only see two quotes.
This is what I was seeing. ```{"event":"TestHA_Trigger", "value1":"", "value2":"", "value3":""}```
And I should be seeing this: ```{"event":"TestHA_Trigger", "value1":"{{value1}}", "value2":"{{value2}}", "value3":"{{value3}}"}
Above this section in the automation, there's a tag called { % raw % } which I'm unfamiliar with, but I made a guess that this needs to be inserted. I may have been wrong. If so, I hope I've identified a valid problem. Thanks!
* Update media_player.universal.markdown
This state template is invalid...
{% if (is_state('media_player.kodi', 'idle')
causes the following error...
Error rendering template: TemplateSyntaxError: unexpected '}', expected ')'
It seems there is a rogue bracket. when deleted the template reads...
{% if is_state('media_player.kodi', 'idle')
the template now works
* Fix second part
* Document max retries for InfluxDB
Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de>
* influxdb: Add queue limit parameter.
Signed-off-by: Jan Losinski <losinski@wh2.tu-dresden.de>