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
Even if block=True, the function is still run in a separate through. The blocking appears to be done artificially solely for the purpose of enabling different execution flows.
I'm using timeloop with pybluez to discover bluetooth devices every x seconds.
But during the loop, the following warning is printed:
WARNING: nextEventMatchingMask should only be called from the Main Thread! This will throw an exception in the future.
I'm running the loop in the main thread with
tl.start(block=True)
And the loop doesn't continue. How can I solve this problem?
The text was updated successfully, but these errors were encountered: