Hello,
I cannot figure out why the following automation which is tied to disarming Alexa Guard is not getting triggered.
- id: alexa_guard_off_when_arriving_home
alias: Alexa Guard Off When Arriving Home
trigger:
- platform: state
entity_id: group.family
to: 'home'
condition:
- condition: state
entity_id: alarm_control_panel.alexa_guard
state: armed
action:
- service: alarm_control_panel.alarm_disarm
data:
entity_id: alarm_control_panel.alexa_guard
I have tested to make sure the action is working by manually running it which it does without issue. The group.family entity is tied to four persons which shows as ‘home’ when at least one person is in the house and 'away when everyone is gone.
Any help on this would be appreciated.