我目前正在使用nativescript和蓝牙(这两个我都很陌生)开发一个电话应用程序,并且我在发现附近的设备时遇到了问题。在另一个手机应用程序上,许多设备的发现速度非常快,但是,在我的应用程序上,只发现了其他应用程序发现的设备的一个子集,而且它们的发现速度也较慢。所以我的主要问题是什么会导致我的应用程序只发现我周围的一些设备而不是其他设备?其次,为什么发现它们很慢?或者也许有任何简单的方法来诊断问题?
这也是我的代码...
import { Component, OnInit } from "@angular/core";
import { ListViewEventData, RadListView } from "nativescript-ui-listview";
import { Device } from "../shared/device.model";
var bluetooth = require('nativescript-bluetooth');
//var bluetooth = require("nativescript-bluetooth");
@Component({
selector: "Home",
moduleId: module.id,
templateUrl: "./home.component.html",
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
deviceList: Array<Device> = [];
isLoading = false;
listLoaded = true;
constructor() {
}
onTapCell(name): void{
alert(name);
return;
}
ngOnInit(): void{
console.log(bluetooth.isBluetoothEnabled().then(
function(enabled){
console.log("enabled " + enabled);
}
));
var t = this.deviceList;
setTimeout(
function(){
bluetooth.startScanning({
serviceUUIDs: [],
seconds : 120,
onDiscovered: function(peripheral){
console.log(peripheral.UUID);
console.log(peripheral.RSSI);
peripheral.RSSI += 128;
t.push(peripheral);
},
onScanFailed: function(){
}
});
},
125*1000
)
}
}
我的系统:Android 8,motoZ2
谢谢,伊赛亚