PLEG AND DSC ALARM SYSTEM

I have a scene to automatic arm the alarm in stay mode at 11:30 pm. But if a sensor is tripped like a window open or such the arm will not be armed.

Im trying to set up a PLEG condition that if the system is not armed at 11.31 pm to send me a push notification ALARM NOT SET.

I put the inputs Alarm Disarmed, the schedule 11 31 and the action send push notification to iphone. But im not sure how to write the condition for this to happen, I tried Alarm Disarmed and schedule, but is not working then i tried the oposite schedule 1131 and not alarm armed, but did not work as well.

Can someone help?

Thanks

try by using the alarm’s armed/disarmed status as a trigger

Triggers

CheckAlarmTime (your 11:31 schedule, consider adding another minute just in case Lua was involved in something that delayed the scene)
AlarmStatus (Device Property - ArmMode)

Condition

AlarmDisarmed = (AlarmStatus == "Disarmed’)
SendAlarmNotification = CheckAlarmTime AND AlarmDisarmed

Actions
AlarmDisarmed - (none needed)
SendAlarmNotification - do your thing