From 6c56a4bfbe78dedca23297a4627e09908338bd5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=A4fliger?= Date: Mon, 7 Apr 2025 15:21:23 +0200 Subject: [PATCH] =?UTF-8?q?properties=20und=20variabeln=20gel=C3=B6scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Ladestation_v2/form.json | 20 -------------------- Ladestation_v2/module.php | 10 +--------- 2 files changed, 1 insertion(+), 29 deletions(-) diff --git a/Ladestation_v2/form.json b/Ladestation_v2/form.json index 73c4ac3..c7a4c40 100644 --- a/Ladestation_v2/form.json +++ b/Ladestation_v2/form.json @@ -27,26 +27,6 @@ } ] }, - { - "type": "NumberSpinner", - "name": "MinLeistung", - "caption": "Mindestleistung Ladestation" - }, - { - "type": "NumberSpinner", - "name": "MaxLeistung", - "caption": "Maximalleistung Ladestation" - }, - { - "type": "NumberSpinner", - "name": "MinLeistung_1ph", - "caption": "Mindestleistung Ladestation 1-Phasig" - }, - { - "type": "NumberSpinner", - "name": "MaxLeistung_1ph", - "caption": "Maximalleistung Ladestation 1-Phasig" - }, { "type": "NumberSpinner", "name": "IdleCounterMax", diff --git a/Ladestation_v2/module.php b/Ladestation_v2/module.php index bdcf6e9..d6e13a8 100644 --- a/Ladestation_v2/module.php +++ b/Ladestation_v2/module.php @@ -8,10 +8,6 @@ class Ladestation_v2 extends IPSModule parent::Create(); // Ladestationspezifische Properties - $this->RegisterPropertyInteger("MinLeistung", 3600); - $this->RegisterPropertyInteger("MaxLeistung", 11000); - $this->RegisterPropertyInteger("MinLeistung_1ph", 1400); - $this->RegisterPropertyInteger("MaxLeistung_1ph", 7800); $this->RegisterPropertyString("IP_Adresse", "0.0.0.0"); $this->RegisterPropertyInteger("Ladestation", 2); $this->RegisterPropertyString("ID", ""); @@ -27,15 +23,12 @@ class Ladestation_v2 extends IPSModule $this->RegisterVariableBoolean("Car_Detected", false); $this->RegisterPropertyInteger("Pending_Counter", "Pending_Counter", "", 0); $this->RegisterVariableBoolean("Car_is_full", "Car_is_full", "", false); - $this->RegisterVariableBoolean("Ladebereit", "Ladebereit", "~Switch", 1); $this->RegisterVariableBoolean("Solarladen", "Solarladen", "~Switch", 0); $this->RegisterVariableInteger("Fahrzeugstatus", "Fahrzeugstatus", "", 0); - $this->RegisterVariableInteger("Lademodus", "Lademodus", "", 0); $this->RegisterVariableFloat("Ladeleistung_Effektiv", "Ladeleistung_Effektiv", "", 0); $this->RegisterVariableBoolean("Peak", "Peak", "", 0); - $this->RegisterVariableInteger("Ladestrom", "Ladestrom"); - $this->RegisterVariableInteger("Ladeleistung", "Ladeleistung"); + // Variabeln für Kommunkation mit Manager $this->RegisterVariableInteger("Sperre_Prio", "Sperre_Prio"); @@ -47,7 +40,6 @@ class Ladestation_v2 extends IPSModule $this->RegisterVariableInteger("Power", "Power"); $this->RegisterVariableBoolean("Is_Peak_Shaving", "Is_Peak_Shaving"); $this->RegisterVariableInteger("Leistung_Delta", "Leistung_Delta", "", 0); - $this->RegisterVariableInteger("Power_Count", "Power_Count", "", 0); // Hilfsvariabeln für Idle zustand $this->RegisterPropertyInteger("IdleCounterMax", 2);