From 734fa0d3bba4a31d89d29f6298ee140427506747 Mon Sep 17 00:00:00 2001 From: oskarfessel <> Date: Sun, 29 Apr 2012 20:22:45 +0000 Subject: [PATCH] =?UTF-8?q?Vergleichen=20Sie=20bitte=20nicht=20=C3=84pfel?= =?UTF-8?q?=20mit=20Birnen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.fhem.de/fhem/trunk@1507 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/contrib/23_LUXTRONIK2.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fhem/contrib/23_LUXTRONIK2.pm b/fhem/contrib/23_LUXTRONIK2.pm index 7a05ed3c4..14c102219 100644 --- a/fhem/contrib/23_LUXTRONIK2.pm +++ b/fhem/contrib/23_LUXTRONIK2.pm @@ -215,7 +215,7 @@ LUXTRONIK2_GetStatus($) $value = $wpOpStat1{$switch}; $value = "unbekannt (".$switch.")" unless $value; - if($hash->{READINGS}{$sensor}{VAL} != $value) { + if($hash->{READINGS}{$sensor}{VAL} ne $value) { $hash->{READINGS}{$sensor}{TIME} = TimeNow(); $hash->{READINGS}{$sensor}{VAL} = $value; $hash->{CHANGED}[$cc++] = $sensor.": ".$value; @@ -235,7 +235,7 @@ LUXTRONIK2_GetStatus($) } $value = "unbekannt (".$switch.")" unless $value; - if($hash->{READINGS}{$sensor}{VAL} != $value) { + if($hash->{READINGS}{$sensor}{VAL} ne $value) { $hash->{READINGS}{$sensor}{TIME} = TimeNow(); $hash->{READINGS}{$sensor}{VAL} = $value; $hash->{CHANGED}[$cc++] = $sensor.": ".$value; @@ -253,7 +253,7 @@ LUXTRONIK2_GetStatus($) $value = $wpMode{$switch}; $value = "unbekannt (".$switch.")" unless $value; - if($hash->{READINGS}{$sensor}{VAL} != $value) { + if($hash->{READINGS}{$sensor}{VAL} ne $value) { $hash->{READINGS}{$sensor}{TIME} = TimeNow(); $hash->{READINGS}{$sensor}{VAL} = $value; $hash->{CHANGED}[$cc++] = $sensor.": ".$value; @@ -265,7 +265,7 @@ LUXTRONIK2_GetStatus($) $value = $wpMode{$switch}; $value = "unbekannt (" . $switch . ")" unless $value; - if($hash->{READINGS}{$sensor}{VAL} != $value) { + if($hash->{READINGS}{$sensor}{VAL} ne $value) { $hash->{READINGS}{$sensor}{TIME} = TimeNow(); $hash->{READINGS}{$sensor}{VAL} = $value; $hash->{CHANGED}[$cc++] = $sensor.": ".$value;