Last active
March 24, 2020 21:33
-
-
Save akshmakov/fe6d0360a6d46dbbb3340fe5fa27b40b to your computer and use it in GitHub Desktop.
pygatt debug snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import pygatt | |
import logging | |
logging.basicConfig() | |
logging.getLogger('pygatt').setLevel(logging.DEBUG) | |
b = pygatt.BGAPIBackend() | |
b.start() | |
#b.scan() |
calroc
commented
Mar 24, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment