I have set up an Automation based on a blueprint. Unfortunately the notification when the dish washer starts and when it´s finished does not sent the notifictaion. I have tested the lines of the notification. These are working.
Here is the code of the automation:
Automation Config
trigger:
- platform: numeric_state
entity_id: sensor.shellyplug_s_01_power
for:
minutes: 10
above: 15
condition: []
action:
- choose: []
default:
- event: Benachrichtigung Geschirrspüler startet
event_data:
service: notify.Notification01
data:
message: Der Geschirrspüler läuft
title: Geschirrspüler läuft
- wait_for_trigger:
- platform: numeric_state
entity_id: sensor.shellyplug_s_01_power
below: 1
for:
minutes: 5
- choose: []
default:
- event: Benachrichtigung Geschirrspüler fertig
event_data:
service: notify.Notification01
data:
message: Der Geschirrspüler ist fertig
title: Geschirrspüler ist fertig
mode: single
max_exceeded: silent
id: '1648046232279'
alias: Geschirrspüler has finished
description: Wenn der Geschirrspüler fertig ist
Blueprint Config:
id: '1648046232279'
alias: Geschirrspüler has finished
description: Wenn der Geschirrspüler fertig ist
use_blueprint:
path: >-
sbyx/notify-or-do-something-when-an-appliance-like-a-dishwasher-or-washing-machine-finishes.yaml
input:
power_sensor: sensor.shellyplug_s_01_power
actions:
- event: Benachrichtigung Geschirrspüler fertig
event_data:
service: notify.Notification01
data:
message: Der Geschirrspüler ist fertig
title: Geschirrspüler ist fertig
pre_actions:
- event: Benachrichtigung Geschirrspüler startet
event_data:
service: notify.Notification01
data:
message: Der Geschirrspüler läuft
title: Geschirrspüler läuft
starting_threshold: 15
starting_hysteresis: 10
finishing_threshold: 1
finishing_hysteresis: 5