Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add via support and fix info.json #10690

Merged
merged 6 commits into from
Oct 23, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update keymap.c
  • Loading branch information
rezaadio committed Oct 19, 2020
commit a58bac8f10eb08a33329ca1a1b3a2d06074d74fa
7 changes: 5 additions & 2 deletions keyboards/rart/rartlice/keymaps/via/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,15 @@ void oled_task_user(void) {
case 0:
oled_write_P(PSTR("Default\n"), false);
break;
case 2:
case 1:
oled_write_P(PSTR("Fn\n"), false);
break;
case 3:
case 2:
oled_write_P(PSTR("Layer 3\n"), false);
break;
case 2:
oled_write_P(PSTR("Layer 4\n"), false);
break;
default:
// Or use the write_ln shortcut over adding '\n' to the end of your string
oled_write_ln_P(PSTR("Undifined\n"), false);
Expand Down