DEV Community

Mritunjay Saha
Mritunjay Saha

Posted on

How to create piconet in android?

I am writing this blog because I found it quite to difficult to find any resource to create a piconet for android devices.

What is a piconet?

A piconet is a Bluetooth ad-hoc network. It can consist of one master device and a maximum of seven slave devices.

TL;DR

We will create a class named Piconet. It will have the required methods needed to connect multiple devices. For this, we will need a UUID (There are many online UUID generators available online).

How will the device connect?

For the devices to connect the app needs to be running on all the devices. Since the Bluetooth socket needs to be open on all the devices.

Once the app is running we will click the discover button so that all the paired devices are listed on the drop-down list. from the drop-down list we can select a mobile Bluetooth device to connect. Once the devices are connected then it will show a toast and we can send "Hello World" text to the other Bluetooth devices.

Alt Text

The Bluetooth device that starts the connection is the master Bluetooth device. It can connect up to a maximum of 7 devices (Theoretical limit. Practical limitations depends on the hardware). If the send message button is clicked on the master device then it will broadcast the message. But it is not same for the slave devices when the send message button is pressed on the slave devices then it will send the text messages only to the master device.

The code for this blog is in this Github Repo

Top comments (0)