1
0

Include the Stalker LED effect too

Set it to the BlazingTrail variant, because that looks much better.

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
This commit is contained in:
Gergely Nagy 2017-03-02 20:42:41 +01:00
parent 3091c6b403
commit 5ef42552a5

View File

@ -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,6 +134,7 @@ void setup() {
Kaleidoscope.use(&TestMode,
&LEDControl, &LEDOff,
&StalkerEffect,
&solidRed, &solidOrange, &solidYellow, &solidGreen, &solidBlue, &solidIndigo, &solidViolet,
&LEDBreatheEffect, &LEDRainbowEffect, &LEDRainbowWaveEffect, &LEDChaseEffect, &NumLock,
@ -140,6 +142,7 @@ void setup() {
&MouseKeys,
NULL);
StalkerEffect.configure (STALKER (BlazingTrail, NULL));
LEDOff.activate();
}