這篇文章將為大家詳細(xì)講解有關(guān)python中如何獲取藍(lán)牙設(shè)備類型,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
員工經(jīng)過長期磨合與沉淀,具備了協(xié)作精神,得以通過團(tuán)隊(duì)的力量開發(fā)出優(yōu)質(zhì)的產(chǎn)品。成都創(chuàng)新互聯(lián)公司堅(jiān)持“專注、創(chuàng)新、易用”的產(chǎn)品理念,因?yàn)椤皩W⑺詫I(yè)、創(chuàng)新互聯(lián)網(wǎng)站所以易用所以簡單”。公司專注于為企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站建設(shè)、微信公眾號(hào)開發(fā)、電商網(wǎng)站開發(fā),微信小程序定制開發(fā),軟件定制網(wǎng)站開發(fā)等一站式互聯(lián)網(wǎng)企業(yè)服務(wù)。Python主要用來做什么Python主要應(yīng)用于:1、Web開發(fā);2、數(shù)據(jù)科學(xué)研究;3、網(wǎng)絡(luò)爬蟲;4、嵌入式應(yīng)用開發(fā);5、游戲開發(fā);6、桌面應(yīng)用開發(fā)。
python 獲取藍(lán)牙設(shè)備類型
掃描藍(lán)牙設(shè)備獲取到的信息中,無法判斷掃描到的藍(lán)牙設(shè)備屬于什么類型的設(shè)備。
掃描藍(lán)牙信息使用的是python 里面的bluetooth模塊。
首先掃描出來的是這樣的信息
('74:60:FA:FD:FC:49','HUAWEI P30',5898764)
可根據(jù)5898764來判斷是什么藍(lán)牙設(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' #耳機(jī) if device_type == 2360328 or device_type =='speaker': return 'speaker' # 擴(kuò)音器 if device_type == 263208 or device_type == 'SV': return 'SV' #藍(lán)牙音響 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中如何獲取藍(lán)牙設(shè)備類型”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。