using SKMC.Api.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SKMC.Api.Device.Machine { /// /// 机台设备按钮控制接口 /// public interface IMachineButtonControl { /// /// 所有按钮开始监测 /// void Start(); /// /// 所有按钮停止监测 /// void Stop(); /// /// 所有按钮状态重置 /// void Reset(); } }