19 lines
513 B
YAML
19 lines
513 B
YAML
# Alerts Package
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Alert Automations
|
|
automation:
|
|
- alias: Notify if Leak Sensors Trigger
|
|
mode: queued
|
|
trigger:
|
|
- platform: state
|
|
entity_id: binary_sensor.dishwasher_leak_detected
|
|
to: 'on'
|
|
- platform: state
|
|
entity_id: binary_sensor.washer_leak_detected
|
|
to: 'on'
|
|
action:
|
|
- service: notify.general
|
|
data:
|
|
message: "{{ trigger.to_state.name }} Triggered"
|