Hi!
I’m trying to make this automation:
If sensor.house_power_usage is <= 0 for 10 minutes Then send Notification (Also called: If no data is received, then warn)
This is what my noobish automation skills made, but it doesn’t work
trigger:
- minutes: '10'
platform: time_pattern
condition:
- below: '0'
condition: numeric_state
entity_id: sensor.house_power_usage
action:
....
Any ideas?