I’m just wondering why the utility meter provide slight different value from the Energy Dashboard
VS
- sensor:
- name: 'Office Daily Energy Total'
device_class: energy
unit_of_measurement: kWh
state: >
{% if is_number(states('sensor.office_daily_energy_offpeak')) and is_number(states('sensor.office_daily_energy_peak')) %}
{{ states('sensor.office_daily_energy_offpeak') | float + states('sensor.office_daily_energy_peak') | float }}
{% else %}
None
{% endif %}
utility_meter:
office_daily_energy:
source: sensor.shelly_office_plug_energy
name: Office Daily Energy
cycle: daily
tariffs:
- peak
- offpeak
and the peak offpeak is set with NR
Is that just because of small latancy between NR add-on (running on the same host) and HA?