diff --git a/Main.c b/Main.c index 0b8f59b..97d2d46 100644 --- a/Main.c +++ b/Main.c @@ -54,6 +54,7 @@ int main(int argc, char *argv[]) { if (digitalRead(BUTTON_PIN) == LOW && !buttonPressed) { + printf("Button pressed\n"); ledState = (ledState + 1) % NUM_LEDS; buttonPressed = true; }