#include #include #include struct X { uint8_t data[4]; }; const struct X font[] = { {{0x1f, 0x11, 0x11, 0x1f}}, {{0x02, 0x05, 0x02, 0x00}}, {{0x00, 0x04, 0x04, 0x04}}, {{0x0e, 0x11, 0x11, 0x0a}}, {{0x1f, 0x05, 0x05, 0x02}}, {{0x1f, 0x01, 0x02, 0x1f}}, {{0x00, 0x18, 0x18, 0x00}}, }; void main() { printf("const char* symbols[] = {\n"); for(int c = 0; c < 7; c++) { printf(" // %d \"%c\"\n", c+'0', c+'0'); for(int j=0;j<5;j++){ printf(" \""); for(int k=0;k<4;k++){ if (font[c].data[k]& (1<