From fcdc4e4b5563b37abdd9ffd040f24468794a01cb Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Fri, 27 Jan 2017 09:24:54 +0100 Subject: [PATCH] Use LEDControl in the example Since the example deals with LEDs, use the LEDControl plugin too. Signed-off-by: Gergely Nagy --- examples/GhostInTheFirmware/GhostInTheFirmware.ino | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/GhostInTheFirmware/GhostInTheFirmware.ino b/examples/GhostInTheFirmware/GhostInTheFirmware.ino index 15edbfc5..73beba65 100644 --- a/examples/GhostInTheFirmware/GhostInTheFirmware.ino +++ b/examples/GhostInTheFirmware/GhostInTheFirmware.ino @@ -18,6 +18,7 @@ #include #include +#include #include const Key keymaps[][ROWS][COLS] PROGMEM = { @@ -123,7 +124,8 @@ void setup () { GhostInTheFirmware.configure (ghostKeys); StalkerEffect.configure (STALKER (BlazingTrail, NULL)); - Keyboardio.use (&GhostInTheFirmware, &StalkerEffect, &Macros, NULL); + Keyboardio.use (&LEDControl, &GhostInTheFirmware, &StalkerEffect, &Macros, + NULL); }