终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

44 lines
1.3 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.Model.咖啡机.Enum
  7. {
  8. /// <summary>
  9. /// 通信指令
  10. /// </summary>
  11. public enum DrCoffeeCommCmd :byte
  12. {
  13. 无指令 = 0x00,
  14. 饮品制作指令 = 0x01,
  15. 冲煮系统快速冲洗指令 = 0x02,
  16. 牛奶系统快速冲洗指令 = 0x03,
  17. 粉料系统快速冲洗指令 = 0x04,
  18. 冲煮系统清洁指令 = 0x05,
  19. 冲煮系统清洗指令 = 0x06,
  20. 牛奶系统清洗指令 = 0x07,
  21. 除垢指令 = 0x08,
  22. 清空系统指令 = 0x09,
  23. 系统补水指令 = 0x0A,
  24. 冲泡器复位指令 = 0x0B,
  25. 分相阀复位指令 = 0x0C,
  26. 研磨效验指令 = 0x0D,
  27. 粉料效验指令 = 0x0E,
  28. 握手指令 = 0x0F,
  29. 询问状态指令 = 0x10,
  30. 取消应用指令 = 0x11,
  31. 设置参数指令 = 0x12,
  32. 更新程序指令 = 0x13,
  33. 功能测试指令 = 0x14,
  34. 开机指令 = 0x15,
  35. 关机指令 = 0x16,
  36. 一键清洗指令 = 0x17,
  37. 蒸汽杆快速冲洗指令 = 0x18,
  38. 蒸汽制作指令 = 0x19,
  39. 滤芯快速冲洗指令 = 0x1A,
  40. 牛奶系统强制冲洗指令 = 0x1B,
  41. }
  42. }