序:有一个项目遇到连接蓝牙要配对,怎么搞呢?看文档啊wx.makeBluetoothPair(Object object) | 微信开放文档
好吧!蓝牙配对接口,仅安卓支持;你们也知道了,这是不可控的行为,它是系统自带的,设备调起的,直接 wx.createBLEConnection() 创建连接,都会弹出这个配码弹窗,怎么处理这是个好问题!IOS的管不着,我是不管的,安卓的能优化就优化一下吧!
wx.getBLEDeviceServices() 成功后android 下弹窗
const res = wx.getSystemInfoSync();
// 安卓密码配对弹窗
if(res.platform == "android"){
wx.makeBluetoothPair({
deviceId: curDeviceId, // 这里填写要进行配对的设备 id
complete: function (res) {
console.log('安卓配对',res);
}
});
}
配对默认密码
// 安卓分享机 pin 码
str2abs(code) {
code = code +'';
let buf = new ArrayBuffer(6);
let dataView = new DataView(buf);
for (let i=0; i < code.length; i++) {
dataView.setUint8(i,code.charCodeAt(i));
}
return buf;
},
// 默认密码
makePair(password){
let arrayBuffer = this.str2abs(parseInt(password,16));
wx.makeBluetoothPair({
deviceId: curDeviceId, // 这里填写要进行配对的设备 id
pin: arrayBuffer,
complete: function (res) {
console.log('分享安卓配对',res);
}
});
}
碰到的一些问题:已连接的设备如何查看,
iOS 的使用 wx.getConnectedBluetoothDevices(Object object) 判断,如果存在然后使用wx.createBLEConnection() 创建连接;文章来源:https://www.toymoban.com/news/detail-681936.html
Android 的使用 wx.isBluetoothDevicePaired(Object object) 判断,如果存在然后使用wx.createBLEConnection() 创建连接;文章来源地址https://www.toymoban.com/news/detail-681936.html
到了这里,关于小程序 蓝牙配对的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!