User manual

127 128
1064, /* 428 - i 0069 105 */
1078, /* 436 - j 006A 106 */
1092, /* 444 - k 006B 107 */
1106, /* 452 - l 006C 108 */
1120, /* 460 - m 006D 109 */
1134, /* 46E - n 006E 110 */
1148, /* 47C - o 006F 111 */
1162, /* 48A - p 0070 112 */
1176, /* 498 - q 0071 113 */
1190, /* 4A6 - r 0072 114 */
1204, /* 4B4 - s 0073 115 */
1218, /* 4C2 - t 0074 116 */
1232, /* 4D0 - u 0075 117 */
1246, /* 4DE - v 0076 118 */
1260, /* 4EC - w 0077 119 */
1288, /* 508 - x 0078 120 */
1302, /* 516 - y 0079 121 */
1316, /* 524 - z 007A 122 */
1330, /* 532 - { 007B 123 */
1344, /* 540 - | 007C 124 */
1358, /* 54E - } 007D 125 */
1372, /* 55C - ~ 007E 126 */
1386, /* 56A -  007F 127 */
1400, /* 578 - ¢ 00A2 162 */
1414, /* 586 - £ 00A3 163 */
1428, /* 594 - ¥ 00A5 165 */
1442, /* 5A2 - § 00A7 167 */
1456, /* 5B0 - © 00A9 169 */
1470, /* 5BE - ¬ 00AC 172 */
1484, /* 5CC - ® 00AE 174 */
1498, /* 5DA - ° 00B0 176 */
1512, /* 5E8 - ± 00B1 177 */
1526, /* 5F6 - ² 00B2 178 */
1540, /* 604 - ³ 00B3 179 */
1554, /* 612 - µ 00B5 181 */
1568, /* 620 - ¹ 00B9 185 */
1582, /* 62E - º 00BA 186 */
1596, /* 63C - Ä 00C4 196 */
1610, /* 64A - Ö 00D6 214 */
1624, /* 658 - Ü 00DC 220 */
1638, /* 666 - ß 00DF 223 */
1652, /* 674 - ä 00E4 228 */
1666, /* 682 - ö 00F6 246 */
1680, /* 690 - ü 00FC 252 */
1694, /* 69E - ? 0394 916 */
1708, /* 6AC - ? 039B 923 */
1722, /* 6BA - O 03A9 937 */
1736, /* 6C8 - e 03B5 949 */
1750, /* 6D6 - ? 03B8 952 */
1764, /* 6E4 - µ 03BC 956 */
1778, /* 6F2 - p 03C0 960 */
1806, /* 70E - ? 263A 9786 */
1834, /* 72A - ? 2640 9792 */
1848, /* 738 - ? 2642 9794 */
1862, /* 746 - ? 266B 9835 */
1876, /* 754 - extra address: the end of the last character‘s imagebits
data */
};
/*************************************************************************************
******
Width table provides the width of each character. It‘s useful for proportional
font.
For monospaced font, the widths of all character are the same.
Generally speaking, the width table is not needed for monospaced font. you can get
the width from the font header.
If you do not need the width table, undene USE_WIDTH_TABLE.
To get the width of character ‚A‘, you can use the following expression:
const USHORT index = GetIndex(‚A‘);
const USHORT width = width_table[index];
**************************************************************************************
*****/
const unsigned short fontArial14h_width_tablep[] PROGMEM =
{
/* width char hexcode decimal */
/* ===== ==== ======= ======= */
3, /* 0020 32 */
2, /* ! 0021 33 */
4, /* „ 0022 34 */
6, /* # 0023 35 */
6, /* $ 0024 36 */
10, /* % 0025 37 */
7, /* & 0026 38 */
2, /* ‚ 0027 39 */
4, /* ( 0028 40 */
4, /* ) 0029 41 */
4, /* * 002A 42 */
6, /* + 002B 43 */
3, /* , 002C 44 */
4, /* - 002D 45 */
3, /* . 002E 46 */
3, /* / 002F 47 */
6, /* 0 0030 48 */
6, /* 1 0031 49 */
6, /* 2 0032 50 */
6, /* 3 0033 51 */
6, /* 4 0034 52 */
6, /* 5 0035 53 */
6, /* 6 0036 54 */
6, /* 7 0037 55 */
6, /* 8 0038 56 */
6, /* 9 0039 57 */
3, /* : 003A 58 */
3, /* ; 003B 59 */