GoSungrow
GoSungrow copied to clipboard
Energy Dashboard Configuration struggling with missing last_reset
Hi, Love your add-on and really appreciate your hard work. I have a Sungrow SG10RS - single phase system. No battery.
When I try and configure the built-in HA Energy Dashboard, it throws an error saying that the sensor's are configured as state_class 'measurement' but are missing 'last_reset'
Any idea on how to fix this?
I created my own sensor, but maybe there are a dashboard sensor available...
name: daily yield gosungrow state: > {{ float(states('sensor.gosungrow_virtual_5143848_1_1_1_p1')) }} unit_of_measurement: kWh icon: mdi:solar-power device_class: energy state_class: total_increasing
I've got the same problem, it seems like GoSungrow is using state classes measurement/total on sensors, which are resetting to zero at midnight. According to the HA documentation total_increasing would be the correct state class instead.
Anyway, I added template sensors for all the required entities just like @helikopter1909. Here is my configuration for grid, PV and battery entities if somebody needs it. Just insert your ps_key and register the template entities in your energy dashboard settings.
template:
- sensor:
- name: Grid to Load Energy (Energy Dashboard)
state: >
{{ float(states('sensor.gosungrow_virtual_XXXXXXXXXXXXXX_grid_to_load_energy')) }}
unit_of_measurement: kWh
icon: mdi:transmission-tower
device_class: energy
state_class: total_increasing
- name: PV to Grid Energy (Energy Dashboard)
state: >
{{ float(states('sensor.gosungrow_virtual_XXXXXXXXXXXXXX_pv_to_grid_energy')) }}
unit_of_measurement: kWh
icon: mdi:transmission-tower
device_class: energy
state_class: total_increasing
- name: PV Daily Energy (Energy Dashboard)
state: >
{{ float(states('sensor.gosungrow_virtual_XXXXXXXXXXXXXX_pv_daily_energy')) }}
unit_of_measurement: kWh
icon: mdi:transmission-tower
device_class: energy
state_class: total_increasing
- name: Battery Charge Energy (Energy Dashboard)
state: >
{{ float(states('sensor.gosungrow_virtual_XXXXXXXXXXXXXX_battery_charge_energy')) }}
unit_of_measurement: kWh
icon: mdi:transmission-tower
device_class: energy
state_class: total_increasing
- name: Battery Discharge Energy (Energy Dashboard)
state: >
{{ float(states('sensor.gosungrow_virtual_XXXXXXXXXXXXXX_battery_discharge_energy')) }}
unit_of_measurement: kWh
icon: mdi:transmission-tower
device_class: energy
state_class: total_increasing
I've got the same problem, it seems like GoSungrow is using state classes measurement/total on sensors, which are resetting to zero at midnight. According to the HA documentation total_increasing would be the correct state class instead.
Anyway, I added template sensors for all the required entities just like @helikopter1909. Here is my configuration for grid, PV and battery entities if somebody needs it. Just insert your ps_key and register the template entities in your energy dashboard settings.
template: - sensor: - name: Grid to Load Energy (Energy Dashboard) state: > {{ float(states('sensor.gosungrow_virtual_XXXXXXXXXXXXXX_grid_to_load_energy')) }} unit_of_measurement: kWh icon: mdi:transmission-tower device_class: energy state_class: total_increasing - name: PV to Grid Energy (Energy Dashboard) state: > {{ float(states('sensor.gosungrow_virtual_XXXXXXXXXXXXXX_pv_to_grid_energy')) }} unit_of_measurement: kWh icon: mdi:transmission-tower device_class: energy state_class: total_increasing - name: PV Daily Energy (Energy Dashboard) state: > {{ float(states('sensor.gosungrow_virtual_XXXXXXXXXXXXXX_pv_daily_energy')) }} unit_of_measurement: kWh icon: mdi:transmission-tower device_class: energy state_class: total_increasing - name: Battery Charge Energy (Energy Dashboard) state: > {{ float(states('sensor.gosungrow_virtual_XXXXXXXXXXXXXX_battery_charge_energy')) }} unit_of_measurement: kWh icon: mdi:transmission-tower device_class: energy state_class: total_increasing - name: Battery Discharge Energy (Energy Dashboard) state: > {{ float(states('sensor.gosungrow_virtual_XXXXXXXXXXXXXX_battery_discharge_energy')) }} unit_of_measurement: kWh icon: mdi:transmission-tower device_class: energy state_class: total_increasing
This looks like it might be the fix.
However my biggest issue is that I don't have any entities with the sensibly named endings like your grid_to_load_energy or pv_to_grid_energy so I don't know what information your variables are presenting.
Are they Daily totals in each, or are the running totals (ever increasing) in each of those sensors that you've used to create the total_increasing sensor?
@joelbassett
The sensors that you have to choose for the energy dashboard are listed here: https://github.com/MickMake/HomeAssistantAddons/blob/main/GoSungrow/DOCS.md (all the way at the bottom)
I'm relatively new to Sungrow, but it looks like they all reset to zero at midnight (although the names don't have "Daily" in them like some other sensors do). But those resets wouldn't be a problem at all if the correct device class total_increasing is used, because Home Assistant then treats sensor drops as meter resets and doesn't count them for statistics. So just creating template sensors that copy the value but have a fixed device_class did work for me.
The only thing a had to change was the sensor for PV energy. "PV Energy" seems to count energy twice sometimes (when it is charged to and consumed from the battery), insted I use the sensor "PV Daily Energy" that looks like to count as I want.
When setting up GoSungrow, I got a ton of sensors and it has been difficult to find what I wanted at first (especially because the same sensors exist multiple times with different names). Nothing is documented because Sungrow is proprietary. But make sure you havn't disabled any sensors in HA, then you should able to find the right ones using the sensor id. Maybe try to search for "sensor.gosungrow_virtual" or "grid_to_load_energy".
@joelbassett
The sensors that you have to choose for the energy dashboard are listed here: https://github.com/MickMake/HomeAssistantAddons/blob/main/GoSungrow/DOCS.md (all the way at the bottom)
I'm relatively new to Sungrow, but it looks like they all reset to zero at midnight (although the names don't have "Daily" in them like some other sensors do). But those resets wouldn't be a problem at all if the correct device class total_increasing is used, because Home Assistant then treats sensor drops as meter resets and doesn't count them for statistics. So just creating template sensors that copy the value but have a fixed device_class did work for me.
The only thing a had to change was the sensor for PV energy. "PV Energy" seems to count energy twice sometimes (when it is charged to and consumed from the battery), insted I use the sensor "PV Daily Energy" that looks like to count as I want.
When setting up GoSungrow, I got a ton of sensors and it has been difficult to find what I wanted at first (especially because the same sensors exist multiple times with different names). Nothing is documented because Sungrow is proprietary. But make sure you havn't disabled any sensors in HA, then you should able to find the right ones using the sensor id. Maybe try to search for "sensor.gosungrow_virtual" or "grid_to_load_energy".
Thanks for trying. The issue is that my inverter is not reporting any of those listed sensor names. Best example I can give is that my sensor for Self-Consumption of PV is called sensor.gosungrow_getpsdetail_xxxxxx_zfzy_map So unfortunately its not quite as intuitive as picking the sensor that has the correct name, as none do.
I'm moreso chasing what sensors I should be using to create the faux sensors for the energy dashboard.... ie can I use the sensor that reports the daily pv yield or do I have to find the one that is reporting the all time pv yield.
As I said, if your template sensor uses the state class total_increasing Home Assistant will ignore any resets. So daily PV yield should work as well.
ALso noticed, that the sensors "The sensors that you have to choose for the energy dashboard are listed here: https://github.com/MickMake/HomeAssistantAddons/blob/main/GoSungrow/DOCS.md (all the way at the bottom)" are not quit well working. Some of them are 4-5-6 times in it and you can´t read the end of the sensor name. Also it is not correct, today f.e. with "sensor.gosungrow_virtual_xxxxxx_pv_energy" there is a production of MINUS !!! i will try the other integration the next days....
I have the same issue, what did you do to eventually resolve it?
@joelbassett same here, did you find a solution?
I too have this issue. I have names like "Daily Yield of Plant" multiple times, and the last_reset error when I try to use them in the Energy tab. I'll try to attach a file but GitHub is stubborn in that department...
This is the error that comes up when I select Daily Yield of Plant above
.