forked from openhab/openhab1-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DSC Alarm: Fix Premature Setting of Partition Arm Mode Item (openhab#…
…4416) The binding would prematurely set the item PARTITION_ARM_MODE when issuing a partition arm command. This would sometimes show that the partition was armed when it actually wasn't. This fixes that situation by only setting the item when a verification message is received from the alarm system.
- Loading branch information
1 parent
fe40dd9
commit 64733d4
Showing
12 changed files
with
436 additions
and
525 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
112 changes: 38 additions & 74 deletions
112
...g.dscalarm/src/main/java/org/openhab/binding/dscalarm/internal/DSCAlarmActiveBinding.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,6 @@ | |
* @since 1.6.0 | ||
*/ | ||
public enum DSCAlarmConnectorType { | ||
SERIAL, | ||
TCP; | ||
SERIAL, | ||
TCP; | ||
} |
Oops, something went wrong.