BluetoothGattCharacteristic

This class contains the functionality and parameters of a Bluetooth Characteristics. Methods related to reading and writing the data can be found in this class. Normally, a list of characteristics is acquired from the service object.

List<BluetoothGattCharacteristic> gattCharacteristics =         service.getCharacteristics(); // Loops through available Characteristics. for (BluetoothGattCharacteristic gattCharacteristic :         gattCharacteristics) {     // Do something with gattCharacteristic }

And a view of the functionalities offered by this class can be found here:

IntelliSense offered by Android Studio to list BluetoothGattCharacteristic ...

Get Building Bluetooth Low Energy Systems now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.