I made this template.sensor in the templates.yaml (called from configuration.yaml template:
):
- sensor:
name: Solar Panel Production
state_class: total_increasing
unit_of_measurement: kWh
device_class: energy
icon: mdi:transmission-tower-import
state: >
{{ states("sensor.helper_envoy_current_power_production")|float }}
And I use this template.sensor in the Energy Dashboard, which is showing some values.
Now, I want to rename it like this (the name of the sensor):
- sensor:
name: Solar Panel Production Lifetime
state_class: total_increasing
unit_of_measurement: kWh
device_class: energy
icon: mdi:transmission-tower-import
state: >
{{ states("sensor.helper_envoy_current_power_production")|float }}
If I save that change, and call the “Template Entities” from the Developers Tools, will that RESET the data that already been accumulated?