Browse Source
Merge pull request #37 from nutechsoftware/dev
Added 'EXIT DELAY' pattern test to DSC arming panel state logic
main
Sean Mathews
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
alarmdecoder/decoder.py
|
|
@@ -793,7 +793,7 @@ class AlarmDecoder(object): |
|
|
|
exit = self._exit |
|
|
|
|
|
|
|
if self.mode == DSC: |
|
|
|
if "QUICK EXIT" in messageUp: |
|
|
|
if any(s in messageUp for s in ("QUICK EXIT", "EXIT DELAY")): |
|
|
|
exit = True |
|
|
|
else: |
|
|
|
exit = False |
|
|
|