领胜LDS 键盘AOI检测项目
wells.liu
2020-06-28 91293cac4b05319e6ed796ce34cb0640311b553b
src/Bro.Device.GTSCard/GTSCardDriver.cs
@@ -1,4 +1,6 @@
using Bro.Common.Base;
using Bro.Common.Interface;
using Bro.Common.Model;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -7,8 +9,11 @@
namespace Bro.Device.GTSCard
{
    public class GTSCardDriver : DeviceBase, IMotion
    public class GTSCardDriver : DeviceBase,IMonitor, IMotion
    {
        public event Action<DateTime, string, IDevice, MonitorSet> OnMonitorInvoke;
        public event Action<DateTime, IDevice, WarningSet> OnMonitorAlarm;
        public List<AxisInfo> GetCurrentAxisInfo(params string[] axisName)
        {
            throw new NotImplementedException();
@@ -199,6 +204,7 @@
        }
        static object lockObj = new object();
        /// <summary>
        /// 读取当前值
@@ -233,5 +239,15 @@
                else return false;              //运行中返回false
            }
        }
        public void Monitor()
        {
            throw new NotImplementedException();
        }
        public void ResetAlarm()
        {
            throw new NotImplementedException();
        }
    }
}