From 511fe643c2ac902e8d42f87bffccdf4aaab700d1 Mon Sep 17 00:00:00 2001 From: Takeshi ISHII <2170248+mtei@users.noreply.github.com> Date: Sat, 11 Apr 2020 17:41:12 +0900 Subject: [PATCH] =?UTF-8?q?[Keymap]=20fix=20OLED=20display=20on=20Helix=20?= =?UTF-8?q?keyboard=20keymaps=20default=20and=E2=80=A6=20(#8737)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since #7773, the mode number of RGBlight is no longer displayed on the Helix OLEDs. I fixed this. --- keyboards/helix/rev2/keymaps/default/keymap.c | 4 ++-- keyboards/helix/rev2/keymaps/five_rows/keymap.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/keyboards/helix/rev2/keymaps/default/keymap.c b/keyboards/helix/rev2/keymaps/default/keymap.c index 78e3424fd..c575287ee 100644 --- a/keyboards/helix/rev2/keymaps/default/keymap.c +++ b/keyboards/helix/rev2/keymaps/default/keymap.c @@ -536,9 +536,9 @@ static void render_logo(struct CharacterMatrix *matrix) { } static void render_rgbled_status(bool full, struct CharacterMatrix *matrix) { -#if defined(RGBLIGHT_ENABLE) && defined(RGBLIGHT_ANIMATIONS) +#ifdef RGBLIGHT_ENABLE char buf[30]; - if(rgblight_config.enable) { + if (RGBLIGHT_MODES > 1 && rgblight_config.enable) { if (full) { snprintf(buf, sizeof(buf), " LED %2d: %d,%d,%d ", rgblight_config.mode, diff --git a/keyboards/helix/rev2/keymaps/five_rows/keymap.c b/keyboards/helix/rev2/keymaps/five_rows/keymap.c index eb73881c6..fcc5c4bbe 100644 --- a/keyboards/helix/rev2/keymaps/five_rows/keymap.c +++ b/keyboards/helix/rev2/keymaps/five_rows/keymap.c @@ -496,9 +496,9 @@ static void render_logo(struct CharacterMatrix *matrix) { 0xc0,0xc1,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0xce,0xcf,0xd0,0xd1,0xd2,0xd3,0xd4, 0}; matrix_write(matrix, logo); -#if defined(RGBLIGHT_ENABLE) && defined(RGBLIGHT_ANIMATIONS) +#ifdef RGBLIGHT_ENABLE char buf[30]; - if(rgblight_config.enable) { + if (RGBLIGHT_MODES > 1 && rgblight_config.enable) { snprintf(buf, sizeof(buf), " LED %2d: %d,%d,%d ", rgblight_config.mode, rgblight_config.hue/RGBLIGHT_HUE_STEP,