1. 程式人生 > 程式設計 >python bluetooth藍芽資訊獲取藍芽裝置型別的方法

python bluetooth藍芽資訊獲取藍芽裝置型別的方法

python 獲取藍芽裝置型別

掃描藍芽裝置獲取到的資訊中,無法判斷掃描到的藍芽裝置屬於什麼型別的裝置。

掃描藍芽資訊使用的是python 裡面的bluetooth模組。

首先掃描出來的是這樣的資訊

('74:60:FA:FD:FC:49','HUAWEI P30',5898764)

可根據5898764來判斷是什麼藍芽裝置。

收集了一些裝置,可以成功的轉化為裝置型別

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' #蘋果裝置
  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'

最終是這樣的,想顯示成中文,那就改為中文的。有幫助請點一下贊