no message

This commit is contained in:
belevo\mh
2025-09-25 13:54:39 +02:00
parent 55ac2a352c
commit 33b0cfd0bf

View File

@@ -58,10 +58,10 @@ class Puffer extends IPSModule
$minVT = $this->ReadPropertyInteger("MinVT_Temp"); // z.B. 20
$maxVT = $this->ReadPropertyInteger("MaxVT_Temp"); // z.B. 80
$maxAT = $this->ReadPropertyInteger("MaxAT_Temp"); // z.B. 0
$minAT = $this->ReadPropertyInteger("MinAT_Temp"); // z.B. 20
$maxAT = $this->ReadPropertyInteger("MaxAT_Temp"); // z.B. 20
$minAT = $this->ReadPropertyInteger("MinAT_Temp"); // z.B. 0
$m = ($minVT - $maxVT) / ($maxAT - $minAT);
$m = ($maxVT - $minVT) / ($minAT - $maxAT);
$this->SetValue("Steigung", $m);