properties und variabeln gelöscht
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user