From 223a44795188ca5f2b5dc2495a6899968611ea37 Mon Sep 17 00:00:00 2001 From: "belevo\\mh" Date: Fri, 26 Jun 2026 13:13:40 +0200 Subject: [PATCH] no message --- MQTTPVSDL/form.json | 3 +-- MQTTPVSDL/module.php | 4 +--- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/MQTTPVSDL/form.json b/MQTTPVSDL/form.json index c2ba9b7..c7ba9b9 100644 --- a/MQTTPVSDL/form.json +++ b/MQTTPVSDL/form.json @@ -19,8 +19,7 @@ "type": "NumberSpinner", "name": "MaxPowerSetpoint", "caption": "Max. Power Setpoint", - "minimum": 0, - "maximum": 100000 + "minimum": 0 } ], "actions": [ diff --git a/MQTTPVSDL/module.php b/MQTTPVSDL/module.php index e40c9b8..df50879 100644 --- a/MQTTPVSDL/module.php +++ b/MQTTPVSDL/module.php @@ -23,8 +23,6 @@ class MQTTPVSDL extends IPSModule $this->RegisterVariableBoolean('IsReady', 'Is Ready', '', 10); $this->RegisterVariableBoolean('IsRunning', 'Is Running', '', 20); - $this->RegisterVariableFloat('MinSoC', 'Min SoC', '', 30); - $this->RegisterVariableFloat('MaxSoC', 'Max SoC', '', 40); $this->RegisterVariableInteger('PowerSetpoint', 'Power Setpoint', '', 50); $this->EnableAction('PowerSetpoint'); @@ -104,7 +102,7 @@ class MQTTPVSDL extends IPSModule public function RunBatteryControl() { $reqActionID = $this->ReadPropertyInteger('ReqActionID'); - + $max = $this->ReadPropertyInteger('MaxPowerSetpoint'); $powerProductionID = $this->ReadPropertyInteger('PowerProductionID');