From 2bc7444427623686209e376a97efc2043b96c3fb Mon Sep 17 00:00:00 2001 From: coreGreenberet <green@corona-bytes.net> Date: Fri, 25 Jan 2019 19:45:42 +0100 Subject: [PATCH] Fix homematicip cloud alarm_arm_home (#20321) --- .../components/alarm_control_panel/homematicip_cloud.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/alarm_control_panel/homematicip_cloud.py b/homeassistant/components/alarm_control_panel/homematicip_cloud.py index 8c483121650..3fdfc768c52 100644 --- a/homeassistant/components/alarm_control_panel/homematicip_cloud.py +++ b/homeassistant/components/alarm_control_panel/homematicip_cloud.py @@ -76,7 +76,7 @@ class HomematicipSecurityZone(HomematicipGenericDevice, AlarmControlPanel): async def async_alarm_arm_home(self, code=None): """Send arm home command.""" - await self._home.set_security_zones_activation(True, False) + await self._home.set_security_zones_activation(False, True) async def async_alarm_arm_away(self, code=None): """Send arm away command.""" -- GitLab