0.61.0.dev0 Something wrong

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'

See Updating to 61.0 Hassio for more details, basically SSH in and type

curl -d ‘{“version”: “0.60.1”}’ http://hassio/homeassistant/update

to downgrade.

2 Likes

just found it and it work

happy camper again

Good solution man! It´s work for me.