From e81e880bcc9d6fdd9f149fe5377e8df3ad37066a Mon Sep 17 00:00:00 2001 From: "belevo\\mh" Date: Thu, 2 Oct 2025 13:08:25 +0200 Subject: [PATCH] no message --- Puffer_Speicher/form.json | 25 ------------------------- Puffer_Speicher/module.php | 7 +------ 2 files changed, 1 insertion(+), 31 deletions(-) diff --git a/Puffer_Speicher/form.json b/Puffer_Speicher/form.json index dada427..7d82c69 100644 --- a/Puffer_Speicher/form.json +++ b/Puffer_Speicher/form.json @@ -39,18 +39,6 @@ "suffix": "" }, { - "type": "NumberSpinner", - "name": "PufferLeistung", - "caption": "Puffer Volllast", - "suffix": "Watt" - }, - { - "type": "NumberSpinner", - "name": "PufferTeilLeistung", - "caption": "Puffer Teillast", - "suffix": "Watt" - }, - { "type":"List", "name":"LeistungsStufen", "caption":"Anzahl Stufen mit den dazugehörigen Leistungen", @@ -87,7 +75,6 @@ ] }, - { "type": "Label", "caption": "Endpunkte der Pufferfunktion bestimmen: VT = f(AT)" @@ -122,18 +109,6 @@ "caption": "Variable für Pufferfühler PT1", "test": true }, - { - "type": "SelectVariable", - "name": "Heizkontakt1_Puffer", - "caption": "Heizkontakt Puffer 1.Stufe", - "test": true - }, - { - "type": "SelectVariable", - "name": "Heizkontakt2_Puffer", - "caption": "Heizkontakt Puffer 2.Stufe", - "test": true - }, { "type": "SelectVariable", "name": "Aussentemp", diff --git a/Puffer_Speicher/module.php b/Puffer_Speicher/module.php index 9bdad80..0dd7376 100644 --- a/Puffer_Speicher/module.php +++ b/Puffer_Speicher/module.php @@ -8,13 +8,10 @@ class Puffer_Speicher extends IPSModule { parent::Create(); - $this->RegisterPropertyInteger("PufferLeistung", 6000); - $this->RegisterPropertyInteger("PufferTeilLeistung", 3000); + $this->RegisterPropertyString("LeistungsStufen", json_encode([])); // Bezeichnung der Liste $this->RegisterPropertyInteger("ZeitKonstante", 120); $this->RegisterPropertyInteger("Pufferfuehler_PT1", 0); - $this->RegisterPropertyInteger("Heizkontakt2_Puffer", 0); - $this->RegisterPropertyInteger("Heizkontakt1_Puffer", 0); $this->RegisterPropertyInteger("Aussentemp", 20); $this->RegisterPropertyInteger("MinVT_Temp", 20); $this->RegisterPropertyInteger("MaxVT_Temp", 80); @@ -240,8 +237,6 @@ class Puffer_Speicher extends IPSModule } $this->SetValue("Maximaltemperatur", $VT ); $boilerTemp = $this->GetValue("Puffertemperatur"); - $pufferLeistung = $this->ReadPropertyInteger("PufferLeistung"); - $pufferTeilLeistung = $this->ReadPropertyInteger("PufferTeilLeistung"); $hyst = $this->GetValue("Hysterese"); if($VT < $boilerTemp){