Skip to content

Commit

Permalink
Add AlphaSquare effect to the default firmware.
Browse files Browse the repository at this point in the history
  • Loading branch information
obra committed Mar 21, 2017
1 parent 14666f8 commit a092761
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Model01-Firmware.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include "Kaleidoscope-LEDEffect-Chase.h"
#include "Kaleidoscope-LEDEffect-Rainbow.h"
#include "Kaleidoscope-LED-Stalker.h"
#include "Kaleidoscope-LED-AlphaSquare.h"
#include "Kaleidoscope-Model01-TestMode.h"


Expand Down Expand Up @@ -134,14 +135,17 @@ void setup() {

Kaleidoscope.use(&TestMode,
&LEDControl, &LEDOff,
&StalkerEffect,
&solidRed, &solidOrange, &solidYellow, &solidGreen, &solidBlue, &solidIndigo, &solidViolet,
&LEDBreatheEffect, &LEDRainbowEffect, &LEDRainbowWaveEffect, &LEDChaseEffect, &NumLock,
&LEDBreatheEffect, &LEDRainbowEffect, &LEDRainbowWaveEffect, &LEDChaseEffect,
&AlphaSquareEffect,
&StalkerEffect,
&NumLock,

&Macros,
&MouseKeys,
NULL);

AlphaSquare.color = { 255,0,0 };
StalkerEffect.configure (STALKER (BlazingTrail, NULL));
LEDOff.activate();
}
Expand Down

0 comments on commit a092761

Please sign in to comment.