安卓机器在创建ble连接时高概率出现10006错误,要重试很多次才能连上一次,ios没有此类情况
wx.createBLEConnection({
deviceId: deviceId,
timeout: 5000,
success: (res) => {
wx.hideLoading();
wx.showToast({
title: '连接创建成功!',
});
console.log("Connect success...", res);
},
fail: function (res) {
wx.hideLoading();
console.log("Connect fail...", res);
if (typeof fail === 'function' && res.errCode != -1) {
fail("蓝牙设备连接失败! [" + res.errCode + "]");
}
}
});
本文来自微信小程序开发者论坛 -微信小程序工厂 http://www.xcxgc.com,转载请保留,开发微信小程序、定制微信小程序来微信小程序工厂网。
网友回复
ni**回复:
你好,可以参考以下链接
https://developers.weixin.qq.com/blogdetail?action=get_post_info&docid=00060a369e825058c6d6a1e3f56400&highline=10006
本文网址:http://www.91bianli.com/kaifazhinan/62165.html