Hi @slovenc,
I used a simple Node Red automation to toggle the state of two input booleans at specific times and created a template sensor in the configuration:
Hi Frenck, I also have a solar edge converter but I can get the integration working. After entering the site id and api key I get an unknown error.
I did use the integration in the past, maybe that causing the issue. Could you please help?
Got it fixed. In the core.config_entries file there was an old SolarEdge section. After removing it and a HAS reboot I managed to install and configure the SolarEdge extension.
Thanks Hamish. When I set up as you have the “energy distribution” is not accurate - I am pulling about 1kw at the moment (it’s the middle of the night and the kids heater is on) but it says 3.3kw. In fronius app it shows 1kw. Any clues on what’s happening here?
Hi! Could homeone point me to the right direction how to purge energy usage history? I had a faulty config in my home assistant glow and now it says that I have used a months worth of energy in the last couple of days. I tried recorder purge for the glow-device and it’s entities but it didn’t help.
You are missen the ‘h’ in the round images. I think it is correct. The value in the circle is the cumulative value of the day. 3.3 is the sum of the bars of the day.
kW is the actual consumpion per second. W= Joule/second.
kWh is consumption over a timespan of an hour.
You can use 100kW for one second, and 0 for the other 3599 seconds and still end up with low kWh value.
You see in the y axis of the bars, the kWh is about 0,8 per bar. 800W. That looks correct
Thanks , I see how it works now. Those kinds of graphics usually show real-time, updated every few seconds so that (and the animations!) threw me a little but now I notice the “h” you are right.
Would love to see a real-time version of this visual too.
I would like to be able to feed in power sensors as well as energy as that would help with making it real time, but anyone who is getting data from their energy distributor’s meter probably won’t have that.
Before the new energy dashboard there was the power-wheel-card which displays a similar graphic. You can configure it for power or energy or both depending on what sensors you have.
It would appear that you have not correctly setup the integration sensor. This is what you have to do. This needs to be created outside of the template area of configuration.yaml
sensor:
- platform: integration
name: Grid Export Energy
source: sensor.grid_export_power
unit_prefix: k
unit_time: h
this is my full code in configuration.yaml, maybe I have bad formatting?
template:
- sensor:
name: Grid Export Energy
state_class: measurement
icon: mdi:solar-panel
unit_of_measurement: W
device_class: power
state: >
{{ [0, states('sensor.envoy_serialnumber_current_power_production') | int - states('sensor.envoy_serialnumber_current_power_consumption') | int ] | max }}
- sensor:
name: Grid Import Energy
state_class: measurement
icon: mdi:transmission-tower
unit_of_measurement: W
device_class: power
state: >
{{ [0, states('sensor.envoy_serialnumber_current_power_consumption') | int - states('sensor.envoy_serialnumber_current_power_production') | int ] | max }}
sensor:
- platform: integration
name: Grid Export Energy
source: sensor.grid_export_power
unit_prefix: k
unit_time: h
- platform: integration
name: Grid Import Energy
source: sensor.grid_import_power
unit_prefix: k
unit_time: h