Skip to content

Commit

Permalink
Fix for #96: Update handling of DSC 651 update
Browse files Browse the repository at this point in the history
Clear the `alarm`, `armed_*`, `eixt_delay` and `entry_delay` states when a 651 (Partition Not Ready) update is received from the EVL.  This should properly clear an alarm triggered by a fire or panic activation.
  • Loading branch information
ufodone committed Apr 22, 2024
1 parent b3073d7 commit 0537fcc
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,16 @@ def __str__(self) -> str:
"name": "Not Ready",
"handler": "partition_state_change",
"state_change": True,
"status": {"ready": False, "alpha": "Not Ready"},
"status": {
"ready": False,
"alarm": False,
"armed_stay": False,
"armed_zero_entry_delay": False,
"armed_away": False,
"exit_delay": False,
"entry_delay": False,
"alpha": "Not Ready",
},
},
"652": {"name": "Armed", "handler": "partition_state_change", "state_change": True},
"653": {
Expand Down

0 comments on commit 0537fcc

Please sign in to comment.