diff options
author | Jesse Vincent <jesse@fsck.com> | 2017-03-03 10:55:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-03 10:55:47 +0800 |
commit | 245d52b61072511f55c6572bcc9c381ca2223744 (patch) | |
tree | fda6ae20082f0cfdc62813066591e35a98e02fb6 /Model01-Firmware.ino | |
parent | remove the builder, since we can now use the systemwide one in the hardware dir (diff) | |
parent | Include the Stalker LED effect too (diff) | |
download | keyboardio-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
Diffstat (limited to 'Model01-Firmware.ino')
-rw-r--r-- | Model01-Firmware.ino | 5 |
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(); } |