using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Wit.SDK.Modular.Sensor.Modular.ProtocolResolver.Enum { /// /// 维特智能传感器协议枚举 /// public enum WitSensorProtocol { /// /// 维特协议 /// WitProtocol = 0, /// /// 维特智能Can协议 /// WitCanProtocol = 1, /// /// 维特智能蓝牙5.0协议 /// WitBle5Protocol = 2, /// /// Modbus16协议 /// Modbus16Protocol = 3, /// /// 维特JY61协议 /// WitJY61Protocol = 4 } }