我遇到了一个问题,即 scanBleDevices(UUID...filters) 方法无法支持发现具有不同 UUIDServices 的双重设备。
我猜 args 之间的关系是 AND,但不是 OR。但是我怎样才能得到具有不同 UUIDService 的双重设备呢?
那里的代码是我想发现带有 uuid 的设备00001801-0000-1000-8000-00805F9B34FB
和另一个带有 uuid的设备6E400001-B5A3-F393-E0A9-E50E24DCCA9E
,但我总是无法通过代码获得结果。那么,我该如何解决这个问题呢?
scanScription = rxBleClient
.scanBleDevices(UUID.fromString("00001801-0000-1000-8000-00805F9B34FB"), UUID.fromString("6E400001-B5A3-F393-E0A9-E50E24DCCA9E"))
.subscribe(new Action1<RxBleScanResult>() {
@Override
public void call(RxBleScanResult rxBleScanResult) {
if (!bleDeviceHashMap.containsKey(rxBleScanResult.getBleDevice().getMacAddress())) {
bleDeviceHashMap.put(rxBleScanResult.getBleDevice().getMacAddress(), rxBleScanResult.getBleDevice());
HashMap<String, String> ble = new HashMap<String, String>();
ble.put("name", rxBleScanResult.getBleDevice().getName());
ble.put("address", rxBleScanResult.getBleDevice().getMacAddress());
bleDevices.add(ble);
adapter.notifyDataSetChanged();
}
}
});