diff --git a/WP_Steuerung/module.php b/WP_Steuerung/module.php index 8fc1c66..c8a834e 100644 --- a/WP_Steuerung/module.php +++ b/WP_Steuerung/module.php @@ -103,7 +103,7 @@ class WP_Steuerung extends IPSModule { }elseif($state == 1) // Normalbetrieb { - if($LastPeak && $power == $this->GetValue("WP_Leistung")) { + if($LastPeak && $power == GetValue($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 == $this->GetValue("WP_Leistung")){ + elseif($LastPeak == false && $power == GetValue($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 == $this->GetValue("WP_Leistung")) { + if($LastPeak && $power == GetValue($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 == $this->GetValue("WP_Leistung")){ + elseif($LastPeak == false && $power == GetValue($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 == $this->GetValue("WP_Leistung")) { + if($LastPeak && $power == GetValue($this->ReadPropertyInteger("WP_Leistung"))) { $this->SetValue("Zustand_WP", 1); } elseif($LastPeak && $power == 0){ $this->SetValue("Zustand_WP", 2); } - elseif($LastPeak == false && $power == $this->GetValue("WP_Leistung")){ + elseif($LastPeak == false && $power == GetValue($this->ReadPropertyInteger("WP_Leistung"))){ $this->SetValue("Zustand_WP", 3); } diff --git a/library.json b/library.json index 73a92cb..09e0ffb 100644 --- a/library.json +++ b/library.json @@ -6,7 +6,7 @@ "compatibility": { "version": "7.1" }, - "version": "0.109", + "version": "0.110", "build": 0, "date": 0 } \ No newline at end of file