@madbyte wrote:
Hi,
I have page with a list of bluetooth devices. After choosing one and the connection is successfully I change to another page making this:
BTConectado(){ this.bluetoothSerial.isConnected().then(() => { console.log("BT Conectado"); this.navCtrl.setRoot(MonitorPage); //this.navCtrl.push(MonitorPage); }, () => {console.log("BT No conectado");}); }
When MonitorPage is loaded I want to know what device is connected (its address). I was reading BluetoothSerial Docs but seems that is not possible know that information.
I’m wrong?
Posts: 1
Participants: 1