NordicSemiconductor / Android-BLE-Library

A library that makes working with Bluetooth LE on Android a pleasure. Seriously.
BSD 3-Clause "New" or "Revised" License
2.02k stars 417 forks source link

Multiple Connection #233

Closed pritam2102 closed 4 years ago

pritam2102 commented 4 years ago

Can we connect multiple ble device using library and communication.

philips77 commented 4 years ago

Hello, Yes, you can. For each connected device you need to have separate instance of BleManager. We have an example of it in here: Proximity profile in nRF Toolbox. The service extends BleMulticonnectProfileService which keeps the list of all devices, for which connection was created. If you're using also the GATT server, there should be one instance of the BleServerManager which you set to all BleManager objects using useServer(...).

pritam2102 commented 4 years ago

Thank You