Komut
descriptorCount()
Açıklama
Karakteristik için keşfedilen BLE tanımlayıcılarının sayısını sorgulayın.
Sözdizimi
bleCharacteristic.descriptorCount ()
Parametreler
Yok
İadeler
Karakteristik için keşfedilen BLE tanımlayıcılarının sayısı
Misal
…
// loop the descriptors of the characteristic and explore each
for (int i = 0; i < characteristic.descriptorCount(); i++) {
BLEDescriptor descriptor = characteristic.descriptor(i);
// ...
}
…
// loop the descriptors of the characteristic and explore each
for (int i = 0; i < characteristic.descriptorCount(); i++) {
BLEDescriptor descriptor = characteristic.descriptor(i);
// ...
}
…
See Also
- BLECharacteristic()
- uuid()
- properties()
- valueSize()
- value()
- valueLength()
- readValue()
- writeValue()
- setEventHandler()
- hasDescriptor()
- descriptor()
- canRead()
- read()
- canWrite()
- canSubscribe()
- subscribe()
- canUnsubscribe()
- unsubscribe()
- valueUpdated()