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.

link|improve this question

73% accept rate
feedback

1 Answer

Are you on Windows 64bit? If so, you may find you need to use BlueCove 2.1.1 SNAPSHOT. Try this here: http://snapshot.bluecove.org/distribution/download/2.1.1-SNAPSHOT/2.1.1-SNAPSHOT.62/.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.