发现蓝牙设备IOError:RPC服务器不可用

时间:2015-09-04 02:51:17

标签: python bluetooth pybluez

我只是尝试使用PyBluez在PyCharm中使用Python实现蓝牙。我坚持这个特殊的错误。我试图搜索此错误但找不到它。有人可以帮忙吗?

这是我的代码

>>> from bluetooth import discover_devices
>>> nearby_devices = discover_devices()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python27\lib\site-packages\bluetooth\msbt.py", line 15, in discover_devices
    devices = bt.discover_devices(duration=duration, flush_cache=flush_cache)
IOError: The RPC server is unavailable.

1 个答案:

答案 0 :(得分:1)

我遇到了同样的错误并设法修复它。

我的笔记本电脑上已禁用蓝牙无线电设备。

我打开了设备管理器,选择了设备并启用了它。

现在我的输出是:

>>> from bluetooth import discover_devices
>>> discover_devices()
['2C:4A:05:96:27:01']