已连接的设备, 校验是否配对,返回的是isPaired: false. 未配对
1. 连接设备方法成功,连接成功
wx.createBLEConnection({
deviceId,
success (res) {
console.log(res)
}
})
2. 后面通过点击事件校验是否配对
wx.isBluetoothDevicePaired({
deviceId,
success(res) {
console.log(res) // isPaired: false
}
})
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。