使用wx.makeBluetoothPair 传入pin值报{"errCode":10013,"errMsg":"makeBluetoothPair:fail:invalid data"}
如果不传入pin码是可以弹出输入pin码的框的是可以匹配的,但是填写pin码 就会报10013 错误
代码片段
var arrayBuffer =this.str2abs('123456');
wx.makeBluetoothPair({
deviceId:deviceId,
pin:arrayBuffer,
success:res=>{
console.log(JSON.stringify(res));
},
fail:error=>{
console.log(JSON.stringify(error));
}
})
str2abs(str) {
var buf = new ArrayBuffer(str.length*2); // 2 bytes for each char
var bufView = new Uint16Array(buf);
for (var i=0, strLen=str.length; i<strLen; i++) {
bufView[i] = str.charCodeAt(i);
}
return buf;
},
微信版本号 7.0.19 时间2020-11-4
你好,麻烦提供下具体机型,系统版本,微信版本号麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
另外,复现问题后请在手机微信上传日志: 我->设置->帮助与反馈右上角有个上报日志的入口,提供出现问题的微信号,出现问题的时间点(具体到分钟)
微信版本7.0.20 手机:华为P30 出现问题时间:2020-11-4-14 点
啥也不是
现在还不支持,等明年吧