ArduinoBLE - bleCharacteristic.addDescriptor()

Add a BLEDescriptor to the characteristic.

Syntax

bleCharacteristic.addDescriptor(bleDescriptor)

Parameters

  • bleDescriptor: descriptor to add to the characteristic

Returns

Nothing

Example


// Bluetooth® Low Energy Battery Level Characteristic
BLEUnsignedCharCharacteristic batteryLevelChar("2A19",  // standard 16-bit characteristic UUID
    BLERead | BLENotify); // remote clients will be able to get notifications if this characteristic changes

BLEDescriptor batteryLevelDescriptor("2901", "millis");





  batteryLevelChar.addDescriptor(batteryLevelDescriptor);