I research about Bluetooth in Android, but it can send data between two device, so It is possible to send data to Multiple devices in Android? if possible, please some hint, or some source code. Thanks;
Asked
Active
Viewed 1,777 times
3 Answers
0
True not exactly broadcast but multi-cast / piconet way
Take a look here http://en.wikipedia.org/wiki/Bluetooth#Communication_and_connection

Amol Ghotankar
- 2,008
- 5
- 28
- 42
0
No. Bluetooth is a point to point communication protocol: it does not support any "single device to multiple other device using the same connection" semantics.
If you want point to multipoint then use something like broadcast or multicast UDP.

Femi
- 64,273
- 8
- 118
- 148
0
Although it is a pretty old question, These days there is the BLE (Bluetooth low energy) technology, which is included in the Android framework which enables you to broadcast data between multiple devices.

M.vin
- 39
- 7