We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e42e93 commit a541fadCopy full SHA for a541fad
libraries/Bluefruit52Lib/examples/Central/central_bleuart_multi/central_bleuart_multi.ino
@@ -310,7 +310,8 @@ void blink_timer_callback(TimerHandle_t xTimerID)
310
// Where n = number of connection
311
static uint8_t count = 0;
312
313
- if ( count < 2*connection_num) digitalToggle(LED_RED);
+ if ( count < 2*connection_num ) digitalToggle(LED_RED);
314
+ if ( count % 2 && digitalRead(LED_RED)) digitalWrite(LED_RED, LOW); // issue #98
315
316
count++;
317
if (count >= 10) count = 0;
0 commit comments