How to check shlage BE469 lock alarm activated?

Getting to the last of the rules I had in Wink transferred over to hubitat. Now working on the lock.

I have a Schlage BE469 lock setup and its working fine in Hubitat. Can see the lock, lock/unlock works.

One rule I had in Wink was that if the lock alarm activated it would trigger a notification.

I cant find anwhere trying to setup a RM or HSM rule where there is an option to check a lock alarm. Where would that be?

You would need a custom driver for your lock which exposes this alarm. I don’t believe the built-in drivers do so.

3 Likes

I think I mimicked the situation with a different rule. I've only made a couple conditional rules so far in RM so hopefully this one is correct. Haven't tested it yet.

The idea is if the lock is engaged but the door contact sensor is open for more than 1 minute then trigger a notification, turn on the hue lights to orange and the regular lighting on.

The way RM is setup unless I just didn't see how was I had to use a Not on the locked because I couldn't get it to select the exact T/F condition I wanted when picking the locked state.

The door lock shouldn't ever be normally engaged with the door open, unless you are doing something like putting it in a programming state where you engage the lock on purpose with the door open.

IF (( NOT Front Door Lock unlocked(F)
) OR
Front Door Sensor closed(T) [TRUE]) THEN
Cancel Delayed Actions
ELSE
Notify iPhone, Twilio SMS: 'Lock alarm - door open and still locked %date% %time%' --> delayed: 0:01:00 (cancelable)
Set color: Hue Lights ->Orange ->Level: 100 --> delayed: 0:01:00 (cancelable)
On: White Lights --> delayed: 0:01:00 (cancelable)
On: Entry Top Dimmer, Bedroom Dimmer, Entry Bottom Dimmer --> delayed: 0:01:00 (cancelable)
END-IF

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.