This commit is contained in:
mh
2025-01-20 16:46:44 +01:00
parent 7437154164
commit 14700176f6
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -114,7 +114,7 @@ class Boiler_2_Stufig_Mit_Fueler extends IPSModule
if ($boilertemperatur_glätten) {
$boilerFuehlerPT1ID = $this->ReadPropertyInteger("Boilerfuehler_PT1");
$boilerPT1 = GetValue($boilerFuehlerPT1ID);
$boilerPT1 = $this->GetValue($boilerFuehlerPT1ID);
$boilerTemp = $this->GetValue("Boilertemperatur");
$time_constant= $this->ReadPropertyInteger("ZeitKonstante");
$delta_t = 30;
@@ -125,7 +125,7 @@ class Boiler_2_Stufig_Mit_Fueler extends IPSModule
} else {
$boilerFuehlerPT1ID = $this->ReadPropertyInteger("Boilerfuehler_PT1");
$boilerPT1 = GetValue($boilerFuehlerPT1ID);
$boilerPT1 = $this->GetValue($boilerFuehlerPT1ID);
IPS_LogMessage("Boiler", "Keine Glättung, Boilertemperatur:$boilerPT1");
$this->SetValue("Boilertemperatur", $boilerPT1);
}