First off - I readed documentation and forums so either I’m moron or it doesn’t describe what I need
I have a solar panels which after integrating with HA give me some information like current power of production, energy produced this day and few others. I want to make automation that when production drops to 0W it will send me mobile notification telling how much energy was produced today. It looks like this:
alias: 'SolarEdge [NOT PRODUCING] -> Kuba Telefon [NOTIFICATION]'
description: ''
trigger:
- platform: numeric_state
entity_id: sensor.solaredge_current_power
below: '1'
condition: []
action:
- device_id: c593fadfd2c2d134bc507567b588b2ae
domain: mobile_app
type: notify
message: Energy production ended. Energy produced today:
title: SolarEdge
mode: single
Now - how do I make that after words “Energry produced today” it will put actual today produced energy from sensor.solaredge_energy_today?
Maybe the question is silly but I can’t find an answer.
This thread is old but i hope someone can help me.
Almost the same as @BooBoss but I want my solar to give me produced electricity, sold and imported.
Everything works great if i put below 1 kWh (below: ‘1’) but my solar panels will produce under 1kwh a few hours so I want it to be “below: 0” but that does not work, I tried 0.1 and that will not work.
How can a make it work with 2 or 3 decimals? Like 0.100? or even better just with 0.
I have other automations that i want this to work on, it just works on 1, 2. 3. 4. and so on, no decimals.