标签: python bluetooth
我试图用Python中的Raspberry扫描蓝牙信标。蓝牙加密狗工作正常,我可以用命令行检测信标。
但我想从Python中发现它们。我安装了bluez和pybluez。从我运行的python脚本:
import bluetooth._bluetooth
我收到以下错误:
没有名为bluetooth._bluetooth的模块
我做错了什么?
答案 0 :(得分:0)
尝试import bluetooth或import bluetooth.*。它应该解决你的问题。
import bluetooth
import bluetooth.*