From a381ceed86b0b8ca39260cfb022ddbdcd6807ab9 Mon Sep 17 00:00:00 2001 From: Jonathan Jogenfors Date: Thu, 20 Jul 2023 14:43:38 +0200 Subject: [PATCH] Add custom bypass night arming to SIA alarm codes (#95736) * Add SIA codes for night arming with custom bypass * Set night custom bypass to ARMED_CUSTOM_BYPASS --- homeassistant/components/sia/alarm_control_panel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/sia/alarm_control_panel.py b/homeassistant/components/sia/alarm_control_panel.py index ef2ecc7aa23..c59150266d9 100644 --- a/homeassistant/components/sia/alarm_control_panel.py +++ b/homeassistant/components/sia/alarm_control_panel.py @@ -61,6 +61,8 @@ ENTITY_DESCRIPTION_ALARM = SIAAlarmControlPanelEntityDescription( "OS": STATE_ALARM_DISARMED, "NC": STATE_ALARM_ARMED_NIGHT, "NL": STATE_ALARM_ARMED_NIGHT, + "NE": STATE_ALARM_ARMED_CUSTOM_BYPASS, + "NF": STATE_ALARM_ARMED_CUSTOM_BYPASS, "BR": PREVIOUS_STATE, "NP": PREVIOUS_STATE, "NO": PREVIOUS_STATE,