Komut
subscribed()
Açıklama
Karakteristik başka bir BLE cihazı tarafından abone olduysa sorgulayın.
Sözdizimi
bleCharacteristic.subscribed ()
Parametreler
Yok
İadeler
Gerçek karakteristik değer sahte aksi halde başka bir BLE cihazı ile abone olması durumunda
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
// …
if (batteryLevelChar.subscribed()) {
// set a new value , that well be pushed to subscribed BLE devices
batteryLevelChar.writeValue(0xab);
}
…
// 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
// …
if (batteryLevelChar.subscribed()) {
// set a new value , that well be pushed to subscribed BLE devices
batteryLevelChar.writeValue(0xab);
}
…
See Also
- BLECharacteristic()
- uuid()
- properties()
- valueSize()
- value()
- valueLength()
- readValue()
- writeValue()
- setEventHandler()