- 蓝牙广播 startAdvertising 广播的数据跟自己拼接的数据有出入?
BLEPeripheralServer.startAdvertising想广播的数据:data='1a:11:07:00:53:54:5E:C0:01:00:01:01:00:00:00:00:00:00:00'; 实际广播出来的数据为: [图片] 为什么会多出几个来,后面那个00 00知道了为manufacturerId 前面多出来这几个改怎么去掉呢(包括这个manufacturerId),求告知
2020-05-25 - 搜索获取蓝牙设备,真机调试可以搜索到设备,预览跟上传的体验版无法搜索到蓝牙设备?
搜索获取蓝牙设备,真机调试可以搜索到设备,预览跟上传的体验版无法搜索到蓝牙设备? getBluetoothDevices 开发工具版本1.02.2004020 微信版本7.0.13 基础版本库 2.10.3 代码: wx.getBluetoothDevices({ success: function (res) { var arr = []; for (var i = 0; i < res.devices.length; i++) { if (res.devices[i].name.indexOf("DTE") != -1 && res.devices[i].RSSI !=0){ arr.push(res.devices[i]); that.setData({ disable:'' }); } } that.setData({ devices: arr }); wx.stopBluetoothDevicesDiscovery({ success: function (res) { }, }) }, })
2020-04-20