[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 6fb9de6cbb
commit 65fb7224d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 22 additions and 34 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);
}