android 藍芽4.0 開發介紹,android4.0

來源:互聯網
上載者:User

android 藍芽4.0 開發介紹,android4.0

     最近一直在研究一個藍芽功能 由於本人是菜鳥  學起來比較忙 一直搞了好久才弄懂 , 網上對藍芽4.0也就是幾個個dome 抄來抄去,全是英文註解 , 對英語不好的朋友來說

真是硬傷 , 一些沒必要的描述羅裡吧嗦 , 關鍵的方法介面 一筆帶過 .........算了不吐槽了.我就介紹一下我最近的學習心得吧 ,簡單的什麼開啟  藍芽 搜尋藍芽什麼的我就不說了 你們百度一下 android 藍芽 4.0 一大坨.看完再來看我的部落格也行  ,我就介紹點 網上那些 一筆帶過 比較重要的介面回調 之類的.

   藍芽 中具體有些什麼東西:  藍芽名字 (name) 藍芽地址(adress)  藍芽訊號強度 (riss) 藍芽服務(service) 藍芽服務下面又有小服務  也就是具體要做的   這些應該就是我們常用的 其他的我也沒用過 也不知道.嘿嘿

  藍芽通訊過程 :  開啟 尋找(可以指定uuid尋找裝置) 串連  就不說了;串連之後  首先 擷取 bluetooth service  (通過UUID 尋找的)  然後再找bluetooth service 裡面的小服務 叫 bluetooth

Characteristic  (也是通過UUID擷取的)  之後你就可以 對其進行讀寫了 ,讀寫有三種情況 說了好像也沒什麼用 根據自己的需求吧 ; 


下面就介紹一下
BluetoothGattCallback   網上都是一筆帶過根本沒有什麼解釋的  找了好久表示好心累然後自己用裝置一個一個方法調:下面貼代碼 加註釋裡面是有發送資料的:
BluetoothGattCallback bluetoothGattCallback = new BluetoothGattCallback() {

@Override
public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
//串連狀態觸發
        if (newState == BluetoothProfile.STATE_CONNECTED) {
Log.d("Bluetooth", "-------ConnectSucceed------");
bluetoothGatt.discoverServices();//探索服務
} else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
Log.d(" Bluetooth", "-------Disconnect------");
if (bluetoothAdapter == null || !bluetoothAdapter.isEnabled()) {
bluetoothAdapter = bluetoothManager.getAdapter();
bluetoothAdapter.enable();
bluetoothAdapter.startLeScan(uuid, leScanCallback);
}
}
}

/**
* 發現裝置服務回調
*/
@Override
public void onServicesDiscovered(BluetoothGatt gatt, int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
final byte[] buffer = new byte[5];
String open = "open=1";//發送的資料
try {
byte[] data = open.getBytes("UTF-8");
writeDataToDevice(data);//發送(單獨一個方法)
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
}

@Override
public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
Log.d("000", "--------發送資料成功 ----- status:");
}
}

@Override
public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
Log.d("藍芽回複資料為", characteristic.getValue().toString());
}

@Override
public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) {

}
.....
};

/**
* 向裝置發送資料
*/
public void writeDataToDevice(byte[] data) {
if (bluetoothGatt == null) {
Log.d("00 ", "----------------BluetoothGatt=null-----------------------");
return;
}

bluetoothGattService = bluetoothGatt
.getService(BLURTOOTH_SERVICE);//藍牙裝置中需要使用的服務的UUID
if (bluetoothGattService == null) {
Log.d("pcg", "service not found!");
bluetoothGatt.disconnect();
return;
}

BluetoothGattCharacteristic mCharac = bluetoothGattService
.getCharacteristic(BLUETOOTH_CHARACTERISTIC);//需要使用該服務下具體某個特性的UUID
if (mCharac == null) {
//沒有找到的情況
bluetoothGatt.disconnect();
return;
}
bluetoothGatt.setCharacteristicNotification(mCharac, true);
Log.d("pcg", "data:" + Arrays.toString(data));
mCharac.setValue(data); //設定需要發送的資料
try {
Thread.sleep(200);
} catch (InterruptedException e) {
e.printStackTrace();
}
writeCharacteristic(mCharac);
}

就介紹 到這裡 吧  看完這個下載個dome  看一下 會清晰一點 .  搞開發還是 看看好  不要去拷貝人家的  ,  看懂了就用的靈活點 ,做這個功能發現全天下的dome 都是一個人寫的似的 全是英文  開始懷疑大家都只是拷貝官方的dome  連互動都是一大坨的廣播發來發去  真是看都不願看.就介紹到這裡  ,  寫的不好 勿噴!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.