Browse Source

fixed flashing baffle indicators when valves open 100%

Thomas Thümmler 8 months ago
parent
commit
9867408fea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      SDS_status_main.php

+ 1 - 1
SDS_status_main.php

@@ -164,7 +164,7 @@ if ((substr($ip, 0, 13) == "141.52.12.158") | (substr($ip, 0, 13) == "141.52.12.
 			else
 			{
 				$value = $adeiValue[15][$id + 3];
-				if ($value > 0.1 && $value < 100.0) $pic = "iceOn.png";
+				if ($value > 0.1 && $value <= 100.0) $pic = "iceOn.png";
 				else $pic = "iceBlink.gif";
 			}
 		}