so can anyone help. this worked till yesterday but seems like its not getting any data from the sensor so all I’m getting is the output of 0.52. the concept of this is an output of daily electricity in £ + the daily standing charge. the sensor is a utility meter that is working showing an increasing figure of electricity used so i know that side of things is working fine
- platform: template
sensors:
daily_power:
icon_template: mdi:flash
value_template: "{{ ((states('sensor.daily') | float * 0.0002841) + (0.5163)) | round(2) }}"