diff --git a/Energy_Pie/module.html b/Energy_Pie/module.html index 09c4d11..7c4cf33 100644 --- a/Energy_Pie/module.html +++ b/Energy_Pie/module.html @@ -152,6 +152,7 @@ function render(data){ Produktion: ${v.Produktion?.toFixed(2) || 0} kWh Verbrauch: ${v.Hausverbrauch?.toFixed(2) || 0} kWh Netzbezug: ${v.Netz?.toFixed(2) || 0} kWh + Einspeisung: ${feed.toFixed(2)} kWh `; const donut = (t, p, c) => { @@ -193,6 +194,7 @@ function render(data){ const prod = v.Produktion || 0; const cons = v.Hausverbrauch || 0; const grid = v.Netz || 0; + const feed = v.Einspeisung || 0; const eigen = Math.max(cons - grid, 0); elGrid.innerHTML =