Skip to content

Commit 6985b30

Browse files
j-mutterandylintner
authored andcommitted
Update the TargetSecuritySystemState enum to match the Homekit documentation (#44)
1 parent 292a274 commit 6985b30

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/java/com/beowulfe/hap/accessories/properties/TargetSecuritySystemState.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@
1414
public enum TargetSecuritySystemState {
1515

1616
/**
17-
* The home is occupied and residents are active.
17+
* Arm the system when the home is occupied and residents are active.
1818
*/
1919
STAY_ARM(0),
2020
/**
21-
* The home is unoccupied.
21+
* Arm the system when the home is unoccupied.
2222
*/
2323
AWAY_ARM(1),
2424
/**
25-
* The home is occupied and residents are sleeping.
25+
* Arm the system when the home is occupied and residents are sleeping.
2626
*/
2727
NIGHT_ARM(2),
2828
/**
29-
* The security system is disarmed.
29+
* Disarm the system.
3030
*/
31-
DISARMED(3);
31+
DISARM(3);
3232

3333
private final static Map<Integer, TargetSecuritySystemState> reverse;
3434
static {

0 commit comments

Comments
 (0)