Updates to the Readme to reflect HomeBridge completion.

This commit is contained in:
CCOSTAN
2017-02-01 16:35:45 +00:00
parent 996c24aad7
commit 8867b5beba
2 changed files with 6 additions and 5 deletions

View File

@@ -1,9 +1,9 @@
You can use this code to quickly create files from the template editor in HA. I use it mainly for `emulated_hue` and to quickly add in new Customize options to all things HA!
#########################################################3
Create fast Customize for groups.yaml:
#########################################################
Create fast Customize for groups, sensors, covers etc...
{% for state in states.group -%}
{% for state in states.sensor -%}
{% if loop.first %}
{% elif loop.last %}
{% else %}
@@ -13,6 +13,7 @@ Create fast Customize for groups.yaml:
emulated_hue: {{state.attributes.emulated_hue if state.attributes.emulated_hue is defined else 'False' }}
hidden: {{state.attributes.hidden if state.attributes.hidden is defined else "False"}}
{{'icon: '+ state.attributes.icon if state.attributes.icon is defined}}
{{'homebridge_cover_type: '+ state.attributes.homebridge_cover_type if state.attributes.homebridge_cover_type is defined}}
{% endfor -%}
#########################################################