Parcourir la source

Use the proper button alias BUTTON_PIN to the digitalRead instructions

pull/6/head
Nelson Neves il y a 12 ans
Parent
révision
924af874e0
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      examples/wfi.c

+ 1
- 1
examples/wfi.c Voir le fichier

@@ -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 ;


Chargement…
Annuler
Enregistrer