Connect multiple devices via Bluetooth on Android (multiple BLE connections)

I am trying to create a client-server connection network through Android devices through a blue-tooth (as a connection platform). One device acts as a server and the other 4 or five devices as clients. I tried many examples from git-hub, but there is no implementation of multiple connections. Here is the link I tried for multiple connection via blue-tooth https://github.com/arissa34/Android-Multi-Bluetooth-Library

+9
android github bluetooth bluetooth-lowenergy
Oct. 25 '17 at 8:50
source share
1 answer

First of all, you should notice that this library is designed for socket communication using the RFCOMM protocol , which is not low Bluetooth https://en.wikipedia.org/wiki/List_of_Bluetooth_protocols

If you need help, I need more information, like your version of Android, part of your code and your logs.

In addition, you can see this library in the work on this game https://play.google.com/store/apps/details?id=com.drgames.domino Using one server and 3 clients in bluetooth.

+3
Oct 28 '17 at 19:43 on
source share



All Articles