1.3 KiB

title, description, ha_category, ha_release, ha_iot_class, ha_config_flow, ha_domain, ha_dhcp, ha_platforms, ha_codeowners
title description ha_category ha_release ha_iot_class ha_config_flow ha_domain ha_dhcp ha_platforms ha_codeowners
SolarEdge Instructions on how to integrate SolarEdge sensor within Home Assistant.
Sensor
Energy
0.85 Cloud Polling true solaredge true
sensor
@frenck

The solaredge platform uses the SolarEdge Monitoring API to allow you to get details from your SolarEdge solar power setup and integrate these in your Home Assistant installation.

The SolarEdge Monitoring API has a daily rate limit of 300 requests. In order to stay under this limit, and allow for some additional requests, the solaredge platform will update the site overview every 15 minutes.

{% 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.

{% raw %}

# Example configuration.yaml entry for template platform
template:
  - sensor:
    - name: solaredge_energy_this_year_template:
      state: "{{ (states('sensor.solaredge_energy_this_year') | float / 1000) | round(2) }}"

{% endraw %}