Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update config.h with amber LED hex #3

Merged
merged 3 commits into from
Feb 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DCTransistor-Bidirectional/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions DCTransistor/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 0x00FFFFFF
#define YL_HEX_COLOR 0x00FFFF00
#define GN_HEX_COLOR 0x0000FF00
Expand Down
Loading