终端一体化运控平台
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

78 řádky
2.0 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.MorkMW
  7. {
  8. public class GVL_MorkMW
  9. {
  10. #region 机器人信号
  11. /// <summary>
  12. /// 机器人空闲信号
  13. /// </summary>
  14. public bool RobotIdle { get; set; }
  15. public bool TakeWinkOneComplete { get; set; }
  16. public bool TakeWinkTwoComplete { get; set; }
  17. public bool TakeWinkThreeComplete { get; set; }
  18. public bool TakeWinkFourComplete { get; set; }
  19. public bool TakeWinkFiveComplete { get; set; }
  20. public bool TakeWinkSixComplete { get; set; }
  21. public bool ArriveWinkOneLoc { get; set; }
  22. public bool ArriveWinkTwoLoc { get; set; }
  23. public bool ArriveWinkThreeLoc { get; set; }
  24. public bool ArriveWinkFourLoc { get; set; }
  25. public bool ArriveWinkFiveLoc { get; set; }
  26. public bool ArriveWinkSixLoc { get; set; }
  27. /// <summary>
  28. /// 放杯处传感器信号
  29. /// </summary>
  30. public bool CupSignal { get; set; }
  31. /// <summary>
  32. /// 摇酒完成信号
  33. /// </summary>
  34. public bool MixWinkComplte { get; set; }
  35. /// <summary>
  36. /// 机器人倒完酒并回到初始位的完成信号
  37. /// </summary>
  38. public bool ProcessComplete { get; set; }
  39. #endregion
  40. #region 流程控制
  41. /// <summary>
  42. /// 任务锁
  43. /// </summary>
  44. public bool TaskLock { get; set; }
  45. /// <summary>
  46. /// 接酒完成
  47. /// </summary>
  48. public bool AllowMixWink { get; set; }
  49. /// <summary>
  50. /// 调酒完成
  51. /// </summary>
  52. public bool AllowPourWink { get; set; }
  53. /// <summary>
  54. /// 倒酒结束标志
  55. /// </summary>
  56. public bool PourWinkComplete { get; set; }
  57. #endregion
  58. public static bool AllowLocalSimOrder { get; set; }
  59. }
  60. }