mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-02 01:07:36 +00:00
1.3 KiB
1.3 KiB
title | description | ha_category | ha_release | ha_iot_class | ha_config_flow | ha_domain | ha_dhcp | ha_platforms | ha_codeowners | ha_integration_type | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
SolarEdge | Instructions on how to integrate SolarEdge sensor within Home Assistant. |
|
0.85 | Cloud Polling | true | solaredge | true |
|
|
device |
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
unit_of_measurement: kWh
state: "{{ (states('sensor.solaredge_energy_this_year') | float / 1000) | round(2) }}"
{% endraw %}