-
Notifications
You must be signed in to change notification settings - Fork 5
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
Windows Support #6
Labels
bug
Something isn't working
Comments
Additional errors include:
|
Full debug output after detecting the board with scan:
|
I think the problem is coming from this bit in # Windows does not support explicitly connecting to a device.
# Instead it has the concept of a GATT session that is owned
# by the calling program.
self._session.maintain_connection = True
# This keeps the device connected until we set maintain_connection = False.
# wait for the session to become active
await asyncio.wait_for(event.wait(), timeout=timeout)
except BaseException:
handle_disconnect()
raise
finally:
self._session_active_events.remove(event)
# Obtain services, which also leads to connection being established.
await self.get_services() |
Since this looks like a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently with the
bleak
rewrite, windows should be supported.There is however an error at the unlock response (notify likely failing to get response):
The text was updated successfully, but these errors were encountered: