[Keyboard][Helix] enable encoder map (#22488)

Co-authored-by: Drashna Jaelre <drashna@live.com>
This commit is contained in:
MakotoKurauchi 2023-12-05 17:19:24 +09:00 committed by GitHub
parent 77a1760eb5
commit 4b66fcb0e1
3 changed files with 12 additions and 18 deletions

View file

@ -62,7 +62,7 @@ void render_status(void) {
break;
default:
// Or use the write_ln shortcut over adding '\n' to the end of your string
oled_write_ln_P(PSTR("Undefined"), false);
oled_write_ln_P(PSTR("N/A"), false);
}
oled_write_P(PSTR("\n"), false);
@ -71,7 +71,6 @@ void render_status(void) {
led_t led_state = host_keyboard_led_state();
oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR(" "), false);
oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR(" "), false);
oled_write_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR(" "), false);
}