Skip to content

Commit

Permalink
merge/uma - Resolve configurator issues (#16551)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvecr authored Mar 6, 2022
1 parent 16cd1d9 commit 30209de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keyboards/merge/uma/uma.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ static const char PROGMEM merge_logo[] = {
0x01, 0x00, 0x01, 0x01, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00
};

int current_wpm = 0;

static void print_status_narrow(void) {
oled_set_cursor(0,1);
oled_write_raw_P(merge_logo, sizeof(merge_logo));
Expand Down Expand Up @@ -86,13 +84,15 @@ static void print_status_narrow(void) {
//oled_write_ln_P(PSTR(" "), false);
oled_write_P(PSTR("-----"), false);

#ifdef WPM_ENABLE
// WPM counter Start
oled_set_cursor(0,13);
oled_write(" ", false);
oled_write(get_u8_str(get_current_wpm(), '0'), false);
oled_set_cursor(0,14);
oled_write(" WPM ", false);
// WPM counter End
#endif
}

bool oled_task_kb(void) {
Expand Down

0 comments on commit 30209de

Please sign in to comment.