/* Copyright 2021, tslil clingman This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include /* 4x4 pixel blocks and 64x64 pixel blocks means 16x16 resolution These are packed 8 into a byte, so 2 * 16 * 10 = 320 bytes The packing is as follows: b7 b6 b5 b4 b3 b2 b1 b0 --> b0 b2 b4 b6 b1 b3 b5 b7 */ PROGMEM const uint8_t font[320] = { 0x0, 0x50, 0x5, 0x0, 0x40, 0xA, 0xA0, 0x1, 0x90, 0x0, 0x0, 0x6, 0x30, 0x0, 0x0, 0xC, 0x30, 0x0, 0x0, 0xC, 0x60, 0x0, 0x0, 0x9, 0x80, 0x5, 0x50, 0x2, 0x0, 0xA0, 0xA, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x90, 0x3, 0x0, 0x0, 0x8, 0x3, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x50, 0x1, 0x0, 0x0, 0x8, 0x18, 0x0, 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0xC0, 0x0, 0x0, 0x0, 0x90, 0x0, 0x0, 0x0, 0x24, 0x0, 0x0, 0xA4, 0x2, 0x0, 0x0, 0xA8, 0xAA, 0x0, 0x0, 0x50, 0x5, 0x0, 0x0, 0x0, 0x60, 0x0, 0x0, 0x0, 0x90, 0x0, 0x0, 0xA0, 0x1A, 0x0, 0x0, 0x0, 0xC0, 0x0, 0x0, 0x0, 0xC0, 0x0, 0x0, 0x0, 0x90, 0x0, 0x0, 0xA0, 0xA, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x40, 0xE, 0x0, 0x0, 0x90, 0xC, 0x0, 0x0, 0x24, 0xC, 0x0, 0x0, 0x9, 0xC, 0x0, 0x0, 0xAA, 0x2E, 0x0, 0x0, 0x0, 0xC, 0x0, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xD0, 0xAA, 0x0, 0x0, 0x70, 0x15, 0x0, 0x0, 0x0, 0xC0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0xC0, 0x0, 0x0, 0xA0, 0x2A, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40, 0xA, 0x0, 0x0, 0x24, 0x0, 0x0, 0x0, 0x53, 0x15, 0x0, 0x0, 0xB, 0x80, 0x1, 0x0, 0x3, 0x0, 0x3, 0x0, 0x6, 0x40, 0x2, 0x0, 0xA0, 0x2A, 0x0, 0x0, 0x55, 0x55, 0x0, 0x0, 0x3, 0x90, 0x0, 0x0, 0x0, 0x30, 0x0, 0x0, 0x0, 0xC, 0x0, 0x0, 0x0, 0x9, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0xC0, 0x0, 0x0, 0x0, 0x80, 0x0, 0x0, 0x0, 0x50, 0x5, 0x0, 0x0, 0xC, 0x30, 0x0, 0x0, 0xC, 0x30, 0x0, 0x0, 0xA5, 0x5A, 0x0, 0xC0, 0x0, 0x0, 0x3, 0xC0, 0x0, 0x0, 0x3, 0x80, 0x1, 0x40, 0x2, 0x0, 0xA8, 0x2A, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xA4, 0x1A, 0x0, 0x0, 0x3, 0xC0, 0x0, 0x0, 0x3, 0xC0, 0x0, 0x0, 0x58, 0xB5, 0x0, 0x0, 0x0, 0x24, 0x0, 0x0, 0x40, 0x2, 0x0, 0x0, 0x80, 0x0, 0x0};