Hallo zusammen,
ich habe mir hier eine kleine Automation gebastelt, die mir sagt, wann meine Waschmaschine fertig ist. Hat bis vor Wochen auch perfekt funktioniert, nun bekomme ich immer eine “Fertig” Meldung, obwohl die Maschine noch nicht mal gestartet ist:
alias: Waschmaschine Startbereitschaft
description: ""
triggers:
- type: power
device_id: 6d935cc9e659d6d51abd86001c2c4a01
entity_id: 0e12a8a63982e5890e5a77df2d3c1334
domain: sensor
trigger: device
above: 20
for:
hours: 0
minutes: 30
seconds: 0
conditions:
- condition: device
type: is_on
device_id: 6d935cc9e659d6d51abd86001c2c4a01
entity_id: 4cc3f2e11e8e0d2e94b051886603d1b0
domain: switch
actions:
- action: input_boolean.turn_on
metadata: {}
data: {}
target:
entity_id: input_boolean.waschmaschine
mode: single
alias: Waschmaschine läuft
description: ""
triggers:
- type: power
device_id: 6d935cc9e659d6d51abd86001c2c4a01
entity_id: 0e12a8a63982e5890e5a77df2d3c1334
domain: sensor
trigger: device
below: 5
for:
hours: 0
minutes: 5
seconds: 0
enabled: true
conditions:
- condition: device
type: is_on
device_id: 6d935cc9e659d6d51abd86001c2c4a01
entity_id: 4cc3f2e11e8e0d2e94b051886603d1b0
domain: switch
enabled: false
- condition: state
entity_id: automation.waschmaschine
state: "on"
for:
hours: 0
minutes: 30
seconds: 0
enabled: true
actions:
- action: notify.mobile_app_iphone
metadata: {}
data:
message: Fertig :-)
title: Waschmaschine
- action: notify.mobile_app_iphone_von_raphael
metadata: {}
data:
message: Fertig :-)
title: Waschmaschine
- action: input_boolean.turn_off
metadata: {}
data: {}
target:
entity_id: input_boolean.waschmaschine
- type: turn_off
device_id: 6d935cc9e659d6d51abd86001c2c4a01
entity_id: 4cc3f2e11e8e0d2e94b051886603d1b0
domain: switch
enabled: false
mode: single
Hat sich irgendwas in HA geändert, was ich nicht mitbekommen habe?