22 lines
604 B
YAML
22 lines
604 B
YAML
- id: info-leak-notice
|
|
alias: '[INFO] Leak notice'
|
|
mode: single
|
|
trigger:
|
|
- platform: state
|
|
entity_id: binary_sensor.coffee_machine_leak_sensor
|
|
to: 'on'
|
|
- platform: state
|
|
entity_id: binary_sensor.kitchen_sink_leak_sensor
|
|
to: 'on'
|
|
- platform: state
|
|
entity_id: binary_sensor.washing_machine_water_leak_sensor
|
|
to: 'on'
|
|
action:
|
|
- service: notify.mobile_app_iphone_pg
|
|
data:
|
|
title: "Leak detection"
|
|
message: >
|
|
Leak detected: {{ state_attr(trigger.entity_id, 'friendly_name') }}
|
|
data:
|
|
importance: high
|