From a5d3a9ff374fbe43fba6f191b3ff369431aba184 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Thu, 17 Aug 2017 00:39:12 +0200 Subject: [PATCH] Updated to use Kaleidoscope.use instead of USE_PLUGINS Signed-off-by: Gergely Nagy --- README.md | 2 +- examples/Heatmap/Heatmap.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index daeec258..43a45d3e 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ include the header, and make sure the plugin is in use: #include void setup() { - USE_PLUGINS(&HeatmapEffect); + Kaleidoscope.use(&HeatmapEffect); Kaleidoscope.setup (); } diff --git a/examples/Heatmap/Heatmap.ino b/examples/Heatmap/Heatmap.ino index 25b24070..882f33bf 100644 --- a/examples/Heatmap/Heatmap.ino +++ b/examples/Heatmap/Heatmap.ino @@ -40,7 +40,7 @@ const Key keymaps[][ROWS][COLS] PROGMEM = { }; void setup() { - USE_PLUGINS(&HeatmapEffect); + Kaleidoscope.use(&HeatmapEffect); Kaleidoscope.setup();