Hello,
i made multiple automations with time triggers and time conditions to run the automation at a given time on a weekday and on another time at the weekend. The following automation was working fine. But lately nearly all my automations with time triggers and conditions like this are not working anymore.
When i start the automation manually it works.
alias: "Luftreiniger: Nacht Modus (Zeit)"
description: ""
trigger:
- platform: time
at: "23:30:00"
- platform: time
at: "01:00:00"
condition:
- condition: or
conditions:
- condition: time
after: "23:25:00"
before: "23:35:00"
weekday:
- mon
- tue
- wed
- thu
- fri
- condition: time
after: "00:55:00"
before: "01:05:00"
weekday:
- sat
- sun
action:
- service: script.neues_skript
data: {}
mode: single
Is there something i made wrong or has something changed after an update?
I’m running the newest version of HA, supervisor and OS on a RPi4.