in Android
in CC2650 sensor tag
I can get all services with their UUID but how to get their names corresponding to UUID
is there any list provided by ti for CC2650 sensor tag
to call below method initially
@Override
public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) {
super.onCharacteristicChanged(gatt, characteristic);
}
something to configure using UUID like AA01* for data
how to enable ?
there is a code like
BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
UUID.fromString(UUID));
descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
mBluetoothGatt.writeDescriptor(descriptor);
what will be UUID in above code ?
thank you...