同一问题,我也很绝望
// 连接蓝牙设备
function createConnection(deviceId){
console.log('连接开始');
console.log("deviceId:"+deviceId)
plus.bluetooth.createBLEConnection({
deviceId:deviceId,
// timeout: "300",
success:function(e){
console.log(deviceId);
console.log(typeof deviceId);
console.log('create connection success: '+JSON.stringify(e));
console.log('连接结束');
if(e.message == 'operate time out'){
$("#usedList i").html('连接超时');
}else{
$("#usedList i").html('已连接');
}
return 1;
},
fail:function(e){
console.log('create connection failed: '+JSON.stringify(e));
$("#usedList i").html('连接失败');
}
});
}
3 个回复
1***@qq.com
同一问题,我也很绝望
1***@qq.com
请问我用的是HBuilderX最新的,但打开蓝牙和传输数据时(plus.bluetooth.openBluetoothAdapter)出进入fail,报了一个{"code":10001,"message":"not available"}
怎么才能正常使用Bluetooth模块???
DoublePD
+1 连都连不上 难道只能连低功耗的?
DoublePD
试了一下 只能连接低功耗的 经典蓝牙连不上
2019-01-24 09:55