From 154cfce360a831d18f3f21b4e1101b4e13440b74 Mon Sep 17 00:00:00 2001 From: 천호석 <hosuk1418@naver.com> Date: 화, 11 10월 2022 13:19:52 +0900 Subject: [PATCH] 검사 개조, Measurement 후 Width 검사 추가. Recipe 위치 좌표 추가, 검사 Parameter 추가. --- SHARP_CLAS_UI/100.Screen/Form_Main.cs | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/SHARP_CLAS_UI/100.Screen/Form_Main.cs b/SHARP_CLAS_UI/100.Screen/Form_Main.cs index 99c8b9a..b9854f8 100644 --- a/SHARP_CLAS_UI/100.Screen/Form_Main.cs +++ b/SHARP_CLAS_UI/100.Screen/Form_Main.cs @@ -22,7 +22,8 @@ public int ULD_Tray_Empty_Count; public int ULD_Tray_Ok_Count; public int ULD_Tray_Ng_Count; - + public int Width_Measurement_Count; + bool update_check; #endregion @@ -438,6 +439,8 @@ ULD_Tray_Ok_Count = int.Parse($"{value}"); if (_Parent.sm.Get_Value(Process_Memory_Address.ULD_Tray_Ng_Count, out value)) ULD_Tray_Ng_Count = int.Parse($"{value}"); + if (_Parent.sm.Get_Value(Process_Memory_Address.Width_Measurement_Count, out value)) + Width_Measurement_Count = int.Parse($"{value}"); } catch (Exception) { -- Gitblit v1.9.3