April 2017
Intermediate to advanced
242 pages
6h 10m
English
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:

Read now
Unlock full access