From 062e99935886b76f661c4251cb43960f4c86a330 Mon Sep 17 00:00:00 2001 From: "belevo\\mh" Date: Thu, 25 Sep 2025 10:39:41 +0200 Subject: [PATCH] no message --- Puffer/module.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Puffer/module.php b/Puffer/module.php index d9fc394..e4d9016 100644 --- a/Puffer/module.php +++ b/Puffer/module.php @@ -11,7 +11,7 @@ class Puffer extends IPSModule $this->RegisterPropertyInteger("PufferLeistung", 6000); $this->RegisterPropertyInteger("ZeitKonstante", 120); $this->RegisterPropertyInteger("Boilerfuehler_PT1", 0); - $this->RegisterPropertyInteger("Heizkontakt_Puffer", 0); + $this->RegisterPropertyBool("Heizkontakt_Puffer", false); $this->RegisterPropertyInteger("Aussentemp", 20); $this->RegisterPropertyInteger("MinVT_Temp", 20); $this->RegisterPropertyInteger("MaxVT_Temp", 80); @@ -90,9 +90,9 @@ class Puffer extends IPSModule { // Schalte Kontakt Teillast und Vollast entsprechend der Power-Einstellung if ($power == $this->ReadPropertyInteger("PufferLeistung")) { - SetValue($this->ReadPropertyInteger("Heizkontakt_Puffer"), true); + SetValue($this->ReadPropertyBool("Heizkontakt_Puffer"), true); } else { - SetValue($this->ReadPropertyInteger("Heizkontakt_Puffer"), false); + SetValue($this->ReadPropertyBool("Heizkontakt_Puffer"), false); } // Prüfe auf Änderung der Power im Vergleich zur letzten Einstellung