0
你能幫助我嗎?如何從Web Workers開始使用藍牙(cordova-ble-central)?ble.scan()frow網絡工作者
ble.scan([],5,function(device){postMessage(device.name)},function(error){});
你能幫助我嗎?如何從Web Workers開始使用藍牙(cordova-ble-central)?ble.scan()frow網絡工作者
ble.scan([],5,function(device){postMessage(device.name)},function(error){});
我希望這對你的作品....
var devices=[];
ble.startScan([],
function(peripheral)
{
devices.push(peripheral);
},
function(error)
{
console.log(error);
});
setTimeout(ble.stopScan, 1500,
function()
{
console.log("scan stopped.)
},
function()
{
console.log("stopScan failed");
}