From 6ffd5f4332a2362f898dd8ef58ad8a0805ce07cf Mon Sep 17 00:00:00 2001 From: zzzz Date: Sun, 26 May 2024 17:24:48 +0200 Subject: [PATCH] changed LED color to white --- src/SmartStrip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SmartStrip.cpp b/src/SmartStrip.cpp index 0716878..c0fb46a 100644 --- a/src/SmartStrip.cpp +++ b/src/SmartStrip.cpp @@ -45,7 +45,7 @@ void SmartStrip::progressBar(int min, int max, int val) // update strip for (int i = 14; i >= level; i--) { - leds[i].setRGB(0, 0, 1); + leds[i].setRGB(3, 3, 3); FastLED.show(); FastLED.show(); }