From 210f70a94694c2554dbed827b3908095b82b1884 Mon Sep 17 00:00:00 2001 From: C0d3v Date: Sun, 18 Jan 2026 13:42:05 +0100 Subject: [PATCH] Change color to orange --- terminal/puzzle_leftRight/src/main.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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++;