using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.Model.单片机.Enum
{
///
/// 冰淇淋舵机
///
public enum IC_SE:byte
{
///
/// 舵机1
///
SE_1=0x01,
///
/// 舵机2
///
SE_2=0x02,
///
/// 舵机3
///
SE_3=0x03,
}
}