We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e1a89 commit 7defb17Copy full SHA for 7defb17
custom_components/hikvision_axpro/__init__.py
@@ -147,7 +147,7 @@ def _update_data(self) -> None:
147
if subsys.arming == Arming.AWAY:
148
status = STATE_ALARM_ARMED_AWAY
149
break
150
- if subsys.arming == Arming.HOME:
+ if subsys.arming == Arming.STAY:
151
status = STATE_ALARM_ARMED_HOME
152
153
if subsys.arming == Arming.VACATION:
custom_components/hikvision_axpro/model.py
@@ -262,7 +262,7 @@ def to_dict(self) -> dict:
262
263
class Arming(Enum):
264
AWAY = "away"
265
- HOME = "home"
+ STAY = "stay"
266
VACATION = "vacation"
267
DISARM = "disarm"
268
0 commit comments