aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Vincent <jesse@fsck.com>2017-03-03 10:55:47 +0800
committerGitHub <noreply@github.com>2017-03-03 10:55:47 +0800
commit245d52b61072511f55c6572bcc9c381ca2223744 (patch)
treefda6ae20082f0cfdc62813066591e35a98e02fb6
parentremove the builder, since we can now use the systemwide one in the hardware dir (diff)
parentInclude the Stalker LED effect too (diff)
downloadkeyboardio-model01-245d52b61072511f55c6572bcc9c381ca2223744.tar.gz
keyboardio-model01-245d52b61072511f55c6572bcc9c381ca2223744.tar.bz2
keyboardio-model01-245d52b61072511f55c6572bcc9c381ca2223744.zip
Merge pull request #2 from algernon/f/more-led-effects
Adds RainbowWave & Stalker / BlazingTrail effects
-rw-r--r--Model01-Firmware.ino5
1 files changed, 4 insertions, 1 deletions
diff --git a/Model01-Firmware.ino b/Model01-Firmware.ino
index 238d2ba..f16bcaf 100644
--- a/Model01-Firmware.ino
+++ b/Model01-Firmware.ino
@@ -15,6 +15,7 @@
#include "Kaleidoscope-LEDEffect-Breathe.h"
#include "Kaleidoscope-LEDEffect-Chase.h"
#include "Kaleidoscope-LEDEffect-Rainbow.h"
+#include "Kaleidoscope-LED-Stalker.h"
#include "Kaleidoscope-Model01-TestMode.h"
@@ -133,13 +134,15 @@ void setup() {
Kaleidoscope.use(&TestMode,
&LEDControl, &LEDOff,
+ &StalkerEffect,
&solidRed, &solidOrange, &solidYellow, &solidGreen, &solidBlue, &solidIndigo, &solidViolet,
- &LEDBreatheEffect, &LEDRainbowEffect, &LEDChaseEffect, &NumLock,
+ &LEDBreatheEffect, &LEDRainbowEffect, &LEDRainbowWaveEffect, &LEDChaseEffect, &NumLock,
&Macros,
&MouseKeys,
NULL);
+ StalkerEffect.configure (STALKER (BlazingTrail, NULL));
LEDOff.activate();
}