我已经为BlueCove 2.1.1构建并运行了 RemoteDeviceDiscovery 示例项目。该程序将发现所有可发现的蓝牙设备,但它也会在 deviceDiscovered() 中报告曾经配对过的设备。
有没有办法只发现你周围的设备(比如在 Android 中)?下面的代码返回发现的设备和配对的设备...
public void deviceDiscovered(RemoteDevice btDevice, DeviceClass cod) {
System.out.println("Device " + btDevice.getBluetoothAddress() + " found");
devicesDiscovered.addElement(btDevice);
try {
System.out.println(" name " + btDevice.getFriendlyName(false));
} catch (IOException cantGetDeviceName) {
}
}