Komut
addDescriptor()
Açıklama
Özelliğe bir BLEDescriptor ekleyin.
Sözdizimi
bleCharacteristic.addDescriptor (bleDescriptor)
Parametreler
bleDescriptor : karakteristiğe eklemek için tanımlayıcı
İadeler
Hiçbir şey değil
Misal
…
// BLE 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);
…
// BLE 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);
…
See Also
- BLECharacteristic()
- uuid()
- properties()
- valueSize()
- value()
- valueLength()
- readValue()
- writeValue()
- setEventHandler()