-
Notifications
You must be signed in to change notification settings - Fork 18
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
Comments
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. |
I'm just using the connect method, with the (Passing final stream = RxBle.connect(deviceId, autoConnect: true).timeout(
Duration(seconds: 10),
onTimeout: (sink) {
sink.close();
...
},
);
await for (state in stream) {
...
} |
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) |
Thanks for the research. How are you planning to make this feature cross-platform? |
In addition, how can I re connect a device that i not yet "in range" ? |
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 ?
The text was updated successfully, but these errors were encountered: