- openBluetoothAdapter:fail:auth denied
在没网络的情况下,打开蓝牙功能报错,但这个功能在物联网行业很重要。因为没网络环境下是有可能的
2022-05-10 - 安卓蓝牙连接有的时候很快,有的时候很慢,苹果手机都很快。有碰到同样问题的小伙伴吗?
console.log("*************andirodConnectBlue before createBLEConnection time=" + timeLib.getStimeStamp()); wx.createBLEConnection({ deviceId: deviceId, success: function (res) { console.log("********andirodConnectBlue createBLEConnection 连接蓝牙成功:" + res.errMsg + " time:" + timeLib.getStimeStamp()); app.globalData.blueConnectFlag = true;
2019-10-03 - 苹果手机蓝色搜素返回res设备内容里name和localname未空怎么办?
江湖救急啊,我的蓝牙设备出厂前就已经有蓝牙名称,是按照BLE打头的,小程序里去搜素蓝牙设备,安卓下是可以发现包含BLE打头的设备,但苹果手机缺无法搜到BLE打头的设备。但是在苹果手机里下个蓝牙助手,搜一下,在连接一下,发现以后就可以搜到BLE打头的设备了。这个问题怎么解决啊 wx.onBluetoothDeviceFound(searchBluecallbackF); function searchBluecallbackF(res) { for (var x in res.devices) { if (res.devices[x].name.indexOf("BL") != -1 ) console.log("蓝牙信息:" + res.devices[x].deviceId + " name:" + res.devices[x].name+" deviceinfo:"+res.devices[x]); if (res.devices[x].name==null)continue; if ((res.devices[x].name.indexOf("BLELOCK") != -1) || (res.devices[x].name.indexOf("BLDLOCK") != -1)){ console.log(res); } } }
2019-09-09 - 蓝牙搜索返回的res中,发现在苹果手机里,无法搜索到特定名称的蓝牙设备?
蓝牙搜索返回的res中,发现在苹果手机里,无法搜索到特定名称的蓝牙设备。奇怪的是当用蓝牙助手先搜到后,在连接一下后,小程序日后就可以搜到这个蓝牙设备了。安卓手机没有这个问题,都可以搜出特定字符打头的蓝牙设备。 function searchBluecallbackF(res) { for (var x in res.devices) { if (res.devices[x].name.indexOf("BL") != -1 ) console.log("蓝牙信息:" + res.devices[x].deviceId + " name:" + res.devices[x].name+" deviceinfo:"+res.devices[x]); if (res.devices[x].name==null)continue; if ((res.devices[x].name.indexOf("BLELOCK") != -1) || (res.devices[x].name.indexOf("BLDLOCK") != -1)){ console.log(res); } } }
2019-09-09 - 金立s10手机的微信小程序搜索蓝牙搜不到
在微信外面的环境是可以搜到蓝牙设备,但在微信里面什么蓝牙设备都发现不了。手机是金立s10,不知道官方是否有人反馈。
2019-09-06 - 真机调试,我把手机微信升级到7.0.3 怎么扫描二维码就退出了
- 当前 Bug 的表现(可附上截图) 微信里扫描二维码立刻退出 - 预期表现 进入调试界面 - 复现路径 - 提供一个最简复现 Demo
2019-02-10