From dd9ced2962125b44535838f7ae9ab87ab734eeba Mon Sep 17 00:00:00 2001 From: C0d3v Date: Sun, 18 Jan 2026 13:51:29 +0100 Subject: [PATCH] Change color to orange --- terminal/puzzle_leftRight/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terminal/puzzle_leftRight/src/main.cpp b/terminal/puzzle_leftRight/src/main.cpp index 1af9a26..21af13c 100644 --- a/terminal/puzzle_leftRight/src/main.cpp +++ b/terminal/puzzle_leftRight/src/main.cpp @@ -67,13 +67,13 @@ void winAnimation() { for (int i = 0; i < NUM_LEDS; i++) { strip.setPixelColor( ledIndex(i), - strip.Color(25, 25, 0) + strip.Color(35, 10, 0) ); strip.show(); delay(20); } - setAll(strip.Color(25, 25, 0)); + setAll(strip.Color(35, 10, 0)); strip.show(); } @@ -81,7 +81,7 @@ void checkPress(int buttonID) { if (buttonID == sequence[currentStep]) { strip.setPixelColor( ledIndex(currentStep), - strip.Color(25, 25, 0) + strip.Color(35, 10, 0) ); strip.show(); currentStep++;