no message

This commit is contained in:
belevo\mh
2025-09-25 13:36:26 +02:00
parent 95ae759cbf
commit 2f3e5728bc

View File

@@ -61,7 +61,7 @@ class Puffer extends IPSModule
$maxAT = $this->ReadPropertyInteger("MaxAT_Temp"); // z.B. 0
$minAT = $this->ReadPropertyInteger("MinAT_Temp"); // z.B. 20
$m = ($minVT - $maxVT) / ($minAT - $maxAT);
$m = ($maxVT - $minVT) / ($minAT - $maxAT);
$this->SetValue("Steigung", $m);
@@ -177,13 +177,6 @@ class Puffer extends IPSModule
$VT = $m * $at + $maxVT;
}
$this->SetValue("Maximaltemperatur", $VT );
IPS_LogMessage("Puffer", "VT: ".$VT);
IPS_LogMessage("Puffer", "at: ".$at);
IPS_LogMessage("Puffer", "Property Aussentemp: " . $this->ReadPropertyInteger("Aussentemp"));
IPS_LogMessage("Puffer", "Variable Aussentemperatur: " . $this->GetValue("Aussentemperatur"));
IPS_LogMessage("Puffer", "Puffer Leistung : " . $this->ReadPropertyInteger("Heizkontakt_Puffer"));
$boilerTemp = $this->GetValue("Boilertemperatur");
$pufferLeistung = $this->ReadPropertyInteger("PufferLeistung");