feat: Ajout du monitoring d'énergie

This commit is contained in:
2022-01-29 14:07:44 +01:00
parent de0dc24158
commit abdf3900af
4 changed files with 57 additions and 2 deletions

View File

@ -0,0 +1,17 @@
{{ $json := getJSON "https://monitoringapi.solaredge.com/site/2516130/overview?api_key=GVF1BZAAM74IRDZ2WRWT32A5V0CY9G4Z&format=json" }}
{{ $lastDayData := $json.overview.lastDayData.energy }}
{{ $lastMonthData := $json.overview.lastMonthData.energy }}
{{ $lifeTimeData := $json.overview.lifeTimeData.energy }}
<table class="monitoring">
<tr>
<th colspan="3">Production Greyzolon Duluth</th>
</tr>
<tr>
<td>Energie du jour<strong>{{ lang.NumFmt 2 (div $lastDayData 1000) "- . ," }} kWh</strong></td>
<td>Energie du mois<strong>{{ lang.NumFmt 2 (div $lastMonthData 1000000) "- . ," }} MWh</strong></td>
<td>Production totale<strong>{{ lang.NumFmt 2 (div $lifeTimeData 1000000) "- . ," }} MWh</strong></td>
</tr>
<tr>
<td class="date" colspan="3">{{ $json.overview.lastUpdateTime | time.Format ":date_medium" }}</td>
</tr>
</table>