From 8dc91291c102957e7bdc1f828a4239daf3a4f975 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Mon, 3 May 2021 16:25:00 +0100 Subject: [PATCH] update threshold for detecting a weld for factory1. --- src/EyesAndEars.UWP/EyesAndEars.UWP/Services/DataServices.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EyesAndEars.UWP/EyesAndEars.UWP/Services/DataServices.cs b/src/EyesAndEars.UWP/EyesAndEars.UWP/Services/DataServices.cs index 619f2ba..dc17834 100644 --- a/src/EyesAndEars.UWP/EyesAndEars.UWP/Services/DataServices.cs +++ b/src/EyesAndEars.UWP/EyesAndEars.UWP/Services/DataServices.cs @@ -97,7 +97,7 @@ namespace EyesAndEars.UWP.Services { */ if (device == 1) { - if (reading > 0 && reading <= 38) // No weld detected. + if (reading > 0 && reading <= 39) // No weld detected. return new SolidColorBrush(Colors.LightSeaGreen); if (reading > 38) // Weld detected. return new SolidColorBrush(Colors.DarkSeaGreen);