using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HBLDevice.ICChip { /// /// 命令 /// public enum IC_CMD:byte { /// /// 心跳 /// HEART_BEAT=0x00, /// /// 下杯(带上碗参数) /// TAKE_CUP=0x01, /// /// 打开舵机(带上舵机参数) /// OPEN_SE=0x02, /// /// 关闭舵机(带上舵机参数) /// CLOSE_SE = 0x03, /// /// 使能冰淇淋转子(带上开关参数) /// ROTOR=0x04, } }