no message

This commit is contained in:
belevo\mh
2026-04-17 12:02:22 +02:00
parent b8bf4b0028
commit 80890e4e12
+2 -2
View File
@@ -663,8 +663,8 @@ private function CalculateBatteryDistribution(float $pEvW, float $pSdlW): array
// aktuelle - EV_SOLL = aktuelle SDL
// aktuelle - SDL_SOLL = aktuelle EV
// ----------------------------
$this->SetValue("Aktuelle_Leistung_SDL", $totalPower_ist - $pEvW);
$this->SetValue("Aktuelle_Leistung_EV", $pEvW);
$this->SetValue("Aktuelle_Leistung_SDL", $pSdlW);
$this->SetValue("Aktuelle_Leistung_EV", $totalPower_ist - $pSdlW);
return $finalOutput;
}