I am using this automation for months without any problem. Suddenly, maybe related to one of the last Home Assistant updates, it stopped working. As of today I am using version 0.83.1.
- id: Fussbodenheizung_Bad_einschalten
alias: Fussbodenheizung_Bad_einschalten
initial_state: 'on'
trigger:
- platform: time
at: '06:00:00'
- platform: time
at: '18:00:00'
condition:
- condition: state
entity_id: group.anwesenheit_alle
state: 'on'
- condition: state
entity_id: input_boolean.heizperiode
state: 'on'
- condition: state
entity_id: input_boolean.urlaub
state: 'off'
action:
- entity_id: switch.badezimmer_fussbodenheizung
service: switch.turn_on
If I trigger the Automation manually in the UI it is working and the switch is turned on, so I think the problem is related to the time trigger. How can I find out the cause?
Thanks for your help!