Zugriffe waren falsch
This commit is contained in:
@@ -72,7 +72,7 @@ class WP_Steuerung extends IPSModule {
|
|||||||
$sperrzei_abs = 6*60*60;
|
$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;
|
$sperrzei_abs = 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -103,7 +103,7 @@ class WP_Steuerung extends IPSModule {
|
|||||||
|
|
||||||
}elseif($state == 1) // Normalbetrieb
|
}elseif($state == 1) // Normalbetrieb
|
||||||
{
|
{
|
||||||
if($LastPeak && $power == GetValue($this->ReadPropertyInteger("WP_Leistung"))) {
|
if($LastPeak && $power == ($this->ReadPropertyInteger("WP_Leistung"))) {
|
||||||
$this->SetValue("Zustand_WP", 1);
|
$this->SetValue("Zustand_WP", 1);
|
||||||
if($its_lock_time){
|
if($its_lock_time){
|
||||||
$this->SetValue("Zustand_WP", 2);
|
$this->SetValue("Zustand_WP", 2);
|
||||||
@@ -112,7 +112,7 @@ class WP_Steuerung extends IPSModule {
|
|||||||
$this->SetValue("Zustand_WP", 2);
|
$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);
|
$this->SetValue("Zustand_WP", 3);
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -126,7 +126,7 @@ class WP_Steuerung extends IPSModule {
|
|||||||
|
|
||||||
}elseif($state == 2) // Sperre
|
}elseif($state == 2) // Sperre
|
||||||
{
|
{
|
||||||
if($LastPeak && $power == GetValue($this->ReadPropertyInteger("WP_Leistung"))) {
|
if($LastPeak && $power == ($this->ReadPropertyInteger("WP_Leistung"))) {
|
||||||
$this->SetValue("Zustand_WP", 1);
|
$this->SetValue("Zustand_WP", 1);
|
||||||
if($its_lock_time){
|
if($its_lock_time){
|
||||||
$this->SetValue("Zustand_WP", 2);
|
$this->SetValue("Zustand_WP", 2);
|
||||||
@@ -135,7 +135,7 @@ class WP_Steuerung extends IPSModule {
|
|||||||
$this->SetValue("Zustand_WP", 2);
|
$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);
|
$this->SetValue("Zustand_WP", 3);
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -149,13 +149,13 @@ class WP_Steuerung extends IPSModule {
|
|||||||
|
|
||||||
}elseif($state == 3) // Erhöht
|
}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);
|
$this->SetValue("Zustand_WP", 1);
|
||||||
} elseif($LastPeak && $power == 0){
|
} elseif($LastPeak && $power == 0){
|
||||||
$this->SetValue("Zustand_WP", 2);
|
$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);
|
$this->SetValue("Zustand_WP", 3);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
"compatibility": {
|
"compatibility": {
|
||||||
"version": "7.1"
|
"version": "7.1"
|
||||||
},
|
},
|
||||||
"version": "0.112",
|
"version": "0.113",
|
||||||
"build": 0,
|
"build": 0,
|
||||||
"date": 0
|
"date": 0
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user