2017-07-23 84 views
0

我想知道如果我有UUID並已成功連接到BLE設備,檢索BluetoothGattCharacteristic的最佳方法是什麼?例如,見下文。 TIA。獲得BluetoothGattCharacteristic給定UUID

public BluetoothGattCharacteristic retrieveCharacteristic(UUID myUUID) { 

    BluetoothGattCharacteristic returnChar; 
    BluetoothGattService myService; 

    myService = mBluetoothGatt.getService(myUUID); 
    returnChar = myService.getCharacteristic(myUUID); 
    return returnChar; 
} 

回答