Browse Source

Regular DSC panel messages no longer trigger zone events. DSC is expander only.

pyserial_fix
Scott Petersen 7 years ago
parent
commit
18f1d113e2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      alarmdecoder/zonetracking.py

+ 1
- 1
alarmdecoder/zonetracking.py View File

@@ -177,7 +177,7 @@ class Zonetracker(object):
self._last_zone_fault = 0

# Process fault
elif message.check_zone or message.text.startswith("FAULT") or message.text.startswith("ALARM"):
elif self.alarmdecoder_object.mode != DSC and (message.check_zone or message.text.startswith("FAULT") or message.text.startswith("ALARM")):
# Apparently this representation can be both base 10
# or base 16, depending on where the message came
# from.


Loading…
Cancel
Save