Add proportional font adjustment ratio
- update example configs
This commit is contained in:
parent
192db2ab1b
commit
2604742191
25 changed files with 234 additions and 4 deletions
|
|
@ -33,4 +33,4 @@ void serial_echopair_P(const char* s_P, float v) { serialprintPGM(s_P);
|
|||
void serial_echopair_P(const char* s_P, double v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
|
||||
void serial_echopair_P(const char* s_P, unsigned long v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
|
||||
|
||||
void serial_spaces(uint8_t count) { while (count--) MYSERIAL.write(' '); }
|
||||
void serial_spaces(uint8_t count) { count *= (PROPORTIONAL_FONT_RATIO); while (count--) MYSERIAL.write(' '); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue