小程序 蓝牙配对

序:有一个项目遇到连接蓝牙要配对,怎么搞呢?看文档啊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);
      }
    });
}

你可能感兴趣的:(小程序)