We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2cc672 commit d6afd8bCopy full SHA for d6afd8b
libraries/CurieBLE/examples/central/peripheral_explorer/peripheral_explorer.ino
@@ -125,7 +125,7 @@ void exploreCharacteristic(BLECharacteristic characteristic) {
125
if (characteristic.canRead()) {
126
// read the characteristic value
127
characteristic.read();
128
- delay(1000);
+
129
if (characteristic.valueLength() > 0)
130
{
131
// print out the value of the characteristic
@@ -150,7 +150,6 @@ void exploreDescriptor(BLEDescriptor descriptor) {
150
151
// read the descriptor value
152
descriptor.read();
153
154
155
// print out the value of the descriptor
156
Serial.print(", value 0x");
0 commit comments