蓝牙无法正常断开连接
正常情况下,这一步可以实现
wx.createBLEConnection({
success: (res) => {
},
fail: function(err) {
wx.showToast({
title: '接连失败',
icon: 'none',
duration: 2000
})
// 断开
that.DisconnectBle(deviceId);
// 关闭蓝牙
that.closeBluetoothAdapter();
})
但当我退出小程序,再次进入却提示10006,这个经我多次测试是设备并没有断开,要在小程序界面上手动关闭蓝牙才能再次连接,在手机桌面手动关闭蓝牙,也没用...一定要在小程序界面上手动关闭蓝牙才可以..希望有人解决一下问题,