Reload config if hass don't detect devices

I use this to check for invalid config or missing wink. If the power goes out around here, the wink takes longer to reboot than HASS does. The following automations fix that.

sensor:
  - platform: template
    sensors:
      invalid_config:
        value_template: "{% if is_state_attr('persistent_notification.invalid_config', 'title', 'Invalid config') %}true{% else %}false{% endif %}"
        friendly_name: 'Invalid Config'
      wink_missing:
        value_template: "{% if is_state('binary_sensor.hub', 'on') %}false{% else %}true{% endif %}"
        friendly_name: 'Wink Missing'


automation: 
  # restart if wink not found (power outage / race condition)
  - alias: Reboot Wink Check
    trigger:
      platform: state
      entity_id: sensor.invalid_config
      state: 'true'
      for:
        seconds: 60
    condition:
      condition: state
      entity_id: sensor.wink_missing
      state: 'true'
    action:
      service: homeassistant.restart
1 Like