From fd121cf539959b325a00c2904fdc0df63816bdd1 Mon Sep 17 00:00:00 2001 From: jaybird101 Date: Sun, 4 Feb 2024 13:27:56 -0500 Subject: [PATCH 1/2] Update config.h with amber LED hex Change OR_HEX_COLOR from FF8000 to FF00FF to reflect a more "amber" color (closer to orange). --- DCTransistor/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DCTransistor/config.h b/DCTransistor/config.h index 37ffd4c..63dc423 100644 --- a/DCTransistor/config.h +++ b/DCTransistor/config.h @@ -50,7 +50,7 @@ //Pick own colors using a tool like https://www.w3schools.com/colors/colors_picker.asp #define RD_HEX_COLOR 0x00FF0000 #define BL_HEX_COLOR 0x000000FF -#define OR_HEX_COLOR 0x00FF8000 +#define OR_HEX_COLOR 0x00FF00FF #define SV_HEX_COLOR 0x00FFFFFF #define YL_HEX_COLOR 0x00FFFF00 #define GN_HEX_COLOR 0x0000FF00 From f96cb66dcde5f9915fe48809141dac47a473aed0 Mon Sep 17 00:00:00 2001 From: LArkema Date: Sun, 18 Feb 2024 10:24:19 -0800 Subject: [PATCH 2/2] Change color for both boards and use proper color change --- DCTransistor-Bidirectional/config.h | 4 ++-- DCTransistor/config.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DCTransistor-Bidirectional/config.h b/DCTransistor-Bidirectional/config.h index c0e8d51..9e7430c 100644 --- a/DCTransistor-Bidirectional/config.h +++ b/DCTransistor-Bidirectional/config.h @@ -44,13 +44,13 @@ #define WIFI_PASSWORD "trainsareneat" // ---- LED Configuration Values ---- -#define LED_BRIGHTNESS 2 //Range of 0-100. Can get very bright very fast +#define LED_BRIGHTNESS 3 //Range of 0-100. Can get very bright very fast //Define LED color for each train line. Defined as WWRRGGBB values where white (first byte) is always set to 0. //Pick own colors using a tool like https://www.w3schools.com/colors/colors_picker.asp #define RD_HEX_COLOR 0x00FF0000 #define BL_HEX_COLOR 0x000000FF -#define OR_HEX_COLOR 0x00FF8000 +#define OR_HEX_COLOR 0x00FF4000 #define SV_HEX_COLOR 0x00808080 #define YL_HEX_COLOR 0x00FFFF00 #define GN_HEX_COLOR 0x0000FF00 diff --git a/DCTransistor/config.h b/DCTransistor/config.h index f4ff039..2605391 100644 --- a/DCTransistor/config.h +++ b/DCTransistor/config.h @@ -44,13 +44,13 @@ #define WIFI_PASSWORD "trainsareneat" // ---- LED Configuration Values ---- -#define LED_BRIGHTNESS 2 //Range of 0-100. Can get very bright very fast +#define LED_BRIGHTNESS 3 //Range of 0-100. Can get very bright very fast //Define LED color for each train line. Defined as WWRRGGBB values where white (first byte) is always set to 0. //Pick own colors using a tool like https://www.w3schools.com/colors/colors_picker.asp #define RD_HEX_COLOR 0x00FF0000 #define BL_HEX_COLOR 0x000000FF -#define OR_HEX_COLOR 0x00FF00FF +#define OR_HEX_COLOR 0x00FF4000 #define SV_HEX_COLOR 0x00FFFFFF #define YL_HEX_COLOR 0x00FFFF00 #define GN_HEX_COLOR 0x0000FF00