Oliver,
Thanks for the link, the font style "digitalnumbers_68_tn" is perfect for this project, however it is just about one size too big to fit 4 digits onto my display.
Can you possibly explain how I can reduce the size a little bit? I tried a few things but couldn't get results.
BTW, I added the font file you posted into the u8g2_fonts.c library and kept getting errors until I finally added the font name to the u8g2.h font list. Then everything loaded without error.
Here is your font file you posted in the other forum thread:
const uint8_t digitalnumbers_68_tn[347] U8G2_FONT_SECTION("digitalnumbers_68_tn") =
"\13\0\5\6\5\6\4\2\7\36+\0\0+\0+\0\0\0\0\0\1B \6\0\300\241\0\60%{"
"]\303\342\62\62\341\7.Q\371\377b!\14\346`\4j`\14\346 \24\242\362\377\305\37\270\204\314\270"
"\10\0\61\27E\365\245\42\60\6\341\7\66a\60\2c\20~\300\22\6# \0\62$ze\303\302\62"
"\60A\23\62\2S\213\377o\134\4&`\211\313 X\342\377Y\214\310\4M\300\14\213\0\0\63\37y"
"m\303\242\62.!\23\60\342B\213\377O\134\302\325\270\242\305\377'.!\26.\243\42\0\64\35[\335"
"\303\42P\3c\60\7\241\20\225\377\277\250\13\231\221e\213\377\277;\310\1\1\0\65\42{]\303\342\62"
"\62\241\26\62\242`\213\377g\63B\23\66A#\62\266\370\377D&\324Bf\134\4\0\66 {]\303"
"\342\62\62\241\26\62\242`\213\377w\61\4\63\62A\27\225\377\27\x7f\340\22\62\343\42\0\67\36Z\345\303"
"\302\62\60A\23\62\2S\213\377\317\16p\0\17l\241\26\377\377\354\0\7\4\0\70 {]\303\342\62"
"\62\341\7.Q\371\x7f\21\24\62\343\62\62\1\24\225\377\27\x7f\340\22\62\343\42\0\71\36{]\303\342\62"
"\62\341\7.Q\371\x7fQ\27\62#\313\26\377\237\310\204Z\310\214\213\0\0\0\0\0";
For anyone else having build errors, I added this line to the clib u8g2.h file font list and everything works great for me:
extern const uint8_t u8g2_font_digitalnumbers_68_tn[] U8G2_FONT_SECTION("u8g2_font_digitalnumbers_68_tn");
Thank you Oliver very much for all your hard work on this library!
Vince