From b1d8dbeeaf006046739f94402a0c99f94edf8a71 Mon Sep 17 00:00:00 2001 From: "belevo\\mh" Date: Thu, 18 Dec 2025 13:41:00 +0100 Subject: [PATCH] no message --- Energy_Pie/module.html | 2 ++ 1 file changed, 2 insertions(+) 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 =