我想尝试一个可以打开和关闭蓝牙的 Python 脚本。我不知道从哪里开始。请帮忙。
答案1
您可以在 python 中运行终端命令。
终点站线路为:
rfkill block bluetooth
和
rfkill unblock bluetooth
要在 python 中运行它们:
import os
os.system("rfkill block bluetooth")
import os
os.system("rfkill unblock bluetooth")
或者你可以使用:
subprocess.call(["rfkill", "block", "bluetooth"])
subprocess.call(["rfkill", "unblock", "bluetooth"])