Just Updated to 0.61.0
Im getting a Invalid Config
customizer and Hassio was working
also I see Some of my sensors not Displaying any thing
here is one sensor not Displaying the Open / Closed
- platform: mqtt
name: Garage Door
state_topic: "Sonoff6/Door/Status"
value_template: >-
{% if value is equalto "0" %}
Closed
{% else %}Open
{% endif %}
icon_template: >-
{% if value is equalto "0" %}
mdi:garage
{% else %}
mdi:garage-open
{% endif %}
but the Automations are working
here it is
- action:
- alias: ''
data:
entity_id: switch.garage_light
service: switch.turn_on
- delay: 00:10:00
- data:
entity_id: switch.garage_light
service: switch.turn_off
alias: Garge Light on side door open
condition:
- condition: state
entity_id: sensor.day_night
state: Night
- condition: state
entity_id: switch.garage_light
state: 'off'