IMachineButtonControl.cs 627 B

12345678910111213141516171819202122232425262728293031
  1. using SKMC.Api.Common;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SKMC.Api.Machine.Control
  8. {
  9. /// <summary>
  10. /// 机台设备按钮控制接口
  11. /// </summary>
  12. public interface IMachineButtonControl
  13. {
  14. /// <summary>
  15. /// 所有按钮开始监测
  16. /// </summary>
  17. void Start();
  18. /// <summary>
  19. /// 所有按钮停止监测
  20. /// </summary>
  21. void Stop();
  22. /// <summary>
  23. /// 所有按钮状态重置
  24. /// </summary>
  25. void Reset();
  26. }
  27. }