Я создал небольшое приложение с ionic framework v4 .
Я установил cordova-plugin-ble-central и использовал сканирование () функция для сканирования всех устройств.Проблема в том, что когда я запускаю свое приложение на своем мобильном телефоне, я открываю приложение, чтобы начать сканирование устройств.К сожалению, не все устройства найдены.Я смог отсканировать устройство 2 дня назад, но пока оно не было моим, я не знаю, какое оно было.
Мой мобильный - Samsung Galaxy S8 .
Мой код в home.page.ts :
import { Component, NgZone } from "@angular/core";
import { BLE } from "@ionic-native/ble/ngx";
import { AlertController, ToastController } from "@ionic/angular";
@Component({
selector: "app-home",
templateUrl: "home.page.html",
styleUrls: ["home.page.scss"]
})
export class HomePage {
devices: any[] = [];
statusMessage: string;
constructor(
private ble: BLE,
private alertCtrl: AlertController,
private toastCtrl: ToastController,
private ngZone: NgZone
) {
this.checkBluetooth();
}
checkBluetooth() {
this.ble.isEnabled().then(
success => {
this.showToast("Bluetooth is enabled");
},
error => {
this.showError("Bluetooth is *not* enabled");
}
);
}
enableBluetooth() {
this.ble.enable().then(
success => {
this.showToast("Bluetooth is enabled");
},
error => {
this.showError("The user did *not* enable Bluetooth");
}
);
}
listDevices() {
this.setStatus("Scanning for bluetooth LE devices");
this.devices = [];
this.ble
.scan([], 5)
.subscribe(
device => this.onDeviceDiscovered(device),
error => this.showError("No devices because " + error)
);
setTimeout(this.setStatus.bind(this), 5000, "Scan complete");
}
onDeviceDiscovered(device) {
this.showToast("Discovered " + JSON.stringify(device, null, 2));
this.ngZone.run(() => {
this.devices.push(device);
});
}
setStatus(message) {
this.showToast(message);
this.ngZone.run(() => {
this.statusMessage = message;
});
}
async showError(error) {
const alert = await this.alertCtrl.create({
header: "Error",
subHeader: error,
buttons: ["OK"]
});
await alert.present();
}
async showToast(msj) {
const toast = await this.toastCtrl.create({
message: msj,
duration: 1000
});
await toast.present();
}
}
interface pairedlist {
class: number;
id: string;
address: string;
name: string;
}
Как сканирование может работать правильно, чтобы найти все устройства?Благодаря.