From 97951cd0efc74478fc623f2e5eb7f0e2dcd292f9 Mon Sep 17 00:00:00 2001 From: Scott Petersen Date: Tue, 18 Jul 2017 12:28:53 -0700 Subject: [PATCH] Added another partial close event to LRR. --- alarmdecoder/messages/lrr/events.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alarmdecoder/messages/lrr/events.py b/alarmdecoder/messages/lrr/events.py index 3c154d6..615c01c 100644 --- a/alarmdecoder/messages/lrr/events.py +++ b/alarmdecoder/messages/lrr/events.py @@ -230,7 +230,9 @@ class LRR_CID_EVENT: STATUS_AUTO_ARM_TIME_EXTENDED = 0x464 STATUS_PANIC_ALARM_RESET = 0x465 ACCESS_SERVICE_ONOFF_PREMISES = 0x466 - # 467-479: ? + # 467-469: ? + OPENCLOSE_PARTIAL_CLOSING = 0x470 # HACK: This is from DSC, and is named far too closely to 0 + # 471-479: ? OPENCLOSE_PARTIAL_CLOSE = 0x480 # 481-500: ? DISABLE_ACCESS_READER = 0x501 @@ -546,6 +548,7 @@ LRR_CID_MAP = { LRR_CID_EVENT.STATUS_AUTO_ARM_TIME_EXTENDED: 'Status: Auto-arm Time Extended', LRR_CID_EVENT.STATUS_PANIC_ALARM_RESET: 'Status: Panic Alarm Reset', LRR_CID_EVENT.ACCESS_SERVICE_ONOFF_PREMISES: 'Status: Service On/Off Premises', + LRR_CID_EVENT.OPENCLOSE_PARTIAL_CLOSING: 'Open/Close: Partial Closing', LRR_CID_EVENT.OPENCLOSE_PARTIAL_CLOSE: 'Open/Close: Partial Close', LRR_CID_EVENT.DISABLE_ACCESS_READER: 'Disable: Access Reader', LRR_CID_EVENT.DISABLE_SOUNDER: 'Disable: Sounder',