From b0c587610039c0ebc630ee4bce02d65b3001c921 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Thu, 17 Aug 2017 11:57:14 +0200 Subject: [PATCH] Stop using USE_PLUGINS Use `Kaleidoscope.use` instead, because `USE_PLUGINS` is getting deprecated. Signed-off-by: Gergely Nagy --- README.md | 2 +- examples/HostOS/HostOS.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 81118a0e..c5bd2407 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ void someFunction(void) { } void setup(void) { - USE_PLUGINS(&HostOS); + Kaleidoscope.use(&HostOS); Kaleidoscope.setup (); } diff --git a/examples/HostOS/HostOS.ino b/examples/HostOS/HostOS.ino index 264898fa..a7c8c5ec 100644 --- a/examples/HostOS/HostOS.ino +++ b/examples/HostOS/HostOS.ino @@ -41,7 +41,7 @@ const Key keymaps[][ROWS][COLS] PROGMEM = { void setup() { Serial.begin(9600); - USE_PLUGINS(&HostOS); + Kaleidoscope.use(&HostOS); Kaleidoscope.setup();