OLED: increas text font size

This commit is contained in:
King Kévin 2020-01-04 17:59:58 +01:00
parent a2f83e87b3
commit e1a3ebb5ef
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ void oled_text_line(const char* text, uint8_t line_nb)
oled_text_display[i] = 0;
}
oled_text_pos(0, 13 + 16 * line_nb, FONT_KING10, text); // draw text on the left of top line
oled_text_pos(0, 15 + 16 * line_nb, FONT_KING14, text); // draw text on the left of top line
}
void oled_text_update(void)