Hi
I wrote this automation:
alias: Spülmaschinen Fertigmeldung
description: ""
trigger:
- platform: numeric_state
entity_id:
- sensor.spulmaschine_power
attribute: power
above: 1000
enabled: true
condition: []
action:
- condition: numeric_state
entity_id: sensor.spulmaschine_power
attribute: power
below: 1
- delay:
hours: 0
minutes: 10
seconds: 0
milliseconds: 0
- if:
- condition: numeric_state
entity_id: sensor.spulmaschine_power
attribute: power
below: 1
then:
- service: notify.mobile_app_iphone_13_pro_max_te
metadata: {}
data:
title: Spülmaschine
message: Ich bin fertig, mach mich auf!
- service: notify.mobile_app_iphone_13_me
data:
title: Spülmaschine
message: Ich bin fertig, mach mich auf!
else:
- repeat:
sequence:
- service: notify.mobile_app_iphone_13_pro_max_te
metadata: {}
data:
title: Spülmaschine
message: Ich bin fertig, mach mich auf!
- service: notify.mobile_app_iphone_13_me
metadata: {}
data:
message: Ich bin fertig, mach mich auf!
title: Spülmaschine
until:
- condition: numeric_state
entity_id: sensor.spulmaschine_power
attribute: power
below: 1
mode: single
See anybody here the problem, why the automation is not working?