react-native-ble-plxモジュールを使用して ble デバイスに接続しようとしていますが、以下は接続を作成するためのコードです:-
console.log("device id is ", device.id)
manager.connectToDevice(device.id).then(mydevice=>{
console.log("connected device is +++++++++++++++++++++",mydevice)
}).catch(err=>{
console.log("manager connection err",err)
})
コードを実行すると、以下の応答が得られました (catch ブロックは毎回実行されます):-
device id is 3C:11:92:6B:51:8B
manager connection err [BleError: Device 3C:11:92:6B:51:8B was disconnected]
特定のデバイスに接続するにはどうすればよいですか