I currently have my push notification setup so that I receive a text whenever the front door is opened.
- alias: Front Door Push Notification Open
trigger:
platform: state
entity_id: binary_sensor.door_window_sensor_158d000423de01
to: 'on'
action:
service: notify.alarm
data:
title: "DOOR OPENED"
message: "Guest house front door has been opened."
- alias: Front Door Push Notification Closed
trigger:
platform: state
entity_id: binary_sensor.door_window_sensor_158d000423de01
to: 'off'
action:
service: notify.alarm
data:
title: "DOOR CLOSED"
message: "Guest house front door has been closed."
How do I make it so that the push notification only gets forwarded to me if my alarm is also armed?
Thanks,
trwolff04