using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LB_VisionProcesses.MotionControl
{
public class BaseMotionControl : IMotionControl
{
///
/// 运动控制名称
///
public string MotionControlName { get; set; } = string.Empty;
///
/// 是否连接
///
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();
}
}
}