我有一个用于通过BLE-PLX库通过蓝牙连接到外部设备的应用程序。
在扫描和连接期间出现问题,因为它并不总是有效。
这是我用于通过蓝牙连接一台设备的代码:
// First Scan
scans1() {
this.manager.startDeviceScan(null, null, (error, device) => {
if (error) {
this.manager.stopDeviceScan();
console.log("0.Error, retry connection.")
this.scans1()
//return;
}
if ((device.name == this.model_dx(this.props.Model)) || (device.name == this.model_sx(this.props.Model)))
{
this.manager.stopDeviceScan();
console.log("1.Device Founded - ", device.name)
this.setState({device1: device})
this.manager.connectToDevice(device.id)
.then(() => {
console.log("2.Launch Scans 2") // this is for connect to the second device.
this.scan2();
})
.catch(() => {
Alert.alert("Error " + "Connection Failed.");
Actions.homepage();
})
}
else if ((device.name == null )) {
this.manager.stopDeviceScan();
console.log("3.Device is - null - retry scan")
this.scans1();
} else {
this.manager.stopDeviceScan();
console.log("4.Error: Device not found.")
Actions.homepage();
}
});
现在我要知道的是,如何查看设备是否已连接? (我不知道是否可能是另一种错误,我已经尝试解决任何类型的问题)。
遵循他们说的指南:
检查设备的连接状态。
isDeviceConnected(deviceIdentifier: DeviceId): Promise<boolean>
参数
deviceIdentifier (DeviceId)
设备标识符。
返回
Promise<boolean>:
Promise,如果连接了设备,则发出true,否则发出false。
但是我不知道如何使用它。
答案 0 :(得分:0)
我找到了解决方法:
我可以使用:
this.manager.isDeviceConnected(device.id).then((res) => console.log(res))