Dictionary<String, int> dict = new Dictionary<String, int>();
dict.Add("BT", (bytes[1] & 0xf0) >> 4);//BT 电量 11110000
dict.Add("SP", bytes[1] & 0x0f);//SP 瞬时速度 1111
Dictionary<String, int> dict = new Dictionary<String, int>();
dict.Add("BT", (bytes[1] & 0xf0) >> 4);//BT 电量 11110000
dict.Add("SP", bytes[1] & 0x0f);//SP 瞬时速度 1111
相关文章: