终端一体化运控平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

87 行
3.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.MessageCommunication
  7. {
  8. /// <summary>
  9. /// 消息名称管理
  10. /// </summary>
  11. public class Class_MessageName
  12. {
  13. #region 咖博士咖啡机消息名称
  14. /// <summary>
  15. /// 咖博士咖啡机制作
  16. /// </summary>
  17. public static string DRCoffee_MakeCoffee = "DRCoffee_MakeCoffee";
  18. /// <summary>
  19. /// 咖博士咖啡机取消制作咖啡
  20. /// </summary>
  21. public static string DRCoffee_CancelMakeCoffee = "DRCoffee_CancelMakeCoffee";
  22. /// <summary>
  23. /// 咖博士咖啡机模式设置
  24. /// </summary>
  25. public static string DRCoffee_CoffeeCommCmd = "DRCoffee_CoffeeCommCmd";
  26. /// <summary>
  27. /// 咖博士咖啡机结束制作
  28. /// </summary>
  29. public static string DRCoffee_CoffeEndCook = "DRCoffee_CoffeEndCook";
  30. #endregion
  31. #region 广深冰淇淋消息名称
  32. /// <summary>
  33. /// 广深冰淇淋机模式设置
  34. /// </summary>
  35. public static string GSIceCream_ModeSet = "DRCoffee_CoffeEndCook";
  36. /// <summary>
  37. /// 广深冰淇淋机打料
  38. /// </summary>
  39. public static string GSIceCream_Discharge = "GSIceCream_Discharge";
  40. /// <summary>
  41. /// 广深冰淇淋机结束制作
  42. /// </summary>
  43. public static string GSIceCream_EndCook = "GSIceCream_EndCook";
  44. #endregion
  45. #region STM32F103RCT6单片机消息名称
  46. /// <summary>
  47. /// STM32F103RCT6单片机下杯
  48. /// </summary>
  49. public static string SCChip_TakeCup = "SCChip_TakeCup";
  50. /// <summary>
  51. /// STM32F103RCT6单片机舵机打料
  52. /// </summary>
  53. public static string SCChip_MakeIceCream = "SCChip_MakeIceCream";
  54. /// <summary>
  55. /// STM32F103RCT6单片机舵机打开或者关闭
  56. /// </summary>
  57. public static string SCChip_SESwitchCream = "SCChip_SESwitchCream";
  58. /// <summary>
  59. /// STM32F103RCT6单片机控制冰淇淋机器转
  60. /// </summary>
  61. public static string SCChip_RotorSwitch = "SCChip_RotorSwitch";
  62. #endregion
  63. #region 伽乐美咖啡机消息名称
  64. /// <summary>
  65. /// 伽乐美咖啡机制作
  66. /// </summary>
  67. public static string KLMCoffee_MakeCoffee = "KLMCoffee_MakeCoffee";
  68. /// <summary>
  69. /// 伽乐美咖啡机取消制作咖啡
  70. /// </summary>
  71. public static string KLMCoffee_CancelMakeCoffee = "KLMCoffee_CancelMakeCoffee";
  72. /// <summary>
  73. /// 伽乐美咖啡机模式设置
  74. /// </summary>
  75. public static string KLMCoffee_CoffeeCommCmd = "KLMCoffee_CoffeeCommCmd";
  76. /// <summary>
  77. /// 伽乐美咖啡机结束制作
  78. /// </summary>
  79. public static string KLMCoffee_CoffeEndCook = "KLMCoffee_CoffeEndCook";
  80. #endregion
  81. }
  82. }