From 0173cc764163b34f28ad887484effc59d73c0853 Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Tue, 8 Nov 2022 12:38:32 +0100 Subject: [PATCH] Added notificaiton for office humidifier leak --- configuration/automations/office-leak.yaml | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 configuration/automations/office-leak.yaml diff --git a/configuration/automations/office-leak.yaml b/configuration/automations/office-leak.yaml new file mode 100644 index 0000000..d82af46 --- /dev/null +++ b/configuration/automations/office-leak.yaml @@ -0,0 +1,36 @@ +- id: office-leak + alias: '[Office] leak detected' + mode: restart + trigger: + - type: moist + platform: device + device_id: 45887888b0b9ea753953c93194ba49f0 + entity_id: binary_sensor.lumi_lumi_sensor_wleak_aq1_iaszone + domain: binary_sensor + action: + - service: zwave_js.set_config_parameter + data: + parameter: '7' + value: '1' + target: + entity_id: switch.siren_alarm + - service: switch.turn_on + target: + entity_id: switch.siren_alarm + - repeat: + until: + - condition: state + entity_id: binary_sensor.lumi_lumi_sensor_wleak_aq1_iaszone + state: "off" + sequence: + - service: switch.turn_on + target: + entity_id: switch.siren_alarm + - service: notify.mobile_app_iphone + data: + message: Humidifier water leak!!!! + - delay: + hours: 0 + minutes: 1 + seconds: 0 + milliseconds: 0