Skip to content

Commit

Permalink
Set special train colors for holiday train
Browse files Browse the repository at this point in the history
  • Loading branch information
LArkema committed Dec 5, 2024
1 parent 8f6716e commit 76d5533
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
10 changes: 7 additions & 3 deletions DCTransistor-Bidirectional/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <time.h>

//Version string. Changes with every software version
#define VERSION "2.0.7"
#define VERSION "2.0.8"

/*
* USER CONFIGURATION VALUES
Expand Down Expand Up @@ -63,9 +63,13 @@

// Led Configuration for special promotional trains. Will only show up if campaign is active

// Holidays Special Trains
#define SPECIAL_TRAIN_HEX_COUNT 2
const uint32_t SPECIAL_TRAIN_HEX[SPECIAL_TRAIN_HEX_COUNT] = {RD_HEX_COLOR, GN_HEX_COLOR};

// 4th of July Special Trains
#define SPECIAL_TRAIN_HEX_COUNT 3
const uint32_t SPECIAL_TRAIN_HEX[SPECIAL_TRAIN_HEX_COUNT] = {RD_HEX_COLOR, SV_HEX_COLOR, BL_HEX_COLOR};
// #define SPECIAL_TRAIN_HEX_COUNT 3
// const uint32_t SPECIAL_TRAIN_HEX[SPECIAL_TRAIN_HEX_COUNT] = {RD_HEX_COLOR, SV_HEX_COLOR, BL_HEX_COLOR};

// Pride Special Train
// #define SPECIAL_TRAIN_HEX_COUNT 8
Expand Down
10 changes: 7 additions & 3 deletions DCTransistor/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include <time.h>

//Version string. Changes with every software version
#define VERSION "2.0.7"
#define VERSION "2.0.8"

/*
* USER CONFIGURATION VALUES
Expand Down Expand Up @@ -62,9 +62,13 @@

// Led Configuration for special promotional trains. Will only show up if campaign is active

// Holidays Special Trains
#define SPECIAL_TRAIN_HEX_COUNT 2
const uint32_t SPECIAL_TRAIN_HEX[SPECIAL_TRAIN_HEX_COUNT] = {RD_HEX_COLOR, GN_HEX_COLOR};

// 4th of July Special Trains
#define SPECIAL_TRAIN_HEX_COUNT 3
const uint32_t SPECIAL_TRAIN_HEX[SPECIAL_TRAIN_HEX_COUNT] = {RD_HEX_COLOR, SV_HEX_COLOR, BL_HEX_COLOR};
// #define SPECIAL_TRAIN_HEX_COUNT 3
// const uint32_t SPECIAL_TRAIN_HEX[SPECIAL_TRAIN_HEX_COUNT] = {RD_HEX_COLOR, SV_HEX_COLOR, BL_HEX_COLOR};

// Pride Special Train
// #define SPECIAL_TRAIN_HEX_COUNT 8
Expand Down

0 comments on commit 76d5533

Please sign in to comment.