I want my program to react on when some bluetooth device is on. So i want to know is there any Unique ID of each bluetooth device that can be use to identifiy Bluetooth device via BluetoothDevice android class. I cannot work with device name because there are lot of devices with the same name: Here is how i got the name:
Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();
for (BluetoothDevice bt : pairedDevices) {
String bluetoothDevice = bt.getName();
}