Over the weekend I’ve finally got around to adding the energy dashboard to my setup and am trying to configure it with the available OVO Energy sensors for electricity and gas consumption (and cost).
I’ve referenced this post but am left with several issues at the moment.
The OVO sensors update daily showing the previous daily consumption - gas updates at around 23:00, electricity around 02:00
I’ve wrapped the OVO sensors in utility_meter sensors for use in the energy dashboard.
gas_usage_daily:
unique_id: gas_usage_daily
source: sensor.ovo_last_gas_reading
name: "Gas Usage Daily"
cycle: daily
offset:
days: 1
gas_cost_daily:
unique_id: gas_cost_daily
source: sensor.ovo_last_gas_cost
name: "Gas Cost Daily"
cycle: daily
offset:
days: 1
gas_usage_monthly:
unique_id: gas_usage_monthly
source: sensor.ovo_last_gas_reading
name: "Gas Usage Monthly"
cycle: monthly
offset:
days: 1
gas_cost_monthly:
unique_id: gas_cost_monthly
source: sensor.ovo_last_gas_cost
name: "Gas Cost Monthly"
cycle: monthly
offset:
days: 1
electricity_usage_daily:
unique_id: electricity_usage_daily
source: sensor.ovo_last_electricity_reading
name: "Electricity Usage Daily"
cycle: daily
offset:
days: 1
electricity_cost_daily:
unique_id: electricity_cost_daily
source: sensor.ovo_last_electricity_cost
name: "Electricity Cost Daily"
cycle: daily
offset:
days: 1
electricity_usage_monthly:
unique_id: electricity_usage_monthly
source: sensor.ovo_last_electricity_reading
name: "Electricity Usage Monthly"
cycle: monthly
offset:
days: 1
electricity_cost_monthly:
unique_id: electricity_cost_monthly
source: sensor.ovo_last_electricity_cost
name: "Electricity Cost Monthly"
cycle: monthly
offset:
days: 1
However on viewing the energy dashboard I see the consumption displayed in hourly blocks (rather than daily):
How can I represent the data properly in the graph (daily blocks) based on the OVO sensors?
Worth noting that I’m waiting on a SMETS2 meter installation from OVO if that has bearing here.