粗暴的解釋Android與藍芽Ble之間的通訊,android藍芽ble

來源:互聯網
上載者:User

粗暴的解釋Android與藍芽Ble之間的通訊,android藍芽ble

首先,先簡單介紹一下ble的特徵(注意:藍芽4.0隻有android4.3或4.3以上才支援)

1.BLE(Bluetooth Low Energy),藍芽4.0核心profile,主要特點是快速搜尋,快速串連,超低功耗保持串連和資料轉送,缺點:資料轉送速率低,由於其具有低功耗特點,所以經常用在穿戴式裝置之中。

2.關於BLE資料轉送:

a.profile可以理解為一種規範,一個標準的通訊協定,其存在於手機中,藍芽組織規定了一些標準的profile:HID OVER GATT ,防丟器等,每個profile中包含了多個service。

b.service 可以理解為一個服務,在BLE從機中有多個服務,電量資訊,系統服務資訊等,每一個service中包含了多個characteristic特徵值,每一個具體的characteristic特徵值才是BLE通訊的主題。

c.characteristic特徵值:BLE主機從機通訊均是通過characteristic進行,可以將其理解為一個標籤,通過該標籤可以讀取或寫入相關資訊。

d. UUID(統一標識碼):service和characteristic均需要這個唯一的UUID進行標識。

e. 角色和職責,看到這裡我覺得您老人家應該知道了,就是中心裝置和外圍裝置(GATT server vs. GATT client.),不過呢在這裡我就不這樣說了,其實也不太懂那麼的官方說法,我就簡單粗暴點就是運用了ble的app和ble裝置之間的通訊,當app搜尋到了ble裝置,app會收到ble反饋過來的資訊比如電量什麼的,對於怎麼得來的不用說都知道肯定是在一個規範好的一個對象中啦(先不需要知道這個對象是什麼鬼東西因為我也不知道,官方叫characteristic也就是上面說的特徵值),相反我們app也可以通過寫入一些資訊到這個對象(characteristic)發送給裝置,裝置收到之後就會執行我們的要它做的動作了。其實也就和平常我們的對象賦值一樣(setValue("fuzhi")),只是方法不同而已,一個是set一個是write。

最後來舉個例子簡答說明一下:其實說白了characteristic特徵值就好比一支球隊的各個球員,service好比這個球隊的名稱,profile就當國家吧,假如我們要找到某一個球員,世界這麼多國家第一需要知道是哪個國家的,第二需要知道是哪個球隊的,最後才知道是那個球員,只有這樣最後才能瞭解這個球員的一些資訊(類似從ble裝置擷取資訊),相反也只有這樣找到球員後告訴這個球員應該怎麼打球的(類似對ble裝置設定資訊)。例子很難懂吧,如果你看懂了說明你和我一樣小學畢業,看不懂的話就直接看代碼吧,因為本人小學畢業,識字不多,腦袋不能轉太快,怕翻車,,,

 

/****************************************************代碼塊*****************************************************

 

1、 許可權和相關屬性這是最基本的啦

<uses-featureandroid:name="android.hardware.bluetooth_le"android:required="true"/>

<uses-permissionandroid:name="android.permission.BLUETOOTH"/>

<uses-permissionandroid:name="android.permission.BLUETOOTH_ADMIN"/>

 

2、初始化藍芽,這個方法一般可以寫在項目的啟動activity,不然怕在寫完ble代碼執行後發現沒有開啟藍芽還需要手動去開啟對項目體驗感不好,當然只要您老人家開心,寫不寫都可以。

private void initBluetooth() {
             BluetoothManager mBluetoothManager = (BluetoothManager) this.getSystemService(Context.BLUETOOTH_SERVICE);
             if (mBluetoothManager != null) {
                       BluetoothAdapter mBluetoothAdapter = mBluetoothManager.getAdapter();
                           if (mBluetoothAdapter != null) {
                                     if (!mBluetoothAdapter.isEnabled()) {
                                          mBluetoothAdapter.enable();  //開啟藍芽
                             }
                     }
               }
   }

 

3、擷取本地ble對象(BluetoothAdapter),它對應本地Android裝置的藍芽模組,可能這麼稱呼為本地ble對象不太準確,但我老人家開心這麼稱呼。從此段代碼開始可以把這些有關ble通訊的代碼寫到一個class中當做一個ble工具class,以便代碼清晰查看和方便調用。這裡我們就當這個工具類叫BleManager

private BluetoothAdapter mBluetoothAdapter; 

private BluetoothDevice mBluetoothDevice; 

private BluetoothGatt mBluetoothGatt;

private boolean isScanning = false;

//以上所定義的對象在下面的方法中都有用到,(建議在看藍芽這方面的東西時,不管看誰的文章,都先把以上或者還有些藍芽基本用的對象先熟悉是什麼意思和基本作用)。

 

private BleManager(Context context) {
           this.mContext = context;
           BluetoothManager bluetoothManager = (BluetoothManager) context.getSystemService(Context.BLUETOOTH_SERVICE);  //BluetoothManager只在android4.3以上有
           if (bluetoothManager == null) {
                       TLog.e(TAG, "Unable to initialize BluetoothManager.");
                        return;
           }

          mBluetoothAdapter = bluetoothManager.getAdapter();
}

 

4、既然獲得了BluetoothAdapter對象,那麼接下來就可以搜尋ble裝置了,這時就需要用到BluetoothAdapter的startLeScan()這個方法了

public void startLeScan() {
if (mBluetoothAdapter == null) {
          return;
   }

  if (isScanning) {
    return;
  }
    isScanning = true;

   mBluetoothAdapter.startLeScan(mLeScanCallback);   //此mLeScanCallback為回呼函數

   mHandler.sendEmptyMessageDelayed(STOP_LESCAN, 10000);  //這個搜尋10秒,如果搜尋不到則停止搜尋
}

在4.3之前的api是通過註冊廣播來處理搜尋時發生的一些事件,而支援ble的新的api中,是通過回調的方式來處理的,而mLeScanCallback就是一個介面對象

private LeScanCallback mLeScanCallback = new LeScanCallback() {
    @Override
          public void onLeScan(BluetoothDevice device, int arg1, byte[] arg2) {
                   TLog.i(TAG, "onLeScan() DeviceName------>"+device.getName());  //在這裡可通過device這個對象來擷取到搜尋到的ble裝置名稱和一些相關資訊
                   if(device.getName() == null){  
                           return;
                   }
                  if (device.getName().contains("Ble_Name")) {    //判斷是否搜尋到你需要的ble裝置
                             TLog.i(TAG, "onLeScan() DeviceAddress------>"+device.getAddress());
                             mBluetoothDevice = device;   //擷取到周邊裝置
                             stopLeScan();   //1、當找到對應的裝置後,立即停止掃描;2、不要迴圈搜尋裝置,為每次搜尋設定適合的時間限制。避免裝置不在可用範圍的時候持續不停掃描,消耗電量。

                             connect();  //串連
                 } 
      }
};

//

private Handler mHandler = new Handler() {
public void handleMessage(android.os.Message msg) {
switch (msg.what) {
case STOP_LESCAN:
T.showLong(mContext, mContext.getResources().getString(R.string.msg_connect_failed));
mBluetoothAdapter.stopLeScan(mLeScanCallback);
broadcastUpdate(Config.ACTION_GATT_DISCONNECTED);
isScanning = false;
TLog.i(TAG, "Scan time is up");
break;
}
};
};

 

5、搜尋到當然就是串連了,就是上面那個connect()方法了

public boolean connect() {
       if (mBluetoothDevice == null) {
       TLog.i(TAG, "BluetoothDevice is null.");
       return false;
}

//兩個裝置通過BLE通訊,首先需要建立GATT串連。這裡我們講的是Android裝置作為client端,串連GATT Server

mBluetoothGatt = mBluetoothDevice.connectGatt(mContext, false, mGattCallback);  //mGattCallback為回調介面

if (mBluetoothGatt != null) {

if (mBluetoothGatt.connect()) {
TLog.d(TAG, "Connect succeed.");
return true;
} else {
TLog.d(TAG, "Connect fail.");
return false;
}
} else {
TLog.d(TAG, "BluetoothGatt null.");
return false;
}
}

 

private final BluetoothGattCallback mGattCallback = new BluetoothGattCallback() {
@Override
public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
                    if (newState == BluetoothProfile.STATE_CONNECTED) {
                                  gatt.discoverServices(); //執行到這裡其實藍芽已經串連成功了

                                  TLog.i(TAG, "Connected to GATT server.");
                           } else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
                                      if(mBluetoothDevice != null){
                                              TLog.i(TAG, "重新串連");
                                                    connect();
                                               }else{
                                                   TLog.i(TAG, "Disconnected from GATT server.");
                          }
               }
}

 

public void onServicesDiscovered(BluetoothGatt gatt, int status) {
           if (status == BluetoothGatt.GATT_SUCCESS) {
                TLog.i(TAG, "onServicesDiscovered");
                getBatteryLevel();  //擷取電量
      } else {
              TLog.i(TAG, "onServicesDiscovered status------>" + status);
     }
}

@Override
public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
       TLog.d(TAG, "onCharacteristicRead------>" + Utils.bytesToHexString(characteristic.getValue()));

//判斷UUID是否相等
       if (Values.UUID_KEY_BATTERY_LEVEL_CHARACTERISTICS.equals(characteristic.getUuid().toString())) { 
}
}

@Override
public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) {
      TLog.d(TAG, "onCharacteristicChanged------>" + Utils.bytesToHexString(characteristic.getValue()));

//判斷UUID是否相等
      if (Values.UUID_KEY_BATTERY_LEVEL_CHARACTERISTICS.equals(characteristic.getUuid().toString())) {
}
}

//接受Characteristic被寫的通知,收到藍芽模組的資料後會觸發onCharacteristicWrite
@Override
public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
       TLog.d(TAG,"status = " + status);
       TLog.d(TAG, "onCharacteristicWrite------>" + Utils.bytesToHexString(characteristic.getValue()));
}
};

 

public void getBatteryLevel() {
BluetoothGattCharacteristic batteryLevelGattC = getCharcteristic(
Values.UUID_KEY_BATTERY_LEVEL_SERVICE, Values.UUID_KEY_BATTERY_LEVEL_CHARACTERISTICS);
if (batteryLevelGattC != null) {
readCharacteristic(batteryLevelGattC);
setCharacteristicNotification(batteryLevelGattC, true); //設定當指定characteristic值變化時,發出通知。
}
}

 

6、擷取服務與特徵

//a.擷取服務

public BluetoothGattService getService(UUID uuid) {
if (mBluetoothAdapter == null || mBluetoothGatt == null) {
TLog.e(TAG, "BluetoothAdapter not initialized");
return null;
}
return mBluetoothGatt.getService(uuid);
}

//b.擷取特徵

private BluetoothGattCharacteristic getCharcteristic(String serviceUUID, String characteristicUUID) {

//得到服務物件
BluetoothGattService service = getService(UUID.fromString(serviceUUID));  //調用上面擷取服務的方法

if (service == null) {
TLog.e(TAG, "Can not find 'BluetoothGattService'");
return null;
}

//得到此服務結點下Characteristic對象
final BluetoothGattCharacteristic gattCharacteristic = service.getCharacteristic(UUID.fromString(characteristicUUID));
if (gattCharacteristic != null) {
return gattCharacteristic;
} else {
TLog.e(TAG, "Can not find 'BluetoothGattCharacteristic'");
return null;
}
}

 

//擷取資料

public void readCharacteristic(BluetoothGattCharacteristic characteristic) {
if (mBluetoothAdapter == null || mBluetoothGatt == null) {
TLog.e(TAG, "BluetoothAdapter not initialized");
return;
}
mBluetoothGatt.readCharacteristic(characteristic);
}

 

public boolean setCharacteristicNotification(BluetoothGattCharacteristic characteristic, boolean enabled) {
if (mBluetoothAdapter == null || mBluetoothGatt == null) {
TLog.e(TAG, "BluetoothAdapter not initialized");
return false;
}
return mBluetoothGatt.setCharacteristicNotification(characteristic, enabled);
}

 

7、寫入資料,在上面的方法中我們已經得到了裝置服務和服務裡的特徵characteristic,那麼就可以對這個特徵寫入或者說是賦值

public void write(byte[] data) {   //一般都是傳byte
          //得到可寫入的characteristic Utils.isAIRPLANE(mContext) &&
            if(!mBleManager.isEnabled()){
                TLog.e(TAG, "writeCharacteristic 開啟飛航模式");
                //closeBluetoothGatt();
                isGattConnected = false;
                broadcastUpdate(Config.ACTION_GATT_DISCONNECTED);
                return;
           }
         BluetoothGattCharacteristic writeCharacteristic = getCharcteristic(Values.UUID_KEY_SERVICE, Values.UUID_KEY_WRITE);  //這個UUID都是根據協議號的UUID
         if (writeCharacteristic == null) {
         TLog.e(TAG, "Write failed. GattCharacteristic is null.");
         return;
     }
     writeCharacteristic.setValue(data); //為characteristic賦值
     writeCharacteristicWrite(writeCharacteristic);

}

 

public void writeCharacteristicWrite(BluetoothGattCharacteristic characteristic) {
            if (mBluetoothAdapter == null || mBluetoothGatt == null) {
                TLog.e(TAG, "BluetoothAdapter not initialized");
                return;
             }
              TLog.e(TAG, "BluetoothAdapter 寫入資料");
              boolean isBoolean = false;
              isBoolean = mBluetoothGatt.writeCharacteristic(characteristic);
             TLog.e(TAG, "BluetoothAdapter_writeCharacteristic = " +isBoolean);  //如果isBoolean返回的是true則寫入成功
}

 

 

8、寫到這其實基本差不多了,最後再就是在activity中調用了,其實在調用的時候直接在需要搜尋藍芽的activity調用startLeScan()這個方法就可以了,至於搜尋到的結果也顯示在這個方法裡面了,找到了對應的裝置名稱然後再串連,對於中間一系列的回呼函數,不管是成功還是失敗都是根據您老人家的實際項目需求去寫的,你可以用一個廣播把回調資訊發送出來到activity,告訴activity應該做什麼........

舉個簡單的例子:

             在MainActivity調用搜尋藍芽的方法

            public class MainActivity extends Activity{ 

            private BleManager manager;            

                  @Override
             protected void onCreate(Bundle savedInstanceState) {
             super.onCreate(savedInstanceState);

             manager = new BleManager(this);  //這個this是一個上下文,只要在上面的BleManager工具類定義一個有參數就好

             manager.startLeScan();  //調用此方法,如果搜尋到有裝置則自然的去串連它了,到時候串連時回回調mGattCallback 這個回呼函數,如果成功你可以發送一個廣播出來提醒使用者藍芽與裝置串連成功

         }

         搜尋成功後,你就可以根據你的需要寫入資訊傳送了。簡單說說,就是你在一個button事件中調用上面的write(byte[] byte)這個方法,對於裡面的參數byte就是根據你們所設定的byte了,最後寫入的成功與否就看writeCharacteristicWrite這個方法下面的傳回值是true還是false了,true表示成成功。

 

9、總結了,菜鳥我其實也剛接觸藍芽不久,也是看了一些文章,然後結合自己的一些總結,寫出了這麼一篇小學生文章(也是想為自己增加一些印象),請各位老人家們多多理解,當然要是有哪位大神看不過去或者覺得那裡不對了請指教出來,不要讓小菜鳥一直錯下去,謝謝!

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.