Hello guys,i got a problem with my energy dashboard,here is the info.
Im using a shelly 3em several years now to monitor my consumption and i tryed to implement my sensor in energy dashboard,Im using native shelly mqtt to grab my values,i got a 3 phase system so im gathering info from 3 sensors,i manage to make a template thats adds these sensors so i can just see one sensor with the sum of three, here is the yaml
- sensor:
- name: "New_energy_consumption_combined"
unique_id: New_energy_consumption_combined
unit_of_measurement: kWh
state: >-
{{ (states('sensor.3EM_L1_Total_Kwh_MQTT') | float(0) +
states('sensor.3EM_L2_Total_Kwh_MQTT') | float(0) +
states('sensor.3EM_L3_Total_Kwh_MQTT') | float(0)) | round }}
device_class: energy
state_class: total_increasing
with this sensor im getting readings,the number is huge for the first measurement cause i guess it takes the whole vallue from all this years and the next day from that it should just give me a correct daily value but,i can see anything past 11/5/2023 in the weekly tab,in the daily tab i can see the “today” values,what is happening?
Btw yes i can see every single day measurements correct if i change with the arrows,the problem is on the week tab.