Stop using USE_PLUGINS

Use `Kaleidoscope.use` instead, because `USE_PLUGINS` is getting deprecated.

Signed-off-by: Gergely Nagy <kaleidoscope@gergo.csillger.hu>
pull/389/head
Gergely Nagy 7 years ago
parent d5a4200008
commit b0c5876100

@ -51,7 +51,7 @@ void someFunction(void) {
} }
void setup(void) { void setup(void) {
USE_PLUGINS(&HostOS); Kaleidoscope.use(&HostOS);
Kaleidoscope.setup (); Kaleidoscope.setup ();
} }

@ -41,7 +41,7 @@ const Key keymaps[][ROWS][COLS] PROGMEM = {
void setup() { void setup() {
Serial.begin(9600); Serial.begin(9600);
USE_PLUGINS(&HostOS); Kaleidoscope.use(&HostOS);
Kaleidoscope.setup(); Kaleidoscope.setup();

Loading…
Cancel
Save