Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How many maximum device can we pair via Bluetooth to android device at a time? [closed]

Can anyone tell me how many maximum devices can we pair via Bluetooth to android devices at a time.....i googled every where but i didn't get the right answer.

like image 391
Anurag Avatar asked Jun 25 '13 04:06

Anurag


People also ask

How many Bluetooth devices can Android connect to at once?

In Android, you can pair with four Bluetooth devices at the same time and seamlessly switch between them. If there is an incoming call, it will automatically switch to any Bluetooth speaker or other audio accessory that can handle the call. The system will remember the volume of each Bluetooth device automatically.

Is there a limit to paired Bluetooth devices?

Pairing information can be registered for up to eight Bluetooth wireless devices total.


1 Answers

In a Bluetooth piconet one master can communicate up to 7 active slaves, there can be some other up to 248 devices which are in sleep mode (may participate to communication actively when another active device goes into sleep mode).

In Bluetooth scatternets (interconnected piconets) number of devices are not limited. Some slaves used as a bridge by participating two or more piconets. One of the most advanced topology defined for Bluetooth scatternets is Cube Connected Cycles architecture.

you can set up multiple bluetooth connections (at least RFCOMM connections). Just use a alternative thread for you connection, and it would work fine (I guess) See also: http://developer.android.com/resources/samples/BluetoothChat/index.html

something like this,

Method m = device.getClass().getMethod("createRfcommSocket", new Class[] {int.class});
tmp = (BluetoothSocket) m.invoke(device, 1);
like image 51
blganesh101 Avatar answered Sep 22 '22 00:09

blganesh101