You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I do a scan, I only want devices with my service Id to be returned. Taking a look at their documentation, it seems like RxBluetoothKit has: manager.scanForPeripherals(withServices: [serviceId])
and RxAndroidBle has scan filters:
Disposable scanSubscription = rxBleClient.scanBleDevices(
new ScanSettings.Builder()
// .setScanMode(ScanSettings.SCAN_MODE_LOW_LATENCY) // change if needed
// .setCallbackType(ScanSettings.CALLBACK_TYPE_ALL_MATCHES) // change if needed
.build()
// add filters if needed
)
The text was updated successfully, but these errors were encountered:
When I do a scan, I only want devices with my service Id to be returned. Taking a look at their documentation, it seems like RxBluetoothKit has:
manager.scanForPeripherals(withServices: [serviceId])
and RxAndroidBle has scan filters:
The text was updated successfully, but these errors were encountered: