From 14bd06d7ab099b4b709a03c2f746fa9e1acdb750 Mon Sep 17 00:00:00 2001 From: Marc Hoppe Date: Mon, 19 Sep 2016 08:43:17 +0200 Subject: [PATCH] 99_MyUtils: Hysterese auch fuer Aussentemperatur --- fhem/FHEM/99_MyUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/FHEM/99_MyUtils.pm b/fhem/FHEM/99_MyUtils.pm index 924e26cd4..2c4759137 100644 --- a/fhem/FHEM/99_MyUtils.pm +++ b/fhem/FHEM/99_MyUtils.pm @@ -358,7 +358,7 @@ sub RollCheck() { # Sonne scheint ins Fenster ? if($twil>=5 && $twil<7) { # nur, wenn der Sonnenstand ueber 'weather' liegt # bei hoher Raum- und Aussentemperatur immer unten lassen - if($temp > ($tempSchalt+$tempHighOffset) && $tempOut > $tempSoll) { + if($temp > ($tempSchalt+$tempHighOffset) && $tempOut > $tempSoll+$tempHighOffset) { $sonne=1; $tempHyst=$tempHystOffset; }