using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.MessageCommunication
{
///
/// 消息名称管理
///
public class Class_MessageName
{
#region 咖博士咖啡机消息名称
///
/// 咖博士咖啡机制作
///
public static string DRCoffee_MakeCoffee = "DRCoffee_MakeCoffee";
///
/// 咖博士咖啡机取消制作咖啡
///
public static string DRCoffee_CancelMakeCoffee = "DRCoffee_CancelMakeCoffee";
///
/// 咖博士咖啡机模式设置
///
public static string DRCoffee_CoffeeCommCmd = "DRCoffee_CoffeeCommCmd";
///
/// 咖博士咖啡机结束制作
///
public static string DRCoffee_CoffeEndCook = "DRCoffee_CoffeEndCook";
#endregion
#region 广深冰淇淋消息名称
///
/// 广深冰淇淋机模式设置
///
public static string GSIceCream_ModeSet = "DRCoffee_CoffeEndCook";
///
/// 广深冰淇淋机打料
///
public static string GSIceCream_Discharge = "GSIceCream_Discharge";
///
/// 广深冰淇淋机结束制作
///
public static string GSIceCream_EndCook = "GSIceCream_EndCook";
#endregion
#region STM32F103RCT6单片机消息名称
///
/// STM32F103RCT6单片机下杯
///
public static string SCChip_TakeCup = "SCChip_TakeCup";
///
/// STM32F103RCT6单片机舵机打料
///
public static string SCChip_MakeIceCream = "SCChip_MakeIceCream";
///
/// STM32F103RCT6单片机舵机打开或者关闭
///
public static string SCChip_SESwitchCream = "SCChip_SESwitchCream";
///
/// STM32F103RCT6单片机控制冰淇淋机器转
///
public static string SCChip_RotorSwitch = "SCChip_RotorSwitch";
#endregion
#region 伽乐美咖啡机消息名称
///
/// 伽乐美咖啡机制作
///
public static string KLMCoffee_MakeCoffee = "KLMCoffee_MakeCoffee";
///
/// 伽乐美咖啡机取消制作咖啡
///
public static string KLMCoffee_CancelMakeCoffee = "KLMCoffee_CancelMakeCoffee";
///
/// 伽乐美咖啡机模式设置
///
public static string KLMCoffee_CoffeeCommCmd = "KLMCoffee_CoffeeCommCmd";
///
/// 伽乐美咖啡机结束制作
///
public static string KLMCoffee_CoffeEndCook = "KLMCoffee_CoffeEndCook";
#endregion
}
}