无法搜索到蓝牙外设
使用华为有时候会出现无法搜索到设备列表,周边一个设备都搜索不到,然后用nrf Connect等工具也无法搜索到,这个时候关闭小程序,nrf Connect就可以立刻搜索到
使用oppo手机就一直都搜索不到周边设备,列表返回空
请帮忙,今天已提交日志,微信id AIRkai
4 回复
有的,在其他机型小米,ios都很稳定,而且为了防止蓝牙的问题,我们每次使用都会关闭打开蓝牙再使用
restartMatchDevice(restartCallBack) { var that = this // 注意this的层级关系 wx.closeBluetoothAdapter({ complete: function (res) { console.log( '关闭完毕' ) console.log(res) wx.openBluetoothAdapter({ success: function (res) { that.openAdapter = true that.beganSearch(restartCallBack) }, fail: function (res) { that.openAdapter = false tool.showMention( '请打开蓝牙1' , true ); } }) } }) }
|