So I started using the great alarm panel by @gazoscalvertos and since I also use HADashboard, arming it is convenient since we have a tablet by our door.
The problem is when arming the alarm through the panel in Home Assistant, it also arms all other alarms to the same state called which is great but if I arm it though HADashboard, it only arms the alarm panel configured keeping all my other alarms in the disarmed state. I could create an automation that listens to a state change but was wondering if that was done by design or a bug?
HADashboard was designed to work with the HASS alarm component, I wasn’t aware of this one! As far as i know the HASS completely next only supports 1 alarm.
If I understood your question correctly, I simply edited this automation to call my other alarm components:
- id: alarm_armed_away
alias: '[Alarm] Away Mode Armed'
trigger:
- platform: state
entity_id: alarm_control_panel.house
to: 'armed_away'
action:
#ADD THIS PART
- service: alarm_control_panel.alarm_arm_away
entity_id: alarm_control_panel.MY_ALARM_GOES_HERE
#ADD THIS PART
- data:
message: 'Alarm Away Mode Armed'
target: email/[email protected]
service: notify.pushbullet
- data:
message: 'The house alarm has been switched on in away mode. Goodbye'
service: notify.example_phone_tts