From 116ed6b584bbdb40c5b65e7cb57e039b6ae57800 Mon Sep 17 00:00:00 2001
From: C3032 <C3032@BC3032>
Date: 星期四, 08 一月 2026 11:12:25 +0800
Subject: [PATCH] 优化相机配置和图像获取逻辑
---
LB_VisionProcesses/Communicators/MES/LBMES.cs | 16 +++++++++++++++-
1 files changed, 15 insertions(+), 1 deletions(-)
diff --git a/LB_VisionProcesses/Communicators/MES/LBMES.cs b/LB_VisionProcesses/Communicators/MES/LBMES.cs
index 87d0086..597c605 100644
--- a/LB_VisionProcesses/Communicators/MES/LBMES.cs
+++ b/LB_VisionProcesses/Communicators/MES/LBMES.cs
@@ -6,7 +6,21 @@
namespace LB_VisionProcesses.Communicators.MES
{
- internal class LBMES
+ internal class LBMES : BaseCommunicator
{
+ public override bool Connect()
+ {
+ throw new NotImplementedException();
+ }
+
+ public override bool Disconnect()
+ {
+ throw new NotImplementedException();
+ }
+
+ public override bool SendMessage(string message)
+ {
+ throw new NotImplementedException();
+ }
}
}
--
Gitblit v1.9.3