在我的應用程序,我從谷歌即0000a00-0000-1000-8000-00805f9b34fbmBluetoothGatt.getService(UUID)返回null
不過的getService passng助聽器服務的UUID號作爲BLE樣品中返回null意味着該服務不被BluetoothGatt支持。 爲什麼會發生這種情況,任何人都可以幫助我。
在我的應用程序,我從谷歌即0000a00-0000-1000-8000-00805f9b34fbmBluetoothGatt.getService(UUID)返回null
不過的getService passng助聽器服務的UUID號作爲BLE樣品中返回null意味着該服務不被BluetoothGatt支持。 爲什麼會發生這種情況,任何人都可以幫助我。
你必須首先發現所有的服務爲每文檔指定設備。
此功能要求已完成給定設備的服務發現。 http://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#getService(java.util.UUID)
@Override
// New services discovered
public void onServicesDiscovered(BluetoothGatt gatt, int status) {
if (status == BluetoothGatt.GATT_SUCCESS) {
BluetoothGattService mBluetoothGattService = mBluetoothGatt.getService(UUID.fromString(serviceUUID));
if (mBluetoothGattService != null) {
Log.i(TAG, "Service characteristic UUID found: " + mBluetoothGattService.getUuid().toString());
} else {
Log.i(TAG, "Service characteristic not found for UUID: " + serviceUUID);
}
}
或者你可以運行一個搜索
for (BluetoothGattService gattService : gattServices) {
Log.i(TAG, "Service UUID Found: " + gattService.getUuid().toString());
}
如果mBluetoothGatt.getService(UUID.fromString(serviceUUID))爲空,該怎麼辦?怎麼了? – Billyjoker
嘗試做一個完整的發現[1]的遠程數據庫,然後遍歷服務。也許你錯了UUID。
[1] http://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#discoverServices()
你的UUID也是錯誤的。應該是0000a00X-0000-1000-8000-00805f9b34fb,而不是0000a00-0000-1000-8000-00805f9b34fb
您是否發現了這些服務? – reTs