Skip to content

Commit

Permalink
[Keymap] fix OLED display on Helix keyboard keymaps default and… (qmk…
Browse files Browse the repository at this point in the history
…#8737)

Since qmk#7773, the mode number of RGBlight is no longer displayed on the Helix OLEDs. I fixed this.
  • Loading branch information
mtei authored and lorenzoernesto committed May 15, 2020
1 parent e70536c commit da3a8f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions keyboards/helix/rev2/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions keyboards/helix/rev2/keymaps/five_rows/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit da3a8f7

Please sign in to comment.