Hello. I use my Shelly Plug S on my clothes dryer. An i would like to receive a message, if the dryer is finished. I already use this with the Homematic measuring socket (=HMIP-PSM):
alias: Nachricht - Waschmaschine fertig
description: ''
trigger:
- platform: numeric_state
below: '3'
for: '00:05:00'
entity_id: switch.0001dbe9914c9b
attribute: power
above: '1'
condition: []
action:
- service: notify.mobile_app_iphone
data:
title: '-- WASCHMASCHINE --'
message: Die Waschmaschine ist fertig!
mode: single
And when I transfer that to the dryer and the Shelly Plug S it looks like this:
I’m measuring between 2 and 115 watts because when the dryer is on but no longer active, the display in Homeassistant says it’s in that range. So it comes from >115W and does not fall below 2W. I have therefore chosen the same structure as for the washing machine. And there it has been working smoothly for more than a year.
My understanding based on my functional automation for the washing machine: If the dryer is actively running, it reliably needs >115W. And when it’s done, it’s reliably between 2W and 115W. This is because the dry laundry will be moved at intervals for another 5 minutes. Key word: anti-crease. At this point, however, I declare the dryer complete and would like a message. But it doesn’t come at all. I was already wondering whether the trigger value of 2W-115W will be triggered at some point beforehand and the 5 minutes will start at some point in between. Maybe it’s the case that it doesn’t start a second time?!
Yes. When I turn on my dryer, it’s well over 115W. If it follows and only moves the laundry, it is between 3W and 85W. And when it’s idle, it’s at 2.xW
Sorry, it always takes me a few days before it’s worth using the dryer. But I’ve tried both: Integer and String. So 115 and ‘115’. Both without success.