Zugriffe waren falsch

This commit is contained in:
2024-11-11 08:38:06 +01:00
parent a0354536a1
commit 8d0c09ada3
2 changed files with 8 additions and 8 deletions

View File

@@ -72,7 +72,7 @@ class WP_Steuerung extends IPSModule {
$sperrzei_abs = 6*60*60;
}
if(GetValue($this->ReadPropertyInteger("Wolkenschwellwert"))<GetValue($this->ReadPropertyInteger("Wolkenwert")) || $sperrzei_abs < 0 ){
if($this->ReadPropertyInteger("Wolkenschwellwert")<GetValue($this->ReadPropertyInteger("Wolkenwert")) || $sperrzei_abs < 0 ){
$sperrzei_abs = 0;
}
@@ -103,7 +103,7 @@ class WP_Steuerung extends IPSModule {
}elseif($state == 1) // Normalbetrieb
{
if($LastPeak && $power == GetValue($this->ReadPropertyInteger("WP_Leistung"))) {
if($LastPeak && $power == ($this->ReadPropertyInteger("WP_Leistung"))) {
$this->SetValue("Zustand_WP", 1);
if($its_lock_time){
$this->SetValue("Zustand_WP", 2);
@@ -112,7 +112,7 @@ class WP_Steuerung extends IPSModule {
$this->SetValue("Zustand_WP", 2);
}
elseif($LastPeak == false && $power == GetValue($this->ReadPropertyInteger("WP_Leistung"))){
elseif($LastPeak == false && $power == ($this->ReadPropertyInteger("WP_Leistung"))){
$this->SetValue("Zustand_WP", 3);
}
@@ -126,7 +126,7 @@ class WP_Steuerung extends IPSModule {
}elseif($state == 2) // Sperre
{
if($LastPeak && $power == GetValue($this->ReadPropertyInteger("WP_Leistung"))) {
if($LastPeak && $power == ($this->ReadPropertyInteger("WP_Leistung"))) {
$this->SetValue("Zustand_WP", 1);
if($its_lock_time){
$this->SetValue("Zustand_WP", 2);
@@ -135,7 +135,7 @@ class WP_Steuerung extends IPSModule {
$this->SetValue("Zustand_WP", 2);
}
elseif($LastPeak == false && $power == GetValue($this->ReadPropertyInteger("WP_Leistung"))){
elseif($LastPeak == false && $power == ($this->ReadPropertyInteger("WP_Leistung"))){
$this->SetValue("Zustand_WP", 3);
}
@@ -149,13 +149,13 @@ class WP_Steuerung extends IPSModule {
}elseif($state == 3) // Erhöht
{
if($LastPeak && $power == GetValue($this->ReadPropertyInteger("WP_Leistung"))) {
if($LastPeak && $power == ($this->ReadPropertyInteger("WP_Leistung"))) {
$this->SetValue("Zustand_WP", 1);
} elseif($LastPeak && $power == 0){
$this->SetValue("Zustand_WP", 2);
}
elseif($LastPeak == false && $power == GetValue($this->ReadPropertyInteger("WP_Leistung"))){
elseif($LastPeak == false && $power == ($this->ReadPropertyInteger("WP_Leistung"))){
$this->SetValue("Zustand_WP", 3);
}