Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[iOS] return know peripherals without scanning #7

Open
fvisticot opened this issue Jun 16, 2019 · 5 comments
Open

[iOS] return know peripherals without scanning #7

fvisticot opened this issue Jun 16, 2019 · 5 comments
Labels
enhancement New feature or request

Comments

@fvisticot
Copy link

I would like to avoid scanning again if my device know the identifier of my BLE Objects.
Apple provide this interesting method:

retrievePeripheralsWithIdentifiers :
https://developer.apple.com/documentation/corebluetooth/cbcentralmanager/1519127-retrieveperipheralswithidentifie?language=objc

Can you please expose this method in the API ?

@devxpy
Copy link
Member

devxpy commented Jun 16, 2019

I don't think the underlying libraries, RxBluetoothKit / RxAndroidBle expose this.

You better file an issue there, since this library is fully dependent on those.

@devxpy
Copy link
Member

devxpy commented Jun 16, 2019

I'm just using the connect method, with the deviceId stored in shared preferences and a timeout.

(Passing autoConnect: true does the scanning for you automatically.)

final stream = RxBle.connect(deviceId, autoConnect: true).timeout(
  Duration(seconds: 10),
  onTimeout: (sink) {
    sink.close();
    ...
  },
);

await for (state in stream) {
   ...
}

@fvisticot
Copy link
Author

I have checked the doc for iOS and it seems the methods are available:

https://github.com/Polidea/RxBluetoothKit/wiki/9.-Other-functionalities#retrieving-peripherals

It would be nice if you could wrap the 2 methods:

manager.retrieveConnectedPeripherals(withServices: services)
manager.retrievePeripherals(withIdentifiers: identifiers)

@devxpy
Copy link
Member

devxpy commented Jun 16, 2019

Thanks for the research. How are you planning to make this feature cross-platform?

@fvisticot
Copy link
Author

In addition, how can I re connect a device that i not yet "in range" ?
I would like to connect without timeout to connect the device when he will be in range.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants