Migrate to Kaleidoscope.use()

Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
pull/365/head
Gergely Nagy 7 years ago
parent 8055b0936e
commit efa9cdf291

@ -22,7 +22,7 @@ To use the plugin, one needs to include the header and select the effect.
#include <Kaleidoscope-LED-Stalker.h>
void setup (){
USE_PLUGINS(&StalkerEffect);
Kaleidoscope.use(&StalkerEffect);
Kaleidoscope.setup();

@ -41,7 +41,7 @@ const Key keymaps[][ROWS][COLS] PROGMEM = {
};
void setup() {
USE_PLUGINS(&LEDOff, &StalkerEffect);
Kaleidoscope.use(&LEDOff, &StalkerEffect);
Kaleidoscope.setup();

Loading…
Cancel
Save