Procházet zdrojové kódy

Use the proper button alias BUTTON_PIN to the digitalRead instructions

pull/6/head
Nelson Neves před 12 roky
rodič
revize
924af874e0
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      examples/wfi.c

+ 1
- 1
examples/wfi.c Zobrazit soubor

@@ -89,7 +89,7 @@ PI_THREAD (waitForIt)

// Wait for key to be released

while (digitalRead (0) == LOW)
while (digitalRead (BUTTON_PIN) == LOW)
delay (1) ;

debounceTime = millis () + DEBOUNCE_TIME ;


Načítá se…
Zrušit
Uložit