I'm trying to show the list of bluetooth devices associated with my PC using bluecove, but it just keep scaning without finding anything, it shows this message on the terminal:
BlueCove version 2.1.0 on winsock
and stays there without showing any device.
Here is the code I'm using:
BluetoothDeviceDiscovery bluetoothDeviceDiscovery=new BluetoothDeviceDiscovery();
//display local device address and name
LocalDevice localDevice = LocalDevice.getLocalDevice();
System.out.println("Address: "+localDevice.getBluetoothAddress());
System.out.println("Name: "+localDevice.getFriendlyName());
//find devices
DiscoveryAgent agent = localDevice.getDiscoveryAgent();
I think it's a problem in the local device since it's not even showing the adress of the local device.