Hi,
I’ve researched some older topics but they did not meet the exact thing I’m looking for.
I’ve got a super simple automation that just notifies me when the value of a sensor is above the 7kWh mark.
However, it seems like it’s not working.
alias: PV - Melding wanneer er meer dan 7kWh is opgewekt door de panelen.
description: ""
triggers:
- trigger: numeric_state
entity_id:
- sensor.pv_productie
below: 7
conditions: []
actions:
- action: notify.notify
metadata: {}
data:
title: Teruglevering
message: Er is op het moment >7kWh opgewekt, zet elektrische apparaten aan!
mode: single
It should send me a notification on my phone once it crosses the 7kWh mark. But it didn’t
The current value is 20kWh for today, so it did pass. I am doing something super simplistic but I can’t seem to find my error here. Somebody who can shine a light on my issue?