1
0
ansible-home-assistant/configuration/automations/alarm.yaml

198 lines
5.6 KiB
YAML
Raw Normal View History

2023-01-25 02:09:03 +00:00
- id: alarm-away-hallway
alias: '[Alarm] Trigger alarm when not at home - Hallway camera'
2021-01-17 01:59:02 +00:00
trigger:
2023-01-25 02:09:03 +00:00
# Use hallway motion sensor
2021-01-17 01:59:02 +00:00
- platform: state
2023-01-25 02:09:03 +00:00
entity_id: binary_sensor.hallway_motion_sensor
2021-01-17 01:59:02 +00:00
to: 'on'
2023-01-25 02:09:03 +00:00
# Use open/close sensors
2021-01-17 01:59:02 +00:00
- platform: state
2023-01-25 02:09:03 +00:00
entity_id: binary_sensor.bathroom_door_open_close
2021-01-17 01:59:02 +00:00
to: 'on'
- platform: state
2023-01-25 02:09:03 +00:00
entity_id: binary_sensor.front_door_open_close
2021-01-17 01:59:02 +00:00
to: 'on'
2023-01-25 02:09:03 +00:00
# Use lock
- platform: state
entity_id: lock.front_door_lock_doorlock
to: 'unlocked'
condition:
- condition: state
entity_id: alarm_control_panel.home_alarm
state: armed_away
action:
- service: alarm_control_panel.alarm_trigger
entity_id: alarm_control_panel.home_alarm
- service: notify.mobile_app_iphone
data:
title: "ALARM! Pending for disarm"
message: >
{{ state_attr(trigger.entity_id, 'friendly_name') }}
2023-01-25 02:09:03 +00:00
data:
entity_id: camera.hallway
url:
2023-01-25 02:56:51 +00:00
_: "/lovelace-tablet/security"
2023-01-25 02:09:03 +00:00
- id: alarm-away-living-roomn
alias: '[Alarm] Trigger alarm when not at home (Living Room)'
trigger:
# Use motion sensors
2021-01-17 01:59:02 +00:00
- platform: state
entity_id: binary_sensor.kitchen_motion_sensor
to: 'on'
2022-04-29 22:41:28 +00:00
- platform: state
entity_id: binary_sensor.kitchen_tabletop_motion_detection
to: 'on'
2023-01-28 00:11:18 +00:00
# - platform: state
# entity_id: binary_sensor.kitchen_sink_motion_sensor
# to: 'on'
# Use open/close sensors
2021-01-18 22:28:22 +00:00
- platform: state
2021-10-11 18:15:50 +00:00
entity_id: binary_sensor.dining_window_1_open_close
2021-05-10 09:26:51 +00:00
to: 'on'
2021-05-06 23:03:36 +00:00
- platform: state
2021-10-11 18:15:50 +00:00
entity_id: binary_sensor.dining_window_2_open_close
2021-05-10 09:26:51 +00:00
to: 'on'
2021-05-06 23:03:36 +00:00
- platform: state
entity_id: binary_sensor.freezer_door_on_off
2021-05-10 09:26:51 +00:00
to: 'on'
2021-01-18 22:28:22 +00:00
- platform: state
2021-05-06 23:03:36 +00:00
entity_id: binary_sensor.front_door_open_close
2021-05-10 09:26:51 +00:00
to: 'on'
2021-01-18 22:28:22 +00:00
- platform: state
2021-10-11 18:15:50 +00:00
entity_id: binary_sensor.office_window_open_close
2021-05-10 09:26:51 +00:00
to: 'on'
2023-01-25 02:09:03 +00:00
condition:
- condition: state
entity_id: alarm_control_panel.home_alarm
state: armed_away
action:
- service: alarm_control_panel.alarm_trigger
entity_id: alarm_control_panel.home_alarm
- service: notify.mobile_app_iphone
data:
title: "ALARM! Pending for disarm"
message: >
{{ state_attr(trigger.entity_id, 'friendly_name') }}
2023-01-25 02:09:03 +00:00
data:
entity_id: camera.living_room
url:
2023-01-25 02:56:51 +00:00
_: "/lovelace-tablet/security"
2023-01-25 02:09:03 +00:00
- id: alarm-away-remaining
alias: '[Alarm] Trigger alarm when not at home'
trigger:
# Use motion sensors
- platform: state
2023-01-25 02:09:03 +00:00
entity_id: binary_sensor.bathroom_motion_occupancy
to: 'on'
- platform: state
entity_id: binary_sensor.bedroom_motion_occupancy
to: 'on'
- platform: state
entity_id: binary_sensor.shower_motion
to: 'on'
# Use open/close sensors
2023-01-25 02:09:03 +00:00
- platform: state
entity_id: binary_sensor.bedroom_window_open_close
to: 'on'
2021-01-17 01:59:02 +00:00
condition:
- condition: state
2022-04-30 16:05:15 +00:00
entity_id: alarm_control_panel.home_alarm
2021-01-17 01:59:02 +00:00
state: armed_away
action:
- service: alarm_control_panel.alarm_trigger
2022-04-30 16:05:15 +00:00
entity_id: alarm_control_panel.home_alarm
2023-01-25 02:09:03 +00:00
- service: notify.mobile_app_iphone
data:
title: "ALARM! Pending for disarm"
message: >
{{ state_attr(trigger.entity_id, 'friendly_name') }}
2023-01-25 02:09:03 +00:00
data:
url:
2023-01-25 02:56:51 +00:00
_: "/lovelace-tablet/security"
2021-01-17 01:59:02 +00:00
- id: alarm-night
alias: '[Alarm] Trigger alarm at night'
trigger:
- platform: state
2021-05-06 23:03:36 +00:00
entity_id: binary_sensor.bedroom_window_open_close
2021-05-10 09:26:51 +00:00
to: 'on'
2021-01-18 22:28:22 +00:00
- platform: state
2021-10-11 18:15:50 +00:00
entity_id: binary_sensor.dining_window_1_open_close
2021-05-10 09:26:51 +00:00
to: 'on'
2021-01-18 22:28:22 +00:00
- platform: state
2021-10-11 18:15:50 +00:00
entity_id: binary_sensor.dining_window_2_open_close
2021-05-10 09:26:51 +00:00
to: 'on'
2021-01-18 22:28:22 +00:00
- platform: state
2021-05-06 23:03:36 +00:00
entity_id: binary_sensor.freezer_door_on_off
2021-05-10 09:26:51 +00:00
to: 'on'
2021-05-06 23:03:36 +00:00
- platform: state
entity_id: binary_sensor.front_door_open_close
2021-05-10 09:26:51 +00:00
to: 'on'
2021-05-06 23:03:36 +00:00
- platform: state
2021-10-11 18:15:50 +00:00
entity_id: binary_sensor.office_window_open_close
2021-05-10 09:26:51 +00:00
to: 'on'
2021-01-17 01:59:02 +00:00
condition:
- condition: state
2022-04-30 16:05:15 +00:00
entity_id: alarm_control_panel.home_alarm
2021-01-17 01:59:02 +00:00
state: armed_away
action:
- service: alarm_control_panel.alarm_trigger
2022-04-30 16:05:15 +00:00
entity_id: alarm_control_panel.home_alarm
- service: notify.mobile_app_iphone
data:
title: "ALARM! Pending for disarm"
message: >
{{ state_attr(trigger.entity_id, 'friendly_name') }}
data:
url:
2023-01-25 02:56:51 +00:00
_: "/lovelace-tablet/security"
2021-01-17 01:59:02 +00:00
- id: alarm-arm-away
alias: '[Alarm] Arm away'
trigger:
- platform: zone
2021-05-06 23:03:36 +00:00
entity_id: device_tracker.przemyslaws_iphone
2021-01-17 01:59:02 +00:00
zone: zone.home
event: leave
action:
- service: alarm_control_panel.alarm_arm_away
2022-04-30 16:05:15 +00:00
entity_id: alarm_control_panel.home_alarm
2021-01-17 01:59:02 +00:00
2021-05-06 23:03:36 +00:00
- id: alarm-pending
2021-01-17 01:59:02 +00:00
alias: '[Alarm] Send notification when alarm triggered'
2021-05-06 23:03:36 +00:00
trigger:
- platform: state
2022-04-30 16:05:15 +00:00
entity_id: alarm_control_panel.home_alarm
2021-05-06 23:03:36 +00:00
to: 'pending'
action:
2022-04-29 19:29:59 +00:00
- service: zwave_js.set_config_parameter
2022-04-29 19:42:14 +00:00
data:
parameter: '7'
value: '2'
target:
entity_id: switch.siren_alarm
2021-05-06 23:03:36 +00:00
- service: switch.turn_on
entity_id: switch.siren_switch
- id: alarm-triggered
alias: '[Alarm] Turn on alarm'
2021-01-17 01:59:02 +00:00
trigger:
- platform: state
2022-04-30 16:05:15 +00:00
entity_id: alarm_control_panel.home_alarm
2021-01-17 01:59:02 +00:00
to: 'triggered'
action:
- service: notify.notify
data:
2021-05-06 23:03:36 +00:00
message: "ALARM! The alarm has been triggered"
2022-04-24 22:35:59 +00:00
data:
importance: max
2022-04-29 19:29:59 +00:00
- service: zwave_js.set_config_parameter
2021-05-06 23:03:36 +00:00
data:
2022-04-29 19:29:59 +00:00
parameter: '7'
value: '1'
target:
entity_id: switch.siren_alarm
2021-05-06 23:03:36 +00:00
- service: switch.turn_on
entity_id: switch.siren_switch