From 76d74124f6011a25ee1cdbc322ab22e2c36d7beb Mon Sep 17 00:00:00 2001
From: C3204 <zhengyabo@lanpucloud.cn>
Date: 星期五, 16 一月 2026 12:23:27 +0800
Subject: [PATCH] 添加运动控制菜单底层逻辑
---
LB_VisionProcesses/MotionControl/BaseMotionControl.cs | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
diff --git a/LB_VisionProcesses/MotionControl/BaseMotionControl.cs b/LB_VisionProcesses/MotionControl/BaseMotionControl.cs
new file mode 100644
index 0000000..90ea277
--- /dev/null
+++ b/LB_VisionProcesses/MotionControl/BaseMotionControl.cs
@@ -0,0 +1,49 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace LB_VisionProcesses.MotionControl
+{
+ public class BaseMotionControl : IMotionControl
+ {
+ /// <summary>
+ /// 杩愬姩鎺у埗鍚嶇О
+ /// </summary>
+ public string MotionControlName { get; set; } = string.Empty;
+ /// <summary>
+ /// 鏄惁杩炴帴
+ /// </summary>
+ public bool bConnected = true;
+ public bool Connect()
+ {
+ throw new NotImplementedException();
+ }
+
+ public bool Disconnect()
+ {
+ throw new NotImplementedException();
+ }
+
+ public void Dispose()
+ {
+ throw new NotImplementedException();
+ }
+
+ public string ReceiveMsg()
+ {
+ throw new NotImplementedException();
+ }
+
+ public void SendHeartbeat()
+ {
+ throw new NotImplementedException();
+ }
+
+ public bool SendMessage(string message)
+ {
+ throw new NotImplementedException();
+ }
+ }
+}
--
Gitblit v1.9.3