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/500.Equipment/400.Module/000.Vision/Vision_Define.cs | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/SHARP_CLAS_UI/500.Equipment/400.Module/000.Vision/Vision_Define.cs b/SHARP_CLAS_UI/500.Equipment/400.Module/000.Vision/Vision_Define.cs index 17964fb..413fba8 100644 --- a/SHARP_CLAS_UI/500.Equipment/400.Module/000.Vision/Vision_Define.cs +++ b/SHARP_CLAS_UI/500.Equipment/400.Module/000.Vision/Vision_Define.cs @@ -163,6 +163,28 @@ } } + public struct WidthMeasurementResultAck + { + public int msg_Index { get; private set; } + public int moduleIdx { get; private set; } + public int measurement_result { get; private set; } + public double Mark1Width { get; private set; } + public double Mark2Width { get; private set; } + public double Mark3Width { get; private set; } + public double Mark4Width { get; private set; } + + public WidthMeasurementResultAck(int msg_Index = 0, int moduleIdx = 0, int measurement_result = 0, double mark1Width = 0, double mark2Width = 0, double mark3Width = 0, double mark4Width = 0) + { + this.msg_Index = msg_Index; + this.moduleIdx = moduleIdx; + this.measurement_result = measurement_result; + this.Mark1Width = mark1Width; + this.Mark2Width = mark2Width; + this.Mark3Width = mark3Width; + this.Mark4Width = mark4Width; + } + } + public struct MotorPosMoveReq { public int msg_Index{ get; private set; } -- Gitblit v1.9.3