startScan
2022-07-01 11:13 更新
开始扫描周围的蓝牙设备,并返回扫描到的设备卡号
startScan(callback(ret,err))
callback(ret, err)
回调操作
ret:
- 类型:JSON对象
- 内部字段:
{
card: ABCDE12345, //string,蓝牙设备的十位卡号
powerLow: false, //bool型,true表示当前设备电量低
}
err:
- 类型:JSON对象
- 内部字段:
{
error: "ble scan is already started" //string, error message
}
示例代码
bleScanner.startScan(function(ret, err) {
if (ret != "") {
addResult(JSON.stringify(ret));
}
if (err != "") {
addResult(JSON.stringify(err));
}
});
stopScan
停止扫描
stopScan()
示例代码
bleScanner.stopScan();
以上内容是否对您有帮助:
← blesdk
更多建议: