Skip to content
Merged
Changes from 2 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 Gemma/GemmaM0_Band_Jacket/DiscoBandCamp/DiscoBandCamp.ino
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ const byte numEffects = (sizeof(effectList)/sizeof(effectList[0]));
void setup() {

//Add the onboard Strip on the Right and Left to create a single array
FastLED.addLeds<CHIPSET, LEFT_PIN, COLOR_ORDER>(leds, 0, NUM_LEFT);
FastLED.addLeds<CHIPSET, RIGHT_PIN, COLOR_ORDER>(leds, NUM_LEFT, NUM_RIGHT);
FastLED.addLeds<CHIPSET, LEFT_PIN, COLOR_ORDER>(leds, LEFT_PIN, NUM_LEFT); // See https://github.com/fastled/fastled/wiki/basic-usage
FastLED.addLeds<CHIPSET, RIGHT_PIN, COLOR_ORDER>(leds, RIGHT_PIN, NUM_RIGHT);

// set global brightness value
FastLED.setBrightness( scale8(currentBrightness, MAXBRIGHTNESS) );
Expand Down
Loading