i want to trigger off a value that has been over a value for a duration
for example i want to turn some item on when my solar output had been over 10 for 15 minutes or more. not just trigger off a momentary clearing in the sky.
can anyone help with that?
Please share some of your YAML so we have a base to help you with. How to help us help you - or How to ask a good question
Just use the for option with a numerical state trigger.
...
triggers:
- trigger: numeric_state
entity_id: sensor.abc
above: 10
for:
minutes: 15
But if it starts at 11 it will never trigger ![]()