第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Python:如何連接藍牙設備?(Linux)

Python:如何連接藍牙設備?(Linux)

鴻蒙傳說 2023-05-09 09:30:53
我需要所有連接的藍牙設備到我的電腦。我找到了圖書館,但我無法連接設備簡單查詢示例:    import bluetooth    nearby_devices = bluetooth.discover_devices(lookup_names=True)    print("Found {} devices.".format(len(nearby_devices)))    for addr, name in nearby_devices:        print("  {} - {}".format(addr, name))
查看完整描述

2 回答

?
慕勒3428872

TA貢獻1848條經(jīng)驗 獲得超6個贊

問題中的代碼片段正在掃描新設備,而不是報告已連接的設備。

作為如何在 Python3 中實現(xiàn)它的示例:

import pydbus


bus = pydbus.SystemBus()


adapter = bus.get('org.bluez', '/org/bluez/hci0')

mngr = bus.get('org.bluez', '/')


def list_connected_devices():

? ? mngd_objs = mngr.GetManagedObjects()

? ? for path in mngd_objs:

? ? ? ? con_state = mngd_objs[path].get('org.bluez.Device1', {}).get('Connected', False)

? ? ? ? if con_state:

? ? ? ? ? ? addr = mngd_objs[path].get('org.bluez.Device1', {}).get('Address')

? ? ? ? ? ? name = mngd_objs[path].get('org.bluez.Device1', {}).get('Name')

? ? ? ? ? ? print(f'Device {name} [{addr}] is connected')


if __name__ == '__main__':

? ? list_connected_devices()


查看完整回答
反對 回復 2023-05-09
?
慕的地8271018

TA貢獻1796條經(jīng)驗 獲得超4個贊

使用前需要安裝依賴

布魯斯

代碼

def get_connected_devices():

? ? bounded_devices = check_output(['bt-device', '-l']).decode().split("\n")[1:-1]

? ? connected_devices = list()

? ? for device in bounded_devices:

? ? ? ? name = device[:device.rfind(' ')]

? ? ? ? #mac_address regex

? ? ? ? regex = '([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})|([0-9a-fA-F]{4}\\.[0-9a-fA-F]{4}\\.[0-9a-fA-F]{4})$'

? ? ? ? mac_address = re.search(regex, device).group(0)


? ? ? ? device_info = check_output(['bt-device', '-i', mac_address]).decode()

? ? ? ? connection_state = device_info[device_info.find('Connected: ') + len('Connected: ')]

? ? ? ? if connection_state == '1':

? ? ? ? ? ? connected_devices.append({"name": name, "address": mac_address})

? ? return connected_devices


查看完整回答
反對 回復 2023-05-09
  • 2 回答
  • 0 關注
  • 315 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號