Skip to content

Commit 22a8987

Browse files
committed
Fixed some errors with logic.
1 parent eaeca03 commit 22a8987

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

LEDControllerSource.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
#define DATA_PIN 9 // Pin which the data cable is connected.
77
#define MAX_BRIGHTNESS 255 // Max Brightness (Default 255)
88
#define LED_CHIPSET TM1803 // LED Chipset.
9-
#define COLOR_ORDER GBR; // Color order (RGB, RBG, BGR, BRG, GRB, GBR) See FastLED examples (RGB Calibration) for finding correct order.
9+
#define COLOR_ORDER GBR // Color order (RGB, RBG, BGR, BRG, GRB, GBR) See FastLED examples (RGB Calibration) for finding correct order.
1010

1111
//DEMO_MODE mode includes many flashing features and random colors, turning this off loops a gentle rainbow effect for at home use.
12-
#define DEMO_MODE true;
12+
#define DEMO_MODE true
1313

1414
//Not currently functional. (Future feature will react to currently playing music, may require additional hardware).
15-
#define MUSIC_MODE false;
15+
#define MUSIC_MODE false
1616

1717
// This is only used for debugging functions and testing other stuff.
18-
#define DEBUG_MODE false;
18+
#define DEBUG_MODE false
1919

2020
//Global Variables.
2121
CRGB leds[NUM_LEDS];

0 commit comments

Comments
 (0)