From 9e1c9e35f4897a308276120b66bcf6998b3a6b90 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Tue, 24 May 2022 16:23:50 +0200 Subject: [PATCH] plugins/LED-Wavepool: Enable the plugin for the Model 100 too The plugin was restricted to the Model01, because it depends on a very specific key coordinate -> geometric shape mapping. Because the Model 01 and the Model 100 share this mapping, we can safely enable the plugin for the latter, too. Signed-off-by: Gergely Nagy --- .../src/kaleidoscope/plugin/LED-Wavepool.cpp | 2 +- .../src/kaleidoscope/plugin/LED-Wavepool.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Kaleidoscope-LED-Wavepool/src/kaleidoscope/plugin/LED-Wavepool.cpp b/plugins/Kaleidoscope-LED-Wavepool/src/kaleidoscope/plugin/LED-Wavepool.cpp index e57803a8..25ba2625 100644 --- a/plugins/Kaleidoscope-LED-Wavepool/src/kaleidoscope/plugin/LED-Wavepool.cpp +++ b/plugins/Kaleidoscope-LED-Wavepool/src/kaleidoscope/plugin/LED-Wavepool.cpp @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -#ifdef ARDUINO_AVR_MODEL01 +#if defined(ARDUINO_AVR_MODEL01) || defined(ARDUINO_keyboardio_model_100) #include "kaleidoscope/plugin/LED-Wavepool.h" diff --git a/plugins/Kaleidoscope-LED-Wavepool/src/kaleidoscope/plugin/LED-Wavepool.h b/plugins/Kaleidoscope-LED-Wavepool/src/kaleidoscope/plugin/LED-Wavepool.h index 55a63728..de72ce7c 100644 --- a/plugins/Kaleidoscope-LED-Wavepool/src/kaleidoscope/plugin/LED-Wavepool.h +++ b/plugins/Kaleidoscope-LED-Wavepool/src/kaleidoscope/plugin/LED-Wavepool.h @@ -18,7 +18,7 @@ #pragma once -#ifdef ARDUINO_AVR_MODEL01 +#if defined(ARDUINO_AVR_MODEL01) || defined(ARDUINO_keyboardio_model_100) #include // for PROGMEM #include // for uint8_t, int16_t, int8_t, INT16_MAX