Alarmo: Nobody home notification to arm

Okay, I’m kind of stuck at the part for disarming it with a hidden button. Yes the WAF is given :wink: What am I doing wrong here? When double clicking the button it’s recognized by the automation that it was triggered but the alarm stays on armed. Any ideas?

```
alias: disarm
description: “”
trigger:
- platform: device
domain: mqtt
device_id: hidden-button-id
type: click
subtype: double
discovery_id: hidden-button-id click_double
condition:
- condition: state
entity_id: alarm_control_panel.alarmo
state: armed_away
action:
- service: alarmo.disarm
data:
entity_id: alarm_control_panel.alarmo
code: "nope, not telling "
mode: armed_home
skip_delay: true
force: true
mode: single

```
Two other thoughts:
* I’m thinking also to remove the condition that it needs to be in armed_away so that it can also be disarmed from away_vacation or would that be in conflict with my thought below?
* When we are on vacation friends or family sometimes come by to water the plants e.g. is there a way that for example when it is set to armed_vacation that they’re just told a differnet way to disarm it (e.g. just one push) and that the system re-arms after like 30min or 1h?

Thanks,
Helge

Got it running using an automation which I took from the blueprint exchange:
Aqara Buttons All-In-One [Zigbee2MQTT]
Great for people like me :smiley: