diff --git a/source/_integrations/solaredge.markdown b/source/_integrations/solaredge.markdown index 712c3d73393..3cdb077aba5 100644 --- a/source/_integrations/solaredge.markdown +++ b/source/_integrations/solaredge.markdown @@ -26,19 +26,3 @@ The SolarEdge Monitoring API has a daily rate limit of 300 requests. In order to {% include integrations/config_flow.md %} -## Additional template sensor - -In case you would like to convert the values for example to kWh instead of the default Wh, you can use the [template platform](/integrations/template). - -{% raw %} - -```yaml -# Example configuration.yaml entry for template platform -template: - - sensor: - - name: solaredge_energy_this_year_template - unit_of_measurement: kWh - state: "{{ (states('sensor.solaredge_energy_this_year') | float / 1000) | round(2) }}" -``` - -{% endraw %} diff --git a/source/_integrations/solaredge_local.markdown b/source/_integrations/solaredge_local.markdown index 505481ee9ed..cea483ca19f 100644 --- a/source/_integrations/solaredge_local.markdown +++ b/source/_integrations/solaredge_local.markdown @@ -63,19 +63,3 @@ sensor: name: SolarEdge ip_address: 192.168.1.123 ``` - -In case you would like to convert the values for example to kWh instead of the default Wh, you can use the [template platform](/integrations/template). - -{% raw %} - -```yaml -# Example configuration.yaml entry for sensor template platform -template: - - sensor: - - name: solaredge_energy_this_year_template - state: "{{ (states('sensor.solaredge_energy_this_year') | float / 1000) | round(2) }}" - unit_of_measurement: "KWh" - icon: "mdi:solar-power" -``` - -{% endraw %}