Browse Source

Merge branch 'dev' of git.corp.nutech.com:ad2usb/pyad2usb into dev

pyserial_fix
Scott Petersen 10 years ago
parent
commit
756bcba8c8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      alarmdecoder/messages.py

+ 1
- 1
alarmdecoder/messages.py View File

@@ -173,7 +173,7 @@ class Message(BaseMessage):

if int(self.panel_data[19:21], 16) & 0x01 > 0:
# Current cursor location on the alpha display.
self.cursor_location = int(self.bitfield[21:23], 16)
self.cursor_location = int(self.panel_data[21:23], 16)

def dict(self, **kwargs):
"""


Loading…
Cancel
Save