Hi,
I have a problem with a template helper binary sensor that does not update.
I have two Shelly PM Mini Gen3 devices connected to HA via the Shelly integration. One monitors my washing machine, the other my tumble dryer. This works fine and I get nice charts for the corresponding power sensors sensor.pm_mini_gen3_waschmaschine_power and sensor.pm_mini_gen3_waeschetrockner_power.
For use in automations, I added two template helper binary sensors that should indicate if each of the appliances is running:
template:
- binary_sensor:
- name: "Waschmaschine in Betrieb"
delay_on:
minutes: 1
delay_off:
minutes: 1
state: >
{{ states('sensor.pm_mini_gen3_waschmaschine_power')|float(0) >= 6 }}
and
template:
- binary_sensor:
- name: "Wäschetrockner in Betrieb"
delay_on:
minutes: 1
delay_off:
minutes: 1
state: >
{{ states('sensor.pm_mini_gen3_waeschetrockner_power')|float(0) >= 4 }}
Both sensors are added to HA as expected. However, the one for the washing machine does not update. For an example, see attached chart (1).
The âWaschmaschine in Betriebâ sensor never updates, even though the template condition is clearly met. I also evaluated the template in the developer tools, and it seems to be working fine. For example:
While the washing machine is off: see attached chart (3).
And while the washing machine is running: see attached chart (4).
The binary sensor for the tumble dryer is working fine: see attached chart (2).
I checked the logs and did not find anything related. I restarted HA multiple times. HA is on the latest version, 2026.1.3.
Any ideas what causes this or how to fix it?
Thanks ![]()
As I can add only one media attachment, all pictures in one:

