Hi,
I’m monitoring a pool pump with the energy (W) value.
But I’m not sure why this trigger is not working:
alias: Notify Pool Pumpe läuft vermutlich trocken oder manuell aus
description: ''
trigger:
- platform: numeric_state
entity_id: sensor.blitzwolf_2_energy_power
for:
hours: 0
minutes: 0
seconds: 10
milliseconds: 0
below: '380'
And this does work.
alias: Notify Pool Pumpe läuft vermutlich trocken oder manuell aus
description: ''
trigger:
- platform: numeric_state
entity_id: sensor.blitzwolf_2_energy_power
for:
hours: 0
minutes: 0
seconds: 10
milliseconds: 0
below: '380'
above: '-1'
I have many automations with only the “below” value running correct for years. I hope I dont need to test them all.
So what is the issue with the first trigger?? I’m confused
Thanks for helping