I was to connect to a bluetooth device using the pybluez python library. I'm using the CST bluetooth dongle (similar to this) However I get the following:
>>> from bluetooth import discover_devices
>>> discover_devices()
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
discover_devices()
File "C:\Python\Python35-32\lib\site-packages\bluetooth\msbt.py", line 15,in discover_devices
devices = bt.discover_devices(duration=duration, flush_cache=flush_cache)
OSError: The RPC server is unavailable.
I'm on Windows 10, the dongle is functioning correctly and I can pair up. Any advice/tips on how to make the dongle visible to the library?