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
{{ message }}
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
Bug report (I searched for similar issues and did not find one)
Current behavior
The services registration happens in ObservableBluetoothLEDevice.ConnectAsync. However, the services characteristics are being initialized in an non-async way in the service ctor.
Expected behavior
After await ConnectAsync, I would expect a fully available object (with services), which is not the case.
How to fix
My recommendation is to fix this by adding an Task InitializeAsync method to ObservableGattDeviceService. Then this can be called from within the ConnectAsync method and actually be awaited.