Hi everyone, I’m new to Home Assistant and I’m really enjoying it so far! I’ve set up a few automations, but I’m running into an issue with one of them. I created an automation to run a script at 10:00 AM every workday. When I test it by setting it to trigger in the next few minutes, it works perfectly. However, when I set it to trigger a couple of hours later, it doesn’t run at all. I’m wondering if Home Assistant goes into some sort of sleep mode or if there’s a setting I’m missing. I’m using a Raspberry Pi 3 for my setup. Here’s the automation I’m using:
yaml
- alias: schedule_medium_program
trigger:
platform: time
at: ‘10:00:10’
condition:- condition: time
weekday:- mon
- tue
- wed
- thu
- fri
action:
service: script.turn_on
entity_id: script.vacuum_medium
- condition: time
I’m really hoping someone can shed some light on why this is happening. I’ve checked the logs and everything seems fine, but I’m not sure where to look next. Any advice or tips would be greatly appreciated! Thanks in advance for your help.