Fix for home-assistant/core#155695
values of heating.power.consumption.summary.dhw and heating.power.consumption.summary.heating is not being updated. A reboot of the "Communication module" in the ViCare Android App would update the values, but then become frozen day after.
But following values seems indeed to update nicely. heating.power.consumption.dhw, heating.power.consumption.heating and heating.power.consumption.total.
They can be extracted via these JSON Path's:
$.data[?(@.feature == 'heating.power.consumption.dhw')]
$.data[?(@.feature == 'heating.power.consumption.heating')]
$.data[?(@.feature == 'heating.power.consumption.total')]
# Then extract year value
$.properties.year.value[0]
Fix for home-assistant/core#155695
values of
heating.power.consumption.summary.dhwandheating.power.consumption.summary.heatingis not being updated. A reboot of the "Communication module" in the ViCare Android App would update the values, but then become frozen day after.But following values seems indeed to update nicely.
heating.power.consumption.dhw,heating.power.consumption.heatingandheating.power.consumption.total.They can be extracted via these JSON Path's: