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