diff --git a/Bat_EV_SDL_V4/module.php b/Bat_EV_SDL_V4/module.php index 5e5c968..aec0b06 100644 --- a/Bat_EV_SDL_V4/module.php +++ b/Bat_EV_SDL_V4/module.php @@ -542,13 +542,9 @@ class Bat_EV_SDL_V4 extends IPSModule $rawEV = $pEvW * $factor; $rawSDL = $pSdlW * $factor; } else { - if (abs($totalPowerIst) < 50.0) { - $rawEV = $pEvW; - $rawSDL = $pSdlW; - } else { - $rawEV = $pEvW; - $rawSDL = $totalPowerIst - $rawEV; - } + // KEIN Sprung mehr auf Soll! + $rawEV = 0.0; + $rawSDL = 0.0; } $filterAktiv = $this->ReadPropertyBoolean("FilterAktiv");