FHEM Forum

FHEM - Hausautomations-Systeme => Home Connect => Thema gestartet von: lylybrown am 18 Juni 2026, 11:29:42

Titel: Home Connect Dishwasher Program Status
Beitrag von: lylybrown am 18 Juni 2026, 11:29:42
Hello, has anyone tried using FHEM to trigger a notification only when a Home Connect dishwasher switches from "Drying" to "Finished"? I can read the general program status, but I'm looking for a reliable event or reading that specifically detects the end of the drying phase without creating duplicate notifications.
Titel: Aw: Home Connect Dishwasher Program Status
Beitrag von: Adimarantis am 18 Juni 2026, 12:44:24
For exactly that purpose I'm setting the "state":
run: A program is currently running
pause: A program is currently paused
scheduled: A program is scheduled to start later
done: Program was finished, but door not yet opened - used to indicate that device should be emptied
idle: Device does nothing and is ready to be used (either in standby or off)
auto: Device does nothing and remote start is enabled, so it can be used for automation

So I guess what you're looking for is waiting for the event when state changes to "done". I'm using these state to visualize my dishwasher on FTUI

Jörg
Titel: Aw: Home Connect Dishwasher Program Status
Beitrag von: forebittblurt am 04 August 2026, 09:28:49
Zitat von: lylybrown am 18 Juni 2026, 11:29:42Hello, has anyone tried using FHEM to trigger a notification only when a Home Connect dishwasher switches from "Drying" to "Finished"? I can read the general program status, but I'm looking for a reliable event or reading that specifically detects the end of the drying phase without creating duplicate notifications.

Thanks, Jörg. That sounds like exactly the behavior I was looking for.

Using the transition to state = "done" seems much cleaner than monitoring the different program phases individually. It also avoids having to rely on the "Drying" status, which could potentially generate multiple events depending on the appliance.