Skip to content

Commit

Permalink
bug fix in DEMO_COLORS
Browse files Browse the repository at this point in the history
  • Loading branch information
igrowing authored Feb 26, 2019
1 parent f1ab3d3 commit b01373c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ino
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RTC_DS1307 RTC; // Establishes the chipset of the Real Time Clock
#define FADE_TIME_MS 60000

struct CRGB leds[NUM_LEDS]; // Setting up the LED strip
const CRGB DEMO_COLORS[] = {CRGB::Black, CRGB::Red, CRGB::Red, CRGB::Green, CRGB::Green, CRGB::Blue, CRGB::White, CRGB::White};
const CRGB DEMO_COLORS[9] = {CRGB::Black, CRGB::Red, CRGB::Red, CRGB::Green, CRGB::Green, CRGB::Blue, CRGB::Blue, CRGB::White, CRGB::White};
Encoder rotary1(PIN2, PIN3); // Setting up the Rotary Encoder

DateTime old; // Variable to compare new and old time, to see if it has moved on.
Expand Down

0 comments on commit b01373c

Please sign in to comment.