diff --git a/terminal/puzzle_leftRight/src/main.cpp b/terminal/puzzle_leftRight/src/main.cpp index 31628c5..1af9a26 100644 --- a/terminal/puzzle_leftRight/src/main.cpp +++ b/terminal/puzzle_leftRight/src/main.cpp @@ -64,17 +64,16 @@ void winAnimation() { strip.show(); delay(250); - uint8_t w = 50; for (int i = 0; i < NUM_LEDS; i++) { strip.setPixelColor( ledIndex(i), - strip.Color(0, 0, w) + strip.Color(25, 25, 0) ); strip.show(); delay(20); } - setAll(strip.Color(0, 0, w)); + setAll(strip.Color(25, 25, 0)); strip.show(); } @@ -82,7 +81,7 @@ void checkPress(int buttonID) { if (buttonID == sequence[currentStep]) { strip.setPixelColor( ledIndex(currentStep), - strip.Color(0, 0, 40) + strip.Color(25, 25, 0) ); strip.show(); currentStep++;