python bluetooth藍牙信息獲取藍牙設(shè)備類型的方法
python 獲取藍牙設(shè)備類型
掃描藍牙設(shè)備獲取到的信息中,無法判斷掃描到的藍牙設(shè)備屬于什么類型的設(shè)備。
掃描藍牙信息使用的是python 里面的bluetooth模塊。
首先掃描出來的是這樣的信息
('74:60:FA:FD:FC:49','HUAWEI P30',5898764)
可根據(jù)5898764來判斷是什么藍牙設(shè)備。
收集了一些設(shè)備,可以成功的轉(zhuǎn)化為設(shè)備類型
def bt_device_type(device_type): if device_type == 5898764 or device_type == 'Android': return 'Android' if device_type == 7078144 or device_type == 'computer_ubuntu14': return 'computer_ubuntu14' if device_type == 786700 or device_type == 'computer_ubuntu16': return 'computer_ubuntu16' if device_type == 655620 or device_type == 'computer_windows': return 'computer_windows' if device_type == 2360324 or device_type == 'headset': return 'headset' #耳機 if device_type == 2360328 or device_type =='speaker': return 'speaker' # 擴音器 if device_type == 263208 or device_type == 'SV': return 'SV' #藍牙音響 if device_type == 7995916 or device_type == 'phone': return 'phone' #蘋果設(shè)備 if device_type == 3670284 or device_type == 'MACBook': return 'MACBook' if device_type == 7936 or device_type == 2752780 or device_type == 'PC': return 'PC' if device_type == 6947088 or device_type == 'iPad': return 'iPad' return 'unknown'
最終是這樣的,想顯示成中文,那就改為中文的。有幫助請點一下贊
相關(guān)文章
Python使用eel模塊創(chuàng)建GUI應(yīng)用程序
在Python中,有許多庫和模塊可以用來創(chuàng)建圖形用戶界面(GUI)應(yīng)用程序,其中一個流行的選擇是使用eel模塊,下面小編就來為大家詳細介紹一下如何使用eel模塊創(chuàng)建GUI應(yīng)用程序吧2023-12-12用python介紹4種常用的單鏈表翻轉(zhuǎn)的方法小結(jié)
這篇文章主要介紹了用python介紹4種常用的單鏈表翻轉(zhuǎn)的方法小結(jié),文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2020-02-02使用Python實現(xiàn)全攝像頭拍照與鍵盤輸入監(jiān)聽功能
這篇文章主要介紹了使用Python實現(xiàn)全攝像頭拍照與鍵盤輸入監(jiān)聽功能,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2023-08-08python數(shù)據(jù)結(jié)構(gòu)之圖的實現(xiàn)方法
這篇文章主要介紹了python數(shù)據(jù)結(jié)構(gòu)之圖的實現(xiàn)方法,實例分析了Python圖的表示方法與常用尋路算法的實現(xiàn)技巧,需要的朋友可以參考下2015-07-07Python插件virtualenv搭建虛擬環(huán)境
這篇文章主要為大家詳細介紹了Python插件virtualenv搭建虛擬環(huán)境,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-11-11