TODO feature: Import from a text array; Little Export fix

This commit is contained in:
2025-05-27 02:44:42 +03:00
parent 295b079dab
commit c892e3076d
8 changed files with 595 additions and 42 deletions

View File

@@ -15,17 +15,18 @@
// Numbers per line: 1 Column per line
// Font header map:
// packed; // Flag for packed font// width; // Font width in pixels (0 - variable width)
// packed; // Flag for packed font
// width; // Font width in pixels (0 - variable width)
// height; // Font height in pixels
// space; // Font space in pixels
// first; // First character code
// last; // Last character code
const uint8_t Untitled[] = {
const uint8_t test16x16[] = {
// Meta header
0, // Is it a packed font?
0, // Font width in pixels; 0 - variable width
16, // Font width in pixels; 0 - variable width
16, // Font height in pixels
0, // Font space (between symbols) in pixels
0, // First character code
@@ -33,7 +34,7 @@ const uint8_t Untitled[] = {
// Data:
0xfc, 0x1f,
0x00, 0x30,
0x0c, 0x60,
0x0c, 0xe0,
0x06, 0x1c,
0x02, 0x36,
0x32, 0x23,
@@ -44,7 +45,7 @@ const uint8_t Untitled[] = {
0x64, 0x20,
0x3c, 0x30,
0x00, 0x10,
0x1e, 0x20,
0x1f, 0x20,
0xf0, 0x3f,
0x00, 0x00
0x00, 0x20
};