Is there a sensor generated by Energy Dashboard that can show my daily cost?

Hello,
is there a way to get this value from the Energy Dashboard into a sensor to display on a dashboard?


I have these two entities in the system but the reset at different times for some reason and are not the same as the values displayed on the Energy Dashboard.

Anyone knows?

no, there isnt, but you can use a template. This is mine which always increasing. I could then use the Meter Helper and create a daily sensor…

      - name: " Solar Sold To Grid Net"
        icon: mdi:transmission-tower-export
        unit_of_measurement: "kWh"
        state: "{{ states('sensor.fronius_real_energy_produced')|float / 1000  | round(2) - states('sensor.fronius_real_energy_consumed')|float / 1000  | round(2) }}"
        device_class: energy
        state_class: total_increasing
        availability: "{{ states('sensor.fronius_real_energy_produced')|is_number and states('sensor.fronius_real_energy_consumed')|is_number }}"
1 Like