C3204
2026-01-16 76d74124f6011a25ee1cdbc322ab22e2c36d7beb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using 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();
        }
    }
}