Here is one of my configurations.
Here you can find out how to react to the alarm states in Home Assistant using automations.
Set value of ignore_open_sensors
configuration variable:
service: alarm_control_panel.set_ignore_open_sensors
data:
value: true
The default for value
is false
, i.e making a service call without data
service: alarm_control_panel.set_ignore_open_sensors
has the same effect as
service: alarm_control_panel.set_ignore_open_sensors
data:
value: false
Set the Away
mode after a configured pending_time
:
home/alarm/set ARM_AWAY
Set the Home
mode immediately:
home/alarm/set ARM_HOME {"code":"override"}
Set the Home
mode using a code after a configured pending_time
:
home/alarm/set ARM_HOME {"code": 1234}
Disarms the alarm if override_code
is true
:
home/alarm/set DISARM
Disarm the alarm if override_code
is false
:
home/alarm/set DISARM {"code": 1234}