我正在使用 gopro 相机构建一个项目,我发现 GoPro 有免费的 API,我遵循了如何使用 BLE 的教程。因此,为了尝试一切正常,我使用这个简单的程序来查找蓝牙设备,但没有发现任何东西。我正在使用 python3.10 我正在使用 mac m1 我的蓝牙已打开
import bleak
from bleak import BleakScanner
async def main():
devices = await BleakScanner.discover()
for d in devices:
print(d,"yes i found it")
asyncio.run(main())```