我已经安装了蓝牙
sudo apt-get install bluetooth bluez-utils blueman
我可以找到我的手机
hcitool scan
问题是当我尝试在 python 文件中使用蓝牙时
import bluetooth
工作正常。但是当我尝试
nearby_devices = bluetooth.discover_devices()
它不工作。错误是
AttributeError: 'module' object has no attribute 'discover_devices'
基于一些应该工作的网页。Ps 基本上我想以编程方式将文本文件发送到我的移动设备。这是该过程的开始。