wx.getBluetoothDevices({
success: function (res) {
for (let i = 0; i < res.devices.length; i++) { // 遍历设备信息
let tempDevice = res.devices[i];
tempDevice.advUint8Array = new Uint8Array(tempDevice.advertisData); // advertisData少了一个字节
}
},
fail: function (res) {
console.error
},
complete: function (res) {}
});
当前蓝牙设备的广播数据段中的 ManufacturerData 数据段,少了一个字节。
你好提供一下手机系统截图
出现异常的广播的数据是什么样的,能提供个代码片段看看
getBluetoothDevices()获取的advertisData字段比实际设备发的ManufacturerData少了一个字节