From 77859bea2261040a62d70be888b9271a2ea88450 Mon Sep 17 00:00:00 2001 From: MallocArray Date: Mon, 16 Jun 2025 20:38:19 -0500 Subject: [PATCH] Correct Yellow and Orange LED colors --- src/AgStateMachine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AgStateMachine.cpp b/src/AgStateMachine.cpp index 8af3238..13d51d6 100644 --- a/src/AgStateMachine.cpp +++ b/src/AgStateMachine.cpp @@ -11,8 +11,8 @@ #define RGB_COLOR_R 255, 0, 0 /** Red */ #define RGB_COLOR_G 0, 255, 0 /** Green */ -#define RGB_COLOR_Y 255, 150, 0 /** Yellow */ -#define RGB_COLOR_O 255, 40, 0 /** Orange */ +#define RGB_COLOR_Y 255, 255, 0 /** Yellow */ +#define RGB_COLOR_O 255, 128, 0 /** Orange */ #define RGB_COLOR_P 180, 0, 255 /** Purple */ #define RGB_COLOR_CLEAR 0, 0, 0 /** No color */