Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions source/_components/sensor.solaredge.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ sensor:
site_id: SITE_ID
monitored_conditions:
- current_power
- last_day_data
- energy_today
```
{% endraw %}

Expand All @@ -56,13 +56,13 @@ monitored_conditions:
type: list
default: current_power
keys:
life_time_data:
lifetime_energy:
description: Lifetime energy generated at your SolarEdge Site in Wh
last_year_data:
energy_this_year:
description: Energy generated this year at your SolarEdge Site in Wh
last_month_data:
energy_this_month:
description: Energy generated this month at your SolarEdge Site in Wh
last_day_data:
energy_today:
description: Energy generated today at your SolarEdge Site in Wh
current_power:
description: Current generated power in W
Expand All @@ -84,10 +84,10 @@ sensor:
name: SolarEdge
monitored_conditions:
- current_power
- last_day_data
- last_month_data
- last_year_data
- life_time_data
- energy_today
- energy_this_month
- energy_this_year
- lifetime_energy
```
{% endraw %}

Expand All @@ -99,7 +99,7 @@ In case you would like to convert the values for example to kWh instead of the d
sensors:
platform: template
sensors:
solaredge_last_year_data_template:
value_template: '{{(states.sensor.solaredge_last_year_data.state | float / 1000) | round(2)}}'
solaredge_energy_this_year_template:
value_template: '{{(states.sensor.solaredge_energy_this_year.state | float / 1000) | round(2)}}'
```
{% endraw %}