Hey everyone, I’m trying to figure out why my automation isn’t triggering at the scheduled time anymore. It worked perfectly for over a year, but recently it stopped. The automation is set to arm the house at 1 AM, and it even sends a notification and arms the alarm. However, when the time comes, nothing happens. Strangely, if I manually trigger it from the UI, it works like a charm. I’ve checked the logs, and all I see is ‘Initializing’. I’ve also tried rebooting the hub, but that didn’t help either.
Here’s the automation setup I’m using:
{
“id”: “house_auto_arm”,
“alias”: “Auto Arm House At 1AM”,
“initial_state”: “on”,
“trigger”: [
{
“at”: “01:00:00”,
“platform”: “time”
}
],
“condition”: [
{
“condition”: “and”,
“conditions”: [
{
“condition”: “state”,
“entity_id”: “alarm_control_panel.home_alarm”,
“state”: “disarmed”
},
{
“condition”: “or”,
“conditions”: [
{
“condition”: “state”,
“entity_id”: “person.him”,
“state”: “home”
},
{
“condition”: “state”,
“entity_id”: “person.her”,
“state”: “home”
},
{
“condition”: “state”,
“entity_id”: “person.momdad”,
“state”: “not_home”
}
]
}
]
}
],
“action”: [
{
“data”: {
“message”: “Arming House for the Night”
},
“title”: “House Alert”,
“service”: “notify.all_ios_devices”
},
{
“data”: {
“code”: “1234”,
“entity_id”: “alarm_control_panel.home_alarm”
},
“service”: “alarm_control_panel.alarm_arm_home”
}
]
}
Has anyone else encountered this issue? Any tips on how to resolve it would be greatly appreciated. I’m running version 107.5 of the software, and the problem started around 106.6. Thanks in advance for your help!