Hi, I’m trying to make my tumble dryer smart. I have a smart plug and I want to create an automation that notifies me when the dryer is finished.
So I created this automation:
description: ""
triggers:
- trigger: numeric_state
entity_id:
- sensor.trockner_leistung
for:
hours: 0
minutes: 1
seconds: 0
below: 30
conditions: []
actions:
- action: notify.mobile_app_pixel_10_pro
metadata: {}
data:
message: Der Trocker ist wahrscheinlich fertig.
title: Trockner ist fertig!
data:
channel: Appliances
mode: single
Now I want to add a condition, that the value has to be over a certain amount bevor. Something like: If the “Leistung” is below 30 for 1 Minute after it was above 30. Otherwise I also get notified if its turned on or in standby.
I have no idea how to add this second condition since I’m new to home assistant.
