E_paper, E_ink, Screen size 1.54", resolution 200x200, 4 wire spi, Waveshare, Black and White, Kl25Z, 8 wire print connector, supply 3.3 Volt, IL0373 Controller, font size is 8, 12, 16 and 24.

Dependencies:   mbed

Committer:
GerritPathuis
Date:
Sat Mar 31 08:40:16 2018 +0000
Revision:
10:08e026240a5f
Parent:
3:e4399b5ceb4b
Minor text update

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GerritPathuis 1:d27a7e06c233 1 /**
GerritPathuis 1:d27a7e06c233 2 ******************************************************************************
GerritPathuis 1:d27a7e06c233 3 * @file Font12.c
GerritPathuis 1:d27a7e06c233 4 * @author MCD Application Team
GerritPathuis 1:d27a7e06c233 5 * @version V1.0.0
GerritPathuis 1:d27a7e06c233 6 * @date 18-February-2014
GerritPathuis 1:d27a7e06c233 7 * @brief This file provides text Font12 for STM32xx-EVAL's LCD driver.
GerritPathuis 1:d27a7e06c233 8 ******************************************************************************
GerritPathuis 1:d27a7e06c233 9 * @attention
GerritPathuis 1:d27a7e06c233 10 *
GerritPathuis 1:d27a7e06c233 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
GerritPathuis 1:d27a7e06c233 12 *
GerritPathuis 1:d27a7e06c233 13 * Redistribution and use in source and binary forms, with or without modification,
GerritPathuis 1:d27a7e06c233 14 * are permitted provided that the following conditions are met:
GerritPathuis 1:d27a7e06c233 15 * 1. Redistributions of source code must retain the above copyright notice,
GerritPathuis 1:d27a7e06c233 16 * this list of conditions and the following disclaimer.
GerritPathuis 1:d27a7e06c233 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
GerritPathuis 1:d27a7e06c233 18 * this list of conditions and the following disclaimer in the documentation
GerritPathuis 1:d27a7e06c233 19 * and/or other materials provided with the distribution.
GerritPathuis 1:d27a7e06c233 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
GerritPathuis 1:d27a7e06c233 21 * may be used to endorse or promote products derived from this software
GerritPathuis 1:d27a7e06c233 22 * without specific prior written permission.
GerritPathuis 1:d27a7e06c233 23 *
GerritPathuis 1:d27a7e06c233 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
GerritPathuis 1:d27a7e06c233 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
GerritPathuis 1:d27a7e06c233 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
GerritPathuis 1:d27a7e06c233 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
GerritPathuis 1:d27a7e06c233 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
GerritPathuis 1:d27a7e06c233 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
GerritPathuis 1:d27a7e06c233 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
GerritPathuis 1:d27a7e06c233 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
GerritPathuis 1:d27a7e06c233 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
GerritPathuis 1:d27a7e06c233 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
GerritPathuis 1:d27a7e06c233 34 *
GerritPathuis 1:d27a7e06c233 35 ******************************************************************************
GerritPathuis 1:d27a7e06c233 36 */
GerritPathuis 1:d27a7e06c233 37
GerritPathuis 1:d27a7e06c233 38 /* Includes ------------------------------------------------------------------*/
GerritPathuis 1:d27a7e06c233 39 #include "fonts.h"
GerritPathuis 1:d27a7e06c233 40 //#include <avr/pgmspace.h>
GerritPathuis 1:d27a7e06c233 41
GerritPathuis 1:d27a7e06c233 42 //
GerritPathuis 1:d27a7e06c233 43 // Font data for Courier New 12pt
GerritPathuis 1:d27a7e06c233 44 //
GerritPathuis 1:d27a7e06c233 45
GerritPathuis 3:e4399b5ceb4b 46 const uint8_t Font12_Table[] =
GerritPathuis 1:d27a7e06c233 47 {
GerritPathuis 1:d27a7e06c233 48 // @0 ' ' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 49 0x00, //
GerritPathuis 1:d27a7e06c233 50 0x00, //
GerritPathuis 1:d27a7e06c233 51 0x00, //
GerritPathuis 1:d27a7e06c233 52 0x00, //
GerritPathuis 1:d27a7e06c233 53 0x00, //
GerritPathuis 1:d27a7e06c233 54 0x00, //
GerritPathuis 1:d27a7e06c233 55 0x00, //
GerritPathuis 1:d27a7e06c233 56 0x00, //
GerritPathuis 1:d27a7e06c233 57 0x00, //
GerritPathuis 1:d27a7e06c233 58 0x00, //
GerritPathuis 1:d27a7e06c233 59 0x00, //
GerritPathuis 1:d27a7e06c233 60 0x00, //
GerritPathuis 1:d27a7e06c233 61
GerritPathuis 1:d27a7e06c233 62 // @12 '!' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 63 0x00, //
GerritPathuis 1:d27a7e06c233 64 0x10, // #
GerritPathuis 1:d27a7e06c233 65 0x10, // #
GerritPathuis 1:d27a7e06c233 66 0x10, // #
GerritPathuis 1:d27a7e06c233 67 0x10, // #
GerritPathuis 1:d27a7e06c233 68 0x10, // #
GerritPathuis 1:d27a7e06c233 69 0x00, //
GerritPathuis 1:d27a7e06c233 70 0x00, //
GerritPathuis 1:d27a7e06c233 71 0x10, // #
GerritPathuis 1:d27a7e06c233 72 0x00, //
GerritPathuis 1:d27a7e06c233 73 0x00, //
GerritPathuis 1:d27a7e06c233 74 0x00, //
GerritPathuis 1:d27a7e06c233 75
GerritPathuis 1:d27a7e06c233 76 // @24 '"' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 77 0x00, //
GerritPathuis 1:d27a7e06c233 78 0x6C, // ## ##
GerritPathuis 1:d27a7e06c233 79 0x48, // # #
GerritPathuis 1:d27a7e06c233 80 0x48, // # #
GerritPathuis 1:d27a7e06c233 81 0x00, //
GerritPathuis 1:d27a7e06c233 82 0x00, //
GerritPathuis 1:d27a7e06c233 83 0x00, //
GerritPathuis 1:d27a7e06c233 84 0x00, //
GerritPathuis 1:d27a7e06c233 85 0x00, //
GerritPathuis 1:d27a7e06c233 86 0x00, //
GerritPathuis 1:d27a7e06c233 87 0x00, //
GerritPathuis 1:d27a7e06c233 88 0x00, //
GerritPathuis 1:d27a7e06c233 89
GerritPathuis 1:d27a7e06c233 90 // @36 '#' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 91 0x00, //
GerritPathuis 1:d27a7e06c233 92 0x14, // # #
GerritPathuis 1:d27a7e06c233 93 0x14, // # #
GerritPathuis 1:d27a7e06c233 94 0x28, // # #
GerritPathuis 1:d27a7e06c233 95 0x7C, // #####
GerritPathuis 1:d27a7e06c233 96 0x28, // # #
GerritPathuis 1:d27a7e06c233 97 0x7C, // #####
GerritPathuis 1:d27a7e06c233 98 0x28, // # #
GerritPathuis 1:d27a7e06c233 99 0x50, // # #
GerritPathuis 1:d27a7e06c233 100 0x50, // # #
GerritPathuis 1:d27a7e06c233 101 0x00, //
GerritPathuis 1:d27a7e06c233 102 0x00, //
GerritPathuis 1:d27a7e06c233 103
GerritPathuis 1:d27a7e06c233 104 // @48 '$' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 105 0x00, //
GerritPathuis 1:d27a7e06c233 106 0x10, // #
GerritPathuis 1:d27a7e06c233 107 0x38, // ###
GerritPathuis 1:d27a7e06c233 108 0x40, // #
GerritPathuis 1:d27a7e06c233 109 0x40, // #
GerritPathuis 1:d27a7e06c233 110 0x38, // ###
GerritPathuis 1:d27a7e06c233 111 0x48, // # #
GerritPathuis 1:d27a7e06c233 112 0x70, // ###
GerritPathuis 1:d27a7e06c233 113 0x10, // #
GerritPathuis 1:d27a7e06c233 114 0x10, // #
GerritPathuis 1:d27a7e06c233 115 0x00, //
GerritPathuis 1:d27a7e06c233 116 0x00, //
GerritPathuis 1:d27a7e06c233 117
GerritPathuis 1:d27a7e06c233 118 // @60 '%' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 119 0x00, //
GerritPathuis 1:d27a7e06c233 120 0x20, // #
GerritPathuis 1:d27a7e06c233 121 0x50, // # #
GerritPathuis 1:d27a7e06c233 122 0x20, // #
GerritPathuis 1:d27a7e06c233 123 0x0C, // ##
GerritPathuis 1:d27a7e06c233 124 0x70, // ###
GerritPathuis 1:d27a7e06c233 125 0x08, // #
GerritPathuis 1:d27a7e06c233 126 0x14, // # #
GerritPathuis 1:d27a7e06c233 127 0x08, // #
GerritPathuis 1:d27a7e06c233 128 0x00, //
GerritPathuis 1:d27a7e06c233 129 0x00, //
GerritPathuis 1:d27a7e06c233 130 0x00, //
GerritPathuis 1:d27a7e06c233 131
GerritPathuis 1:d27a7e06c233 132 // @72 '&' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 133 0x00, //
GerritPathuis 1:d27a7e06c233 134 0x00, //
GerritPathuis 1:d27a7e06c233 135 0x00, //
GerritPathuis 1:d27a7e06c233 136 0x18, // ##
GerritPathuis 1:d27a7e06c233 137 0x20, // #
GerritPathuis 1:d27a7e06c233 138 0x20, // #
GerritPathuis 1:d27a7e06c233 139 0x54, // # # #
GerritPathuis 1:d27a7e06c233 140 0x48, // # #
GerritPathuis 1:d27a7e06c233 141 0x34, // ## #
GerritPathuis 1:d27a7e06c233 142 0x00, //
GerritPathuis 1:d27a7e06c233 143 0x00, //
GerritPathuis 1:d27a7e06c233 144 0x00, //
GerritPathuis 1:d27a7e06c233 145
GerritPathuis 1:d27a7e06c233 146 // @84 ''' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 147 0x00, //
GerritPathuis 1:d27a7e06c233 148 0x10, // #
GerritPathuis 1:d27a7e06c233 149 0x10, // #
GerritPathuis 1:d27a7e06c233 150 0x10, // #
GerritPathuis 1:d27a7e06c233 151 0x10, // #
GerritPathuis 1:d27a7e06c233 152 0x00, //
GerritPathuis 1:d27a7e06c233 153 0x00, //
GerritPathuis 1:d27a7e06c233 154 0x00, //
GerritPathuis 1:d27a7e06c233 155 0x00, //
GerritPathuis 1:d27a7e06c233 156 0x00, //
GerritPathuis 1:d27a7e06c233 157 0x00, //
GerritPathuis 1:d27a7e06c233 158 0x00, //
GerritPathuis 1:d27a7e06c233 159
GerritPathuis 1:d27a7e06c233 160 // @96 '(' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 161 0x00, //
GerritPathuis 1:d27a7e06c233 162 0x08, // #
GerritPathuis 1:d27a7e06c233 163 0x08, // #
GerritPathuis 1:d27a7e06c233 164 0x10, // #
GerritPathuis 1:d27a7e06c233 165 0x10, // #
GerritPathuis 1:d27a7e06c233 166 0x10, // #
GerritPathuis 1:d27a7e06c233 167 0x10, // #
GerritPathuis 1:d27a7e06c233 168 0x10, // #
GerritPathuis 1:d27a7e06c233 169 0x10, // #
GerritPathuis 1:d27a7e06c233 170 0x08, // #
GerritPathuis 1:d27a7e06c233 171 0x08, // #
GerritPathuis 1:d27a7e06c233 172 0x00, //
GerritPathuis 1:d27a7e06c233 173
GerritPathuis 1:d27a7e06c233 174 // @108 ')' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 175 0x00, //
GerritPathuis 1:d27a7e06c233 176 0x20, // #
GerritPathuis 1:d27a7e06c233 177 0x20, // #
GerritPathuis 1:d27a7e06c233 178 0x10, // #
GerritPathuis 1:d27a7e06c233 179 0x10, // #
GerritPathuis 1:d27a7e06c233 180 0x10, // #
GerritPathuis 1:d27a7e06c233 181 0x10, // #
GerritPathuis 1:d27a7e06c233 182 0x10, // #
GerritPathuis 1:d27a7e06c233 183 0x10, // #
GerritPathuis 1:d27a7e06c233 184 0x20, // #
GerritPathuis 1:d27a7e06c233 185 0x20, // #
GerritPathuis 1:d27a7e06c233 186 0x00, //
GerritPathuis 1:d27a7e06c233 187
GerritPathuis 1:d27a7e06c233 188 // @120 '*' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 189 0x00, //
GerritPathuis 1:d27a7e06c233 190 0x10, // #
GerritPathuis 1:d27a7e06c233 191 0x7C, // #####
GerritPathuis 1:d27a7e06c233 192 0x10, // #
GerritPathuis 1:d27a7e06c233 193 0x28, // # #
GerritPathuis 1:d27a7e06c233 194 0x28, // # #
GerritPathuis 1:d27a7e06c233 195 0x00, //
GerritPathuis 1:d27a7e06c233 196 0x00, //
GerritPathuis 1:d27a7e06c233 197 0x00, //
GerritPathuis 1:d27a7e06c233 198 0x00, //
GerritPathuis 1:d27a7e06c233 199 0x00, //
GerritPathuis 1:d27a7e06c233 200 0x00, //
GerritPathuis 1:d27a7e06c233 201
GerritPathuis 1:d27a7e06c233 202 // @132 '+' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 203 0x00, //
GerritPathuis 1:d27a7e06c233 204 0x00, //
GerritPathuis 1:d27a7e06c233 205 0x10, // #
GerritPathuis 1:d27a7e06c233 206 0x10, // #
GerritPathuis 1:d27a7e06c233 207 0x10, // #
GerritPathuis 1:d27a7e06c233 208 0xFE, // #######
GerritPathuis 1:d27a7e06c233 209 0x10, // #
GerritPathuis 1:d27a7e06c233 210 0x10, // #
GerritPathuis 1:d27a7e06c233 211 0x10, // #
GerritPathuis 1:d27a7e06c233 212 0x00, //
GerritPathuis 1:d27a7e06c233 213 0x00, //
GerritPathuis 1:d27a7e06c233 214 0x00, //
GerritPathuis 1:d27a7e06c233 215
GerritPathuis 1:d27a7e06c233 216 // @144 ',' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 217 0x00, //
GerritPathuis 1:d27a7e06c233 218 0x00, //
GerritPathuis 1:d27a7e06c233 219 0x00, //
GerritPathuis 1:d27a7e06c233 220 0x00, //
GerritPathuis 1:d27a7e06c233 221 0x00, //
GerritPathuis 1:d27a7e06c233 222 0x00, //
GerritPathuis 1:d27a7e06c233 223 0x00, //
GerritPathuis 1:d27a7e06c233 224 0x18, // ##
GerritPathuis 1:d27a7e06c233 225 0x10, // #
GerritPathuis 1:d27a7e06c233 226 0x30, // ##
GerritPathuis 1:d27a7e06c233 227 0x20, // #
GerritPathuis 1:d27a7e06c233 228 0x00, //
GerritPathuis 1:d27a7e06c233 229
GerritPathuis 1:d27a7e06c233 230 // @156 '-' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 231 0x00, //
GerritPathuis 1:d27a7e06c233 232 0x00, //
GerritPathuis 1:d27a7e06c233 233 0x00, //
GerritPathuis 1:d27a7e06c233 234 0x00, //
GerritPathuis 1:d27a7e06c233 235 0x00, //
GerritPathuis 1:d27a7e06c233 236 0x7C, // #####
GerritPathuis 1:d27a7e06c233 237 0x00, //
GerritPathuis 1:d27a7e06c233 238 0x00, //
GerritPathuis 1:d27a7e06c233 239 0x00, //
GerritPathuis 1:d27a7e06c233 240 0x00, //
GerritPathuis 1:d27a7e06c233 241 0x00, //
GerritPathuis 1:d27a7e06c233 242 0x00, //
GerritPathuis 1:d27a7e06c233 243
GerritPathuis 1:d27a7e06c233 244 // @168 '.' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 245 0x00, //
GerritPathuis 1:d27a7e06c233 246 0x00, //
GerritPathuis 1:d27a7e06c233 247 0x00, //
GerritPathuis 1:d27a7e06c233 248 0x00, //
GerritPathuis 1:d27a7e06c233 249 0x00, //
GerritPathuis 1:d27a7e06c233 250 0x00, //
GerritPathuis 1:d27a7e06c233 251 0x00, //
GerritPathuis 1:d27a7e06c233 252 0x30, // ##
GerritPathuis 1:d27a7e06c233 253 0x30, // ##
GerritPathuis 1:d27a7e06c233 254 0x00, //
GerritPathuis 1:d27a7e06c233 255 0x00, //
GerritPathuis 1:d27a7e06c233 256 0x00, //
GerritPathuis 1:d27a7e06c233 257
GerritPathuis 1:d27a7e06c233 258 // @180 '/' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 259 0x00, //
GerritPathuis 1:d27a7e06c233 260 0x04, // #
GerritPathuis 1:d27a7e06c233 261 0x04, // #
GerritPathuis 1:d27a7e06c233 262 0x08, // #
GerritPathuis 1:d27a7e06c233 263 0x08, // #
GerritPathuis 1:d27a7e06c233 264 0x10, // #
GerritPathuis 1:d27a7e06c233 265 0x10, // #
GerritPathuis 1:d27a7e06c233 266 0x20, // #
GerritPathuis 1:d27a7e06c233 267 0x20, // #
GerritPathuis 1:d27a7e06c233 268 0x40, // #
GerritPathuis 1:d27a7e06c233 269 0x00, //
GerritPathuis 1:d27a7e06c233 270 0x00, //
GerritPathuis 1:d27a7e06c233 271
GerritPathuis 1:d27a7e06c233 272 // @192 '0' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 273 0x00, //
GerritPathuis 1:d27a7e06c233 274 0x38, // ###
GerritPathuis 1:d27a7e06c233 275 0x44, // # #
GerritPathuis 1:d27a7e06c233 276 0x44, // # #
GerritPathuis 1:d27a7e06c233 277 0x44, // # #
GerritPathuis 1:d27a7e06c233 278 0x44, // # #
GerritPathuis 1:d27a7e06c233 279 0x44, // # #
GerritPathuis 1:d27a7e06c233 280 0x44, // # #
GerritPathuis 1:d27a7e06c233 281 0x38, // ###
GerritPathuis 1:d27a7e06c233 282 0x00, //
GerritPathuis 1:d27a7e06c233 283 0x00, //
GerritPathuis 1:d27a7e06c233 284 0x00, //
GerritPathuis 1:d27a7e06c233 285
GerritPathuis 1:d27a7e06c233 286 // @204 '1' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 287 0x00, //
GerritPathuis 1:d27a7e06c233 288 0x30, // ##
GerritPathuis 1:d27a7e06c233 289 0x10, // #
GerritPathuis 1:d27a7e06c233 290 0x10, // #
GerritPathuis 1:d27a7e06c233 291 0x10, // #
GerritPathuis 1:d27a7e06c233 292 0x10, // #
GerritPathuis 1:d27a7e06c233 293 0x10, // #
GerritPathuis 1:d27a7e06c233 294 0x10, // #
GerritPathuis 1:d27a7e06c233 295 0x7C, // #####
GerritPathuis 1:d27a7e06c233 296 0x00, //
GerritPathuis 1:d27a7e06c233 297 0x00, //
GerritPathuis 1:d27a7e06c233 298 0x00, //
GerritPathuis 1:d27a7e06c233 299
GerritPathuis 1:d27a7e06c233 300 // @216 '2' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 301 0x00, //
GerritPathuis 1:d27a7e06c233 302 0x38, // ###
GerritPathuis 1:d27a7e06c233 303 0x44, // # #
GerritPathuis 1:d27a7e06c233 304 0x04, // #
GerritPathuis 1:d27a7e06c233 305 0x08, // #
GerritPathuis 1:d27a7e06c233 306 0x10, // #
GerritPathuis 1:d27a7e06c233 307 0x20, // #
GerritPathuis 1:d27a7e06c233 308 0x44, // # #
GerritPathuis 1:d27a7e06c233 309 0x7C, // #####
GerritPathuis 1:d27a7e06c233 310 0x00, //
GerritPathuis 1:d27a7e06c233 311 0x00, //
GerritPathuis 1:d27a7e06c233 312 0x00, //
GerritPathuis 1:d27a7e06c233 313
GerritPathuis 1:d27a7e06c233 314 // @228 '3' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 315 0x00, //
GerritPathuis 1:d27a7e06c233 316 0x38, // ###
GerritPathuis 1:d27a7e06c233 317 0x44, // # #
GerritPathuis 1:d27a7e06c233 318 0x04, // #
GerritPathuis 1:d27a7e06c233 319 0x18, // ##
GerritPathuis 1:d27a7e06c233 320 0x04, // #
GerritPathuis 1:d27a7e06c233 321 0x04, // #
GerritPathuis 1:d27a7e06c233 322 0x44, // # #
GerritPathuis 1:d27a7e06c233 323 0x38, // ###
GerritPathuis 1:d27a7e06c233 324 0x00, //
GerritPathuis 1:d27a7e06c233 325 0x00, //
GerritPathuis 1:d27a7e06c233 326 0x00, //
GerritPathuis 1:d27a7e06c233 327
GerritPathuis 1:d27a7e06c233 328 // @240 '4' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 329 0x00, //
GerritPathuis 1:d27a7e06c233 330 0x0C, // ##
GerritPathuis 1:d27a7e06c233 331 0x14, // # #
GerritPathuis 1:d27a7e06c233 332 0x14, // # #
GerritPathuis 1:d27a7e06c233 333 0x24, // # #
GerritPathuis 1:d27a7e06c233 334 0x44, // # #
GerritPathuis 1:d27a7e06c233 335 0x7E, // ######
GerritPathuis 1:d27a7e06c233 336 0x04, // #
GerritPathuis 1:d27a7e06c233 337 0x0E, // ###
GerritPathuis 1:d27a7e06c233 338 0x00, //
GerritPathuis 1:d27a7e06c233 339 0x00, //
GerritPathuis 1:d27a7e06c233 340 0x00, //
GerritPathuis 1:d27a7e06c233 341
GerritPathuis 1:d27a7e06c233 342 // @252 '5' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 343 0x00, //
GerritPathuis 1:d27a7e06c233 344 0x3C, // ####
GerritPathuis 1:d27a7e06c233 345 0x20, // #
GerritPathuis 1:d27a7e06c233 346 0x20, // #
GerritPathuis 1:d27a7e06c233 347 0x38, // ###
GerritPathuis 1:d27a7e06c233 348 0x04, // #
GerritPathuis 1:d27a7e06c233 349 0x04, // #
GerritPathuis 1:d27a7e06c233 350 0x44, // # #
GerritPathuis 1:d27a7e06c233 351 0x38, // ###
GerritPathuis 1:d27a7e06c233 352 0x00, //
GerritPathuis 1:d27a7e06c233 353 0x00, //
GerritPathuis 1:d27a7e06c233 354 0x00, //
GerritPathuis 1:d27a7e06c233 355
GerritPathuis 1:d27a7e06c233 356 // @264 '6' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 357 0x00, //
GerritPathuis 1:d27a7e06c233 358 0x1C, // ###
GerritPathuis 1:d27a7e06c233 359 0x20, // #
GerritPathuis 1:d27a7e06c233 360 0x40, // #
GerritPathuis 1:d27a7e06c233 361 0x78, // ####
GerritPathuis 1:d27a7e06c233 362 0x44, // # #
GerritPathuis 1:d27a7e06c233 363 0x44, // # #
GerritPathuis 1:d27a7e06c233 364 0x44, // # #
GerritPathuis 1:d27a7e06c233 365 0x38, // ###
GerritPathuis 1:d27a7e06c233 366 0x00, //
GerritPathuis 1:d27a7e06c233 367 0x00, //
GerritPathuis 1:d27a7e06c233 368 0x00, //
GerritPathuis 1:d27a7e06c233 369
GerritPathuis 1:d27a7e06c233 370 // @276 '7' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 371 0x00, //
GerritPathuis 1:d27a7e06c233 372 0x7C, // #####
GerritPathuis 1:d27a7e06c233 373 0x44, // # #
GerritPathuis 1:d27a7e06c233 374 0x04, // #
GerritPathuis 1:d27a7e06c233 375 0x08, // #
GerritPathuis 1:d27a7e06c233 376 0x08, // #
GerritPathuis 1:d27a7e06c233 377 0x08, // #
GerritPathuis 1:d27a7e06c233 378 0x10, // #
GerritPathuis 1:d27a7e06c233 379 0x10, // #
GerritPathuis 1:d27a7e06c233 380 0x00, //
GerritPathuis 1:d27a7e06c233 381 0x00, //
GerritPathuis 1:d27a7e06c233 382 0x00, //
GerritPathuis 1:d27a7e06c233 383
GerritPathuis 1:d27a7e06c233 384 // @288 '8' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 385 0x00, //
GerritPathuis 1:d27a7e06c233 386 0x38, // ###
GerritPathuis 1:d27a7e06c233 387 0x44, // # #
GerritPathuis 1:d27a7e06c233 388 0x44, // # #
GerritPathuis 1:d27a7e06c233 389 0x38, // ###
GerritPathuis 1:d27a7e06c233 390 0x44, // # #
GerritPathuis 1:d27a7e06c233 391 0x44, // # #
GerritPathuis 1:d27a7e06c233 392 0x44, // # #
GerritPathuis 1:d27a7e06c233 393 0x38, // ###
GerritPathuis 1:d27a7e06c233 394 0x00, //
GerritPathuis 1:d27a7e06c233 395 0x00, //
GerritPathuis 1:d27a7e06c233 396 0x00, //
GerritPathuis 1:d27a7e06c233 397
GerritPathuis 1:d27a7e06c233 398 // @300 '9' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 399 0x00, //
GerritPathuis 1:d27a7e06c233 400 0x38, // ###
GerritPathuis 1:d27a7e06c233 401 0x44, // # #
GerritPathuis 1:d27a7e06c233 402 0x44, // # #
GerritPathuis 1:d27a7e06c233 403 0x44, // # #
GerritPathuis 1:d27a7e06c233 404 0x3C, // ####
GerritPathuis 1:d27a7e06c233 405 0x04, // #
GerritPathuis 1:d27a7e06c233 406 0x08, // #
GerritPathuis 1:d27a7e06c233 407 0x70, // ###
GerritPathuis 1:d27a7e06c233 408 0x00, //
GerritPathuis 1:d27a7e06c233 409 0x00, //
GerritPathuis 1:d27a7e06c233 410 0x00, //
GerritPathuis 1:d27a7e06c233 411
GerritPathuis 1:d27a7e06c233 412 // @312 ':' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 413 0x00, //
GerritPathuis 1:d27a7e06c233 414 0x00, //
GerritPathuis 1:d27a7e06c233 415 0x00, //
GerritPathuis 1:d27a7e06c233 416 0x30, // ##
GerritPathuis 1:d27a7e06c233 417 0x30, // ##
GerritPathuis 1:d27a7e06c233 418 0x00, //
GerritPathuis 1:d27a7e06c233 419 0x00, //
GerritPathuis 1:d27a7e06c233 420 0x30, // ##
GerritPathuis 1:d27a7e06c233 421 0x30, // ##
GerritPathuis 1:d27a7e06c233 422 0x00, //
GerritPathuis 1:d27a7e06c233 423 0x00, //
GerritPathuis 1:d27a7e06c233 424 0x00, //
GerritPathuis 1:d27a7e06c233 425
GerritPathuis 1:d27a7e06c233 426 // @324 ';' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 427 0x00, //
GerritPathuis 1:d27a7e06c233 428 0x00, //
GerritPathuis 1:d27a7e06c233 429 0x00, //
GerritPathuis 1:d27a7e06c233 430 0x18, // ##
GerritPathuis 1:d27a7e06c233 431 0x18, // ##
GerritPathuis 1:d27a7e06c233 432 0x00, //
GerritPathuis 1:d27a7e06c233 433 0x00, //
GerritPathuis 1:d27a7e06c233 434 0x18, // ##
GerritPathuis 1:d27a7e06c233 435 0x30, // ##
GerritPathuis 1:d27a7e06c233 436 0x20, // #
GerritPathuis 1:d27a7e06c233 437 0x00, //
GerritPathuis 1:d27a7e06c233 438 0x00, //
GerritPathuis 1:d27a7e06c233 439
GerritPathuis 1:d27a7e06c233 440 // @336 '<' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 441 0x00, //
GerritPathuis 1:d27a7e06c233 442 0x00, //
GerritPathuis 1:d27a7e06c233 443 0x0C, // ##
GerritPathuis 1:d27a7e06c233 444 0x10, // #
GerritPathuis 1:d27a7e06c233 445 0x60, // ##
GerritPathuis 1:d27a7e06c233 446 0x80, // #
GerritPathuis 1:d27a7e06c233 447 0x60, // ##
GerritPathuis 1:d27a7e06c233 448 0x10, // #
GerritPathuis 1:d27a7e06c233 449 0x0C, // ##
GerritPathuis 1:d27a7e06c233 450 0x00, //
GerritPathuis 1:d27a7e06c233 451 0x00, //
GerritPathuis 1:d27a7e06c233 452 0x00, //
GerritPathuis 1:d27a7e06c233 453
GerritPathuis 1:d27a7e06c233 454 // @348 '=' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 455 0x00, //
GerritPathuis 1:d27a7e06c233 456 0x00, //
GerritPathuis 1:d27a7e06c233 457 0x00, //
GerritPathuis 1:d27a7e06c233 458 0x00, //
GerritPathuis 1:d27a7e06c233 459 0x7C, // #####
GerritPathuis 1:d27a7e06c233 460 0x00, //
GerritPathuis 1:d27a7e06c233 461 0x7C, // #####
GerritPathuis 1:d27a7e06c233 462 0x00, //
GerritPathuis 1:d27a7e06c233 463 0x00, //
GerritPathuis 1:d27a7e06c233 464 0x00, //
GerritPathuis 1:d27a7e06c233 465 0x00, //
GerritPathuis 1:d27a7e06c233 466 0x00, //
GerritPathuis 1:d27a7e06c233 467
GerritPathuis 1:d27a7e06c233 468 // @360 '>' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 469 0x00, //
GerritPathuis 1:d27a7e06c233 470 0x00, //
GerritPathuis 1:d27a7e06c233 471 0xC0, // ##
GerritPathuis 1:d27a7e06c233 472 0x20, // #
GerritPathuis 1:d27a7e06c233 473 0x18, // ##
GerritPathuis 1:d27a7e06c233 474 0x04, // #
GerritPathuis 1:d27a7e06c233 475 0x18, // ##
GerritPathuis 1:d27a7e06c233 476 0x20, // #
GerritPathuis 1:d27a7e06c233 477 0xC0, // ##
GerritPathuis 1:d27a7e06c233 478 0x00, //
GerritPathuis 1:d27a7e06c233 479 0x00, //
GerritPathuis 1:d27a7e06c233 480 0x00, //
GerritPathuis 1:d27a7e06c233 481
GerritPathuis 1:d27a7e06c233 482 // @372 '?' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 483 0x00, //
GerritPathuis 1:d27a7e06c233 484 0x00, //
GerritPathuis 1:d27a7e06c233 485 0x18, // ##
GerritPathuis 1:d27a7e06c233 486 0x24, // # #
GerritPathuis 1:d27a7e06c233 487 0x04, // #
GerritPathuis 1:d27a7e06c233 488 0x08, // #
GerritPathuis 1:d27a7e06c233 489 0x10, // #
GerritPathuis 1:d27a7e06c233 490 0x00, //
GerritPathuis 1:d27a7e06c233 491 0x30, // ##
GerritPathuis 1:d27a7e06c233 492 0x00, //
GerritPathuis 1:d27a7e06c233 493 0x00, //
GerritPathuis 1:d27a7e06c233 494 0x00, //
GerritPathuis 1:d27a7e06c233 495
GerritPathuis 1:d27a7e06c233 496 // @384 '@' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 497 0x38, // ###
GerritPathuis 1:d27a7e06c233 498 0x44, // # #
GerritPathuis 1:d27a7e06c233 499 0x44, // # #
GerritPathuis 1:d27a7e06c233 500 0x4C, // # ##
GerritPathuis 1:d27a7e06c233 501 0x54, // # # #
GerritPathuis 1:d27a7e06c233 502 0x54, // # # #
GerritPathuis 1:d27a7e06c233 503 0x4C, // # ##
GerritPathuis 1:d27a7e06c233 504 0x40, // #
GerritPathuis 1:d27a7e06c233 505 0x44, // # #
GerritPathuis 1:d27a7e06c233 506 0x38, // ###
GerritPathuis 1:d27a7e06c233 507 0x00, //
GerritPathuis 1:d27a7e06c233 508 0x00, //
GerritPathuis 1:d27a7e06c233 509
GerritPathuis 1:d27a7e06c233 510 // @396 'A' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 511 0x00, //
GerritPathuis 1:d27a7e06c233 512 0x30, // ##
GerritPathuis 1:d27a7e06c233 513 0x10, // #
GerritPathuis 1:d27a7e06c233 514 0x28, // # #
GerritPathuis 1:d27a7e06c233 515 0x28, // # #
GerritPathuis 1:d27a7e06c233 516 0x28, // # #
GerritPathuis 1:d27a7e06c233 517 0x7C, // #####
GerritPathuis 1:d27a7e06c233 518 0x44, // # #
GerritPathuis 1:d27a7e06c233 519 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 520 0x00, //
GerritPathuis 1:d27a7e06c233 521 0x00, //
GerritPathuis 1:d27a7e06c233 522 0x00, //
GerritPathuis 1:d27a7e06c233 523
GerritPathuis 1:d27a7e06c233 524 // @408 'B' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 525 0x00, //
GerritPathuis 1:d27a7e06c233 526 0xF8, // #####
GerritPathuis 1:d27a7e06c233 527 0x44, // # #
GerritPathuis 1:d27a7e06c233 528 0x44, // # #
GerritPathuis 1:d27a7e06c233 529 0x78, // ####
GerritPathuis 1:d27a7e06c233 530 0x44, // # #
GerritPathuis 1:d27a7e06c233 531 0x44, // # #
GerritPathuis 1:d27a7e06c233 532 0x44, // # #
GerritPathuis 1:d27a7e06c233 533 0xF8, // #####
GerritPathuis 1:d27a7e06c233 534 0x00, //
GerritPathuis 1:d27a7e06c233 535 0x00, //
GerritPathuis 1:d27a7e06c233 536 0x00, //
GerritPathuis 1:d27a7e06c233 537
GerritPathuis 1:d27a7e06c233 538 // @420 'C' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 539 0x00, //
GerritPathuis 1:d27a7e06c233 540 0x3C, // ####
GerritPathuis 1:d27a7e06c233 541 0x44, // # #
GerritPathuis 1:d27a7e06c233 542 0x40, // #
GerritPathuis 1:d27a7e06c233 543 0x40, // #
GerritPathuis 1:d27a7e06c233 544 0x40, // #
GerritPathuis 1:d27a7e06c233 545 0x40, // #
GerritPathuis 1:d27a7e06c233 546 0x44, // # #
GerritPathuis 1:d27a7e06c233 547 0x38, // ###
GerritPathuis 1:d27a7e06c233 548 0x00, //
GerritPathuis 1:d27a7e06c233 549 0x00, //
GerritPathuis 1:d27a7e06c233 550 0x00, //
GerritPathuis 1:d27a7e06c233 551
GerritPathuis 1:d27a7e06c233 552 // @432 'D' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 553 0x00, //
GerritPathuis 1:d27a7e06c233 554 0xF0, // ####
GerritPathuis 1:d27a7e06c233 555 0x48, // # #
GerritPathuis 1:d27a7e06c233 556 0x44, // # #
GerritPathuis 1:d27a7e06c233 557 0x44, // # #
GerritPathuis 1:d27a7e06c233 558 0x44, // # #
GerritPathuis 1:d27a7e06c233 559 0x44, // # #
GerritPathuis 1:d27a7e06c233 560 0x48, // # #
GerritPathuis 1:d27a7e06c233 561 0xF0, // ####
GerritPathuis 1:d27a7e06c233 562 0x00, //
GerritPathuis 1:d27a7e06c233 563 0x00, //
GerritPathuis 1:d27a7e06c233 564 0x00, //
GerritPathuis 1:d27a7e06c233 565
GerritPathuis 1:d27a7e06c233 566 // @444 'E' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 567 0x00, //
GerritPathuis 1:d27a7e06c233 568 0xFC, // ######
GerritPathuis 1:d27a7e06c233 569 0x44, // # #
GerritPathuis 1:d27a7e06c233 570 0x50, // # #
GerritPathuis 1:d27a7e06c233 571 0x70, // ###
GerritPathuis 1:d27a7e06c233 572 0x50, // # #
GerritPathuis 1:d27a7e06c233 573 0x40, // #
GerritPathuis 1:d27a7e06c233 574 0x44, // # #
GerritPathuis 1:d27a7e06c233 575 0xFC, // ######
GerritPathuis 1:d27a7e06c233 576 0x00, //
GerritPathuis 1:d27a7e06c233 577 0x00, //
GerritPathuis 1:d27a7e06c233 578 0x00, //
GerritPathuis 1:d27a7e06c233 579
GerritPathuis 1:d27a7e06c233 580 // @456 'F' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 581 0x00, //
GerritPathuis 1:d27a7e06c233 582 0x7E, // ######
GerritPathuis 1:d27a7e06c233 583 0x22, // # #
GerritPathuis 1:d27a7e06c233 584 0x28, // # #
GerritPathuis 1:d27a7e06c233 585 0x38, // ###
GerritPathuis 1:d27a7e06c233 586 0x28, // # #
GerritPathuis 1:d27a7e06c233 587 0x20, // #
GerritPathuis 1:d27a7e06c233 588 0x20, // #
GerritPathuis 1:d27a7e06c233 589 0x70, // ###
GerritPathuis 1:d27a7e06c233 590 0x00, //
GerritPathuis 1:d27a7e06c233 591 0x00, //
GerritPathuis 1:d27a7e06c233 592 0x00, //
GerritPathuis 1:d27a7e06c233 593
GerritPathuis 1:d27a7e06c233 594 // @468 'G' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 595 0x00, //
GerritPathuis 1:d27a7e06c233 596 0x3C, // ####
GerritPathuis 1:d27a7e06c233 597 0x44, // # #
GerritPathuis 1:d27a7e06c233 598 0x40, // #
GerritPathuis 1:d27a7e06c233 599 0x40, // #
GerritPathuis 1:d27a7e06c233 600 0x4E, // # ###
GerritPathuis 1:d27a7e06c233 601 0x44, // # #
GerritPathuis 1:d27a7e06c233 602 0x44, // # #
GerritPathuis 1:d27a7e06c233 603 0x38, // ###
GerritPathuis 1:d27a7e06c233 604 0x00, //
GerritPathuis 1:d27a7e06c233 605 0x00, //
GerritPathuis 1:d27a7e06c233 606 0x00, //
GerritPathuis 1:d27a7e06c233 607
GerritPathuis 1:d27a7e06c233 608 // @480 'H' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 609 0x00, //
GerritPathuis 1:d27a7e06c233 610 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 611 0x44, // # #
GerritPathuis 1:d27a7e06c233 612 0x44, // # #
GerritPathuis 1:d27a7e06c233 613 0x7C, // #####
GerritPathuis 1:d27a7e06c233 614 0x44, // # #
GerritPathuis 1:d27a7e06c233 615 0x44, // # #
GerritPathuis 1:d27a7e06c233 616 0x44, // # #
GerritPathuis 1:d27a7e06c233 617 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 618 0x00, //
GerritPathuis 1:d27a7e06c233 619 0x00, //
GerritPathuis 1:d27a7e06c233 620 0x00, //
GerritPathuis 1:d27a7e06c233 621
GerritPathuis 1:d27a7e06c233 622 // @492 'I' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 623 0x00, //
GerritPathuis 1:d27a7e06c233 624 0x7C, // #####
GerritPathuis 1:d27a7e06c233 625 0x10, // #
GerritPathuis 1:d27a7e06c233 626 0x10, // #
GerritPathuis 1:d27a7e06c233 627 0x10, // #
GerritPathuis 1:d27a7e06c233 628 0x10, // #
GerritPathuis 1:d27a7e06c233 629 0x10, // #
GerritPathuis 1:d27a7e06c233 630 0x10, // #
GerritPathuis 1:d27a7e06c233 631 0x7C, // #####
GerritPathuis 1:d27a7e06c233 632 0x00, //
GerritPathuis 1:d27a7e06c233 633 0x00, //
GerritPathuis 1:d27a7e06c233 634 0x00, //
GerritPathuis 1:d27a7e06c233 635
GerritPathuis 1:d27a7e06c233 636 // @504 'J' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 637 0x00, //
GerritPathuis 1:d27a7e06c233 638 0x3C, // ####
GerritPathuis 1:d27a7e06c233 639 0x08, // #
GerritPathuis 1:d27a7e06c233 640 0x08, // #
GerritPathuis 1:d27a7e06c233 641 0x08, // #
GerritPathuis 1:d27a7e06c233 642 0x48, // # #
GerritPathuis 1:d27a7e06c233 643 0x48, // # #
GerritPathuis 1:d27a7e06c233 644 0x48, // # #
GerritPathuis 1:d27a7e06c233 645 0x30, // ##
GerritPathuis 1:d27a7e06c233 646 0x00, //
GerritPathuis 1:d27a7e06c233 647 0x00, //
GerritPathuis 1:d27a7e06c233 648 0x00, //
GerritPathuis 1:d27a7e06c233 649
GerritPathuis 1:d27a7e06c233 650 // @516 'K' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 651 0x00, //
GerritPathuis 1:d27a7e06c233 652 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 653 0x44, // # #
GerritPathuis 1:d27a7e06c233 654 0x48, // # #
GerritPathuis 1:d27a7e06c233 655 0x50, // # #
GerritPathuis 1:d27a7e06c233 656 0x70, // ###
GerritPathuis 1:d27a7e06c233 657 0x48, // # #
GerritPathuis 1:d27a7e06c233 658 0x44, // # #
GerritPathuis 1:d27a7e06c233 659 0xE6, // ### ##
GerritPathuis 1:d27a7e06c233 660 0x00, //
GerritPathuis 1:d27a7e06c233 661 0x00, //
GerritPathuis 1:d27a7e06c233 662 0x00, //
GerritPathuis 1:d27a7e06c233 663
GerritPathuis 1:d27a7e06c233 664 // @528 'L' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 665 0x00, //
GerritPathuis 1:d27a7e06c233 666 0x70, // ###
GerritPathuis 1:d27a7e06c233 667 0x20, // #
GerritPathuis 1:d27a7e06c233 668 0x20, // #
GerritPathuis 1:d27a7e06c233 669 0x20, // #
GerritPathuis 1:d27a7e06c233 670 0x20, // #
GerritPathuis 1:d27a7e06c233 671 0x24, // # #
GerritPathuis 1:d27a7e06c233 672 0x24, // # #
GerritPathuis 1:d27a7e06c233 673 0x7C, // #####
GerritPathuis 1:d27a7e06c233 674 0x00, //
GerritPathuis 1:d27a7e06c233 675 0x00, //
GerritPathuis 1:d27a7e06c233 676 0x00, //
GerritPathuis 1:d27a7e06c233 677
GerritPathuis 1:d27a7e06c233 678 // @540 'M' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 679 0x00, //
GerritPathuis 1:d27a7e06c233 680 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 681 0x6C, // ## ##
GerritPathuis 1:d27a7e06c233 682 0x6C, // ## ##
GerritPathuis 1:d27a7e06c233 683 0x54, // # # #
GerritPathuis 1:d27a7e06c233 684 0x54, // # # #
GerritPathuis 1:d27a7e06c233 685 0x44, // # #
GerritPathuis 1:d27a7e06c233 686 0x44, // # #
GerritPathuis 1:d27a7e06c233 687 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 688 0x00, //
GerritPathuis 1:d27a7e06c233 689 0x00, //
GerritPathuis 1:d27a7e06c233 690 0x00, //
GerritPathuis 1:d27a7e06c233 691
GerritPathuis 1:d27a7e06c233 692 // @552 'N' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 693 0x00, //
GerritPathuis 1:d27a7e06c233 694 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 695 0x64, // ## #
GerritPathuis 1:d27a7e06c233 696 0x64, // ## #
GerritPathuis 1:d27a7e06c233 697 0x54, // # # #
GerritPathuis 1:d27a7e06c233 698 0x54, // # # #
GerritPathuis 1:d27a7e06c233 699 0x54, // # # #
GerritPathuis 1:d27a7e06c233 700 0x4C, // # ##
GerritPathuis 1:d27a7e06c233 701 0xEC, // ### ##
GerritPathuis 1:d27a7e06c233 702 0x00, //
GerritPathuis 1:d27a7e06c233 703 0x00, //
GerritPathuis 1:d27a7e06c233 704 0x00, //
GerritPathuis 1:d27a7e06c233 705
GerritPathuis 1:d27a7e06c233 706 // @564 'O' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 707 0x00, //
GerritPathuis 1:d27a7e06c233 708 0x38, // ###
GerritPathuis 1:d27a7e06c233 709 0x44, // # #
GerritPathuis 1:d27a7e06c233 710 0x44, // # #
GerritPathuis 1:d27a7e06c233 711 0x44, // # #
GerritPathuis 1:d27a7e06c233 712 0x44, // # #
GerritPathuis 1:d27a7e06c233 713 0x44, // # #
GerritPathuis 1:d27a7e06c233 714 0x44, // # #
GerritPathuis 1:d27a7e06c233 715 0x38, // ###
GerritPathuis 1:d27a7e06c233 716 0x00, //
GerritPathuis 1:d27a7e06c233 717 0x00, //
GerritPathuis 1:d27a7e06c233 718 0x00, //
GerritPathuis 1:d27a7e06c233 719
GerritPathuis 1:d27a7e06c233 720 // @576 'P' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 721 0x00, //
GerritPathuis 1:d27a7e06c233 722 0x78, // ####
GerritPathuis 1:d27a7e06c233 723 0x24, // # #
GerritPathuis 1:d27a7e06c233 724 0x24, // # #
GerritPathuis 1:d27a7e06c233 725 0x24, // # #
GerritPathuis 1:d27a7e06c233 726 0x38, // ###
GerritPathuis 1:d27a7e06c233 727 0x20, // #
GerritPathuis 1:d27a7e06c233 728 0x20, // #
GerritPathuis 1:d27a7e06c233 729 0x70, // ###
GerritPathuis 1:d27a7e06c233 730 0x00, //
GerritPathuis 1:d27a7e06c233 731 0x00, //
GerritPathuis 1:d27a7e06c233 732 0x00, //
GerritPathuis 1:d27a7e06c233 733
GerritPathuis 1:d27a7e06c233 734 // @588 'Q' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 735 0x00, //
GerritPathuis 1:d27a7e06c233 736 0x38, // ###
GerritPathuis 1:d27a7e06c233 737 0x44, // # #
GerritPathuis 1:d27a7e06c233 738 0x44, // # #
GerritPathuis 1:d27a7e06c233 739 0x44, // # #
GerritPathuis 1:d27a7e06c233 740 0x44, // # #
GerritPathuis 1:d27a7e06c233 741 0x44, // # #
GerritPathuis 1:d27a7e06c233 742 0x44, // # #
GerritPathuis 1:d27a7e06c233 743 0x38, // ###
GerritPathuis 1:d27a7e06c233 744 0x1C, // ###
GerritPathuis 1:d27a7e06c233 745 0x00, //
GerritPathuis 1:d27a7e06c233 746 0x00, //
GerritPathuis 1:d27a7e06c233 747
GerritPathuis 1:d27a7e06c233 748 // @600 'R' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 749 0x00, //
GerritPathuis 1:d27a7e06c233 750 0xF8, // #####
GerritPathuis 1:d27a7e06c233 751 0x44, // # #
GerritPathuis 1:d27a7e06c233 752 0x44, // # #
GerritPathuis 1:d27a7e06c233 753 0x44, // # #
GerritPathuis 1:d27a7e06c233 754 0x78, // ####
GerritPathuis 1:d27a7e06c233 755 0x48, // # #
GerritPathuis 1:d27a7e06c233 756 0x44, // # #
GerritPathuis 1:d27a7e06c233 757 0xE2, // ### #
GerritPathuis 1:d27a7e06c233 758 0x00, //
GerritPathuis 1:d27a7e06c233 759 0x00, //
GerritPathuis 1:d27a7e06c233 760 0x00, //
GerritPathuis 1:d27a7e06c233 761
GerritPathuis 1:d27a7e06c233 762 // @612 'S' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 763 0x00, //
GerritPathuis 1:d27a7e06c233 764 0x34, // ## #
GerritPathuis 1:d27a7e06c233 765 0x4C, // # ##
GerritPathuis 1:d27a7e06c233 766 0x40, // #
GerritPathuis 1:d27a7e06c233 767 0x38, // ###
GerritPathuis 1:d27a7e06c233 768 0x04, // #
GerritPathuis 1:d27a7e06c233 769 0x04, // #
GerritPathuis 1:d27a7e06c233 770 0x64, // ## #
GerritPathuis 1:d27a7e06c233 771 0x58, // # ##
GerritPathuis 1:d27a7e06c233 772 0x00, //
GerritPathuis 1:d27a7e06c233 773 0x00, //
GerritPathuis 1:d27a7e06c233 774 0x00, //
GerritPathuis 1:d27a7e06c233 775
GerritPathuis 1:d27a7e06c233 776 // @624 'T' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 777 0x00, //
GerritPathuis 1:d27a7e06c233 778 0xFE, // #######
GerritPathuis 1:d27a7e06c233 779 0x92, // # # #
GerritPathuis 1:d27a7e06c233 780 0x10, // #
GerritPathuis 1:d27a7e06c233 781 0x10, // #
GerritPathuis 1:d27a7e06c233 782 0x10, // #
GerritPathuis 1:d27a7e06c233 783 0x10, // #
GerritPathuis 1:d27a7e06c233 784 0x10, // #
GerritPathuis 1:d27a7e06c233 785 0x38, // ###
GerritPathuis 1:d27a7e06c233 786 0x00, //
GerritPathuis 1:d27a7e06c233 787 0x00, //
GerritPathuis 1:d27a7e06c233 788 0x00, //
GerritPathuis 1:d27a7e06c233 789
GerritPathuis 1:d27a7e06c233 790 // @636 'U' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 791 0x00, //
GerritPathuis 1:d27a7e06c233 792 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 793 0x44, // # #
GerritPathuis 1:d27a7e06c233 794 0x44, // # #
GerritPathuis 1:d27a7e06c233 795 0x44, // # #
GerritPathuis 1:d27a7e06c233 796 0x44, // # #
GerritPathuis 1:d27a7e06c233 797 0x44, // # #
GerritPathuis 1:d27a7e06c233 798 0x44, // # #
GerritPathuis 1:d27a7e06c233 799 0x38, // ###
GerritPathuis 1:d27a7e06c233 800 0x00, //
GerritPathuis 1:d27a7e06c233 801 0x00, //
GerritPathuis 1:d27a7e06c233 802 0x00, //
GerritPathuis 1:d27a7e06c233 803
GerritPathuis 1:d27a7e06c233 804 // @648 'V' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 805 0x00, //
GerritPathuis 1:d27a7e06c233 806 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 807 0x44, // # #
GerritPathuis 1:d27a7e06c233 808 0x44, // # #
GerritPathuis 1:d27a7e06c233 809 0x28, // # #
GerritPathuis 1:d27a7e06c233 810 0x28, // # #
GerritPathuis 1:d27a7e06c233 811 0x28, // # #
GerritPathuis 1:d27a7e06c233 812 0x10, // #
GerritPathuis 1:d27a7e06c233 813 0x10, // #
GerritPathuis 1:d27a7e06c233 814 0x00, //
GerritPathuis 1:d27a7e06c233 815 0x00, //
GerritPathuis 1:d27a7e06c233 816 0x00, //
GerritPathuis 1:d27a7e06c233 817
GerritPathuis 1:d27a7e06c233 818 // @660 'W' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 819 0x00, //
GerritPathuis 1:d27a7e06c233 820 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 821 0x44, // # #
GerritPathuis 1:d27a7e06c233 822 0x44, // # #
GerritPathuis 1:d27a7e06c233 823 0x54, // # # #
GerritPathuis 1:d27a7e06c233 824 0x54, // # # #
GerritPathuis 1:d27a7e06c233 825 0x54, // # # #
GerritPathuis 1:d27a7e06c233 826 0x54, // # # #
GerritPathuis 1:d27a7e06c233 827 0x28, // # #
GerritPathuis 1:d27a7e06c233 828 0x00, //
GerritPathuis 1:d27a7e06c233 829 0x00, //
GerritPathuis 1:d27a7e06c233 830 0x00, //
GerritPathuis 1:d27a7e06c233 831
GerritPathuis 1:d27a7e06c233 832 // @672 'X' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 833 0x00, //
GerritPathuis 1:d27a7e06c233 834 0xC6, // ## ##
GerritPathuis 1:d27a7e06c233 835 0x44, // # #
GerritPathuis 1:d27a7e06c233 836 0x28, // # #
GerritPathuis 1:d27a7e06c233 837 0x10, // #
GerritPathuis 1:d27a7e06c233 838 0x10, // #
GerritPathuis 1:d27a7e06c233 839 0x28, // # #
GerritPathuis 1:d27a7e06c233 840 0x44, // # #
GerritPathuis 1:d27a7e06c233 841 0xC6, // ## ##
GerritPathuis 1:d27a7e06c233 842 0x00, //
GerritPathuis 1:d27a7e06c233 843 0x00, //
GerritPathuis 1:d27a7e06c233 844 0x00, //
GerritPathuis 1:d27a7e06c233 845
GerritPathuis 1:d27a7e06c233 846 // @684 'Y' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 847 0x00, //
GerritPathuis 1:d27a7e06c233 848 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 849 0x44, // # #
GerritPathuis 1:d27a7e06c233 850 0x28, // # #
GerritPathuis 1:d27a7e06c233 851 0x28, // # #
GerritPathuis 1:d27a7e06c233 852 0x10, // #
GerritPathuis 1:d27a7e06c233 853 0x10, // #
GerritPathuis 1:d27a7e06c233 854 0x10, // #
GerritPathuis 1:d27a7e06c233 855 0x38, // ###
GerritPathuis 1:d27a7e06c233 856 0x00, //
GerritPathuis 1:d27a7e06c233 857 0x00, //
GerritPathuis 1:d27a7e06c233 858 0x00, //
GerritPathuis 1:d27a7e06c233 859
GerritPathuis 1:d27a7e06c233 860 // @696 'Z' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 861 0x00, //
GerritPathuis 1:d27a7e06c233 862 0x7C, // #####
GerritPathuis 1:d27a7e06c233 863 0x44, // # #
GerritPathuis 1:d27a7e06c233 864 0x08, // #
GerritPathuis 1:d27a7e06c233 865 0x10, // #
GerritPathuis 1:d27a7e06c233 866 0x10, // #
GerritPathuis 1:d27a7e06c233 867 0x20, // #
GerritPathuis 1:d27a7e06c233 868 0x44, // # #
GerritPathuis 1:d27a7e06c233 869 0x7C, // #####
GerritPathuis 1:d27a7e06c233 870 0x00, //
GerritPathuis 1:d27a7e06c233 871 0x00, //
GerritPathuis 1:d27a7e06c233 872 0x00, //
GerritPathuis 1:d27a7e06c233 873
GerritPathuis 1:d27a7e06c233 874 // @708 '[' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 875 0x00, //
GerritPathuis 1:d27a7e06c233 876 0x38, // ###
GerritPathuis 1:d27a7e06c233 877 0x20, // #
GerritPathuis 1:d27a7e06c233 878 0x20, // #
GerritPathuis 1:d27a7e06c233 879 0x20, // #
GerritPathuis 1:d27a7e06c233 880 0x20, // #
GerritPathuis 1:d27a7e06c233 881 0x20, // #
GerritPathuis 1:d27a7e06c233 882 0x20, // #
GerritPathuis 1:d27a7e06c233 883 0x20, // #
GerritPathuis 1:d27a7e06c233 884 0x20, // #
GerritPathuis 1:d27a7e06c233 885 0x38, // ###
GerritPathuis 1:d27a7e06c233 886 0x00, //
GerritPathuis 1:d27a7e06c233 887
GerritPathuis 1:d27a7e06c233 888 // @720 '\' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 889 0x00, //
GerritPathuis 1:d27a7e06c233 890 0x40, // #
GerritPathuis 1:d27a7e06c233 891 0x20, // #
GerritPathuis 1:d27a7e06c233 892 0x20, // #
GerritPathuis 1:d27a7e06c233 893 0x20, // #
GerritPathuis 1:d27a7e06c233 894 0x10, // #
GerritPathuis 1:d27a7e06c233 895 0x10, // #
GerritPathuis 1:d27a7e06c233 896 0x08, // #
GerritPathuis 1:d27a7e06c233 897 0x08, // #
GerritPathuis 1:d27a7e06c233 898 0x08, // #
GerritPathuis 1:d27a7e06c233 899 0x00, //
GerritPathuis 1:d27a7e06c233 900 0x00, //
GerritPathuis 1:d27a7e06c233 901
GerritPathuis 1:d27a7e06c233 902 // @732 ']' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 903 0x00, //
GerritPathuis 1:d27a7e06c233 904 0x38, // ###
GerritPathuis 1:d27a7e06c233 905 0x08, // #
GerritPathuis 1:d27a7e06c233 906 0x08, // #
GerritPathuis 1:d27a7e06c233 907 0x08, // #
GerritPathuis 1:d27a7e06c233 908 0x08, // #
GerritPathuis 1:d27a7e06c233 909 0x08, // #
GerritPathuis 1:d27a7e06c233 910 0x08, // #
GerritPathuis 1:d27a7e06c233 911 0x08, // #
GerritPathuis 1:d27a7e06c233 912 0x08, // #
GerritPathuis 1:d27a7e06c233 913 0x38, // ###
GerritPathuis 1:d27a7e06c233 914 0x00, //
GerritPathuis 1:d27a7e06c233 915
GerritPathuis 1:d27a7e06c233 916 // @744 '^' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 917 0x00, //
GerritPathuis 1:d27a7e06c233 918 0x10, // #
GerritPathuis 1:d27a7e06c233 919 0x10, // #
GerritPathuis 1:d27a7e06c233 920 0x28, // # #
GerritPathuis 1:d27a7e06c233 921 0x44, // # #
GerritPathuis 1:d27a7e06c233 922 0x00, //
GerritPathuis 1:d27a7e06c233 923 0x00, //
GerritPathuis 1:d27a7e06c233 924 0x00, //
GerritPathuis 1:d27a7e06c233 925 0x00, //
GerritPathuis 1:d27a7e06c233 926 0x00, //
GerritPathuis 1:d27a7e06c233 927 0x00, //
GerritPathuis 1:d27a7e06c233 928 0x00, //
GerritPathuis 1:d27a7e06c233 929
GerritPathuis 1:d27a7e06c233 930 // @756 '_' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 931 0x00, //
GerritPathuis 1:d27a7e06c233 932 0x00, //
GerritPathuis 1:d27a7e06c233 933 0x00, //
GerritPathuis 1:d27a7e06c233 934 0x00, //
GerritPathuis 1:d27a7e06c233 935 0x00, //
GerritPathuis 1:d27a7e06c233 936 0x00, //
GerritPathuis 1:d27a7e06c233 937 0x00, //
GerritPathuis 1:d27a7e06c233 938 0x00, //
GerritPathuis 1:d27a7e06c233 939 0x00, //
GerritPathuis 1:d27a7e06c233 940 0x00, //
GerritPathuis 1:d27a7e06c233 941 0x00, //
GerritPathuis 1:d27a7e06c233 942 0xFE, // #######
GerritPathuis 1:d27a7e06c233 943
GerritPathuis 1:d27a7e06c233 944 // @768 '`' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 945 0x00, //
GerritPathuis 1:d27a7e06c233 946 0x10, // #
GerritPathuis 1:d27a7e06c233 947 0x08, // #
GerritPathuis 1:d27a7e06c233 948 0x00, //
GerritPathuis 1:d27a7e06c233 949 0x00, //
GerritPathuis 1:d27a7e06c233 950 0x00, //
GerritPathuis 1:d27a7e06c233 951 0x00, //
GerritPathuis 1:d27a7e06c233 952 0x00, //
GerritPathuis 1:d27a7e06c233 953 0x00, //
GerritPathuis 1:d27a7e06c233 954 0x00, //
GerritPathuis 1:d27a7e06c233 955 0x00, //
GerritPathuis 1:d27a7e06c233 956 0x00, //
GerritPathuis 1:d27a7e06c233 957
GerritPathuis 1:d27a7e06c233 958 // @780 'a' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 959 0x00, //
GerritPathuis 1:d27a7e06c233 960 0x00, //
GerritPathuis 1:d27a7e06c233 961 0x00, //
GerritPathuis 1:d27a7e06c233 962 0x38, // ###
GerritPathuis 1:d27a7e06c233 963 0x44, // # #
GerritPathuis 1:d27a7e06c233 964 0x3C, // ####
GerritPathuis 1:d27a7e06c233 965 0x44, // # #
GerritPathuis 1:d27a7e06c233 966 0x44, // # #
GerritPathuis 1:d27a7e06c233 967 0x3E, // #####
GerritPathuis 1:d27a7e06c233 968 0x00, //
GerritPathuis 1:d27a7e06c233 969 0x00, //
GerritPathuis 1:d27a7e06c233 970 0x00, //
GerritPathuis 1:d27a7e06c233 971
GerritPathuis 1:d27a7e06c233 972 // @792 'b' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 973 0x00, //
GerritPathuis 1:d27a7e06c233 974 0xC0, // ##
GerritPathuis 1:d27a7e06c233 975 0x40, // #
GerritPathuis 1:d27a7e06c233 976 0x58, // # ##
GerritPathuis 1:d27a7e06c233 977 0x64, // ## #
GerritPathuis 1:d27a7e06c233 978 0x44, // # #
GerritPathuis 1:d27a7e06c233 979 0x44, // # #
GerritPathuis 1:d27a7e06c233 980 0x44, // # #
GerritPathuis 1:d27a7e06c233 981 0xF8, // #####
GerritPathuis 1:d27a7e06c233 982 0x00, //
GerritPathuis 1:d27a7e06c233 983 0x00, //
GerritPathuis 1:d27a7e06c233 984 0x00, //
GerritPathuis 1:d27a7e06c233 985
GerritPathuis 1:d27a7e06c233 986 // @804 'c' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 987 0x00, //
GerritPathuis 1:d27a7e06c233 988 0x00, //
GerritPathuis 1:d27a7e06c233 989 0x00, //
GerritPathuis 1:d27a7e06c233 990 0x3C, // ####
GerritPathuis 1:d27a7e06c233 991 0x44, // # #
GerritPathuis 1:d27a7e06c233 992 0x40, // #
GerritPathuis 1:d27a7e06c233 993 0x40, // #
GerritPathuis 1:d27a7e06c233 994 0x44, // # #
GerritPathuis 1:d27a7e06c233 995 0x38, // ###
GerritPathuis 1:d27a7e06c233 996 0x00, //
GerritPathuis 1:d27a7e06c233 997 0x00, //
GerritPathuis 1:d27a7e06c233 998 0x00, //
GerritPathuis 1:d27a7e06c233 999
GerritPathuis 1:d27a7e06c233 1000 // @816 'd' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1001 0x00, //
GerritPathuis 1:d27a7e06c233 1002 0x0C, // ##
GerritPathuis 1:d27a7e06c233 1003 0x04, // #
GerritPathuis 1:d27a7e06c233 1004 0x34, // ## #
GerritPathuis 1:d27a7e06c233 1005 0x4C, // # ##
GerritPathuis 1:d27a7e06c233 1006 0x44, // # #
GerritPathuis 1:d27a7e06c233 1007 0x44, // # #
GerritPathuis 1:d27a7e06c233 1008 0x44, // # #
GerritPathuis 1:d27a7e06c233 1009 0x3E, // #####
GerritPathuis 1:d27a7e06c233 1010 0x00, //
GerritPathuis 1:d27a7e06c233 1011 0x00, //
GerritPathuis 1:d27a7e06c233 1012 0x00, //
GerritPathuis 1:d27a7e06c233 1013
GerritPathuis 1:d27a7e06c233 1014 // @828 'e' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1015 0x00, //
GerritPathuis 1:d27a7e06c233 1016 0x00, //
GerritPathuis 1:d27a7e06c233 1017 0x00, //
GerritPathuis 1:d27a7e06c233 1018 0x38, // ###
GerritPathuis 1:d27a7e06c233 1019 0x44, // # #
GerritPathuis 1:d27a7e06c233 1020 0x7C, // #####
GerritPathuis 1:d27a7e06c233 1021 0x40, // #
GerritPathuis 1:d27a7e06c233 1022 0x40, // #
GerritPathuis 1:d27a7e06c233 1023 0x3C, // ####
GerritPathuis 1:d27a7e06c233 1024 0x00, //
GerritPathuis 1:d27a7e06c233 1025 0x00, //
GerritPathuis 1:d27a7e06c233 1026 0x00, //
GerritPathuis 1:d27a7e06c233 1027
GerritPathuis 1:d27a7e06c233 1028 // @840 'f' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1029 0x00, //
GerritPathuis 1:d27a7e06c233 1030 0x1C, // ###
GerritPathuis 1:d27a7e06c233 1031 0x20, // #
GerritPathuis 1:d27a7e06c233 1032 0x7C, // #####
GerritPathuis 1:d27a7e06c233 1033 0x20, // #
GerritPathuis 1:d27a7e06c233 1034 0x20, // #
GerritPathuis 1:d27a7e06c233 1035 0x20, // #
GerritPathuis 1:d27a7e06c233 1036 0x20, // #
GerritPathuis 1:d27a7e06c233 1037 0x7C, // #####
GerritPathuis 1:d27a7e06c233 1038 0x00, //
GerritPathuis 1:d27a7e06c233 1039 0x00, //
GerritPathuis 1:d27a7e06c233 1040 0x00, //
GerritPathuis 1:d27a7e06c233 1041
GerritPathuis 1:d27a7e06c233 1042 // @852 'g' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1043 0x00, //
GerritPathuis 1:d27a7e06c233 1044 0x00, //
GerritPathuis 1:d27a7e06c233 1045 0x00, //
GerritPathuis 1:d27a7e06c233 1046 0x36, // ## ##
GerritPathuis 1:d27a7e06c233 1047 0x4C, // # ##
GerritPathuis 1:d27a7e06c233 1048 0x44, // # #
GerritPathuis 1:d27a7e06c233 1049 0x44, // # #
GerritPathuis 1:d27a7e06c233 1050 0x44, // # #
GerritPathuis 1:d27a7e06c233 1051 0x3C, // ####
GerritPathuis 1:d27a7e06c233 1052 0x04, // #
GerritPathuis 1:d27a7e06c233 1053 0x38, // ###
GerritPathuis 1:d27a7e06c233 1054 0x00, //
GerritPathuis 1:d27a7e06c233 1055
GerritPathuis 1:d27a7e06c233 1056 // @864 'h' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1057 0x00, //
GerritPathuis 1:d27a7e06c233 1058 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1059 0x40, // #
GerritPathuis 1:d27a7e06c233 1060 0x58, // # ##
GerritPathuis 1:d27a7e06c233 1061 0x64, // ## #
GerritPathuis 1:d27a7e06c233 1062 0x44, // # #
GerritPathuis 1:d27a7e06c233 1063 0x44, // # #
GerritPathuis 1:d27a7e06c233 1064 0x44, // # #
GerritPathuis 1:d27a7e06c233 1065 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 1066 0x00, //
GerritPathuis 1:d27a7e06c233 1067 0x00, //
GerritPathuis 1:d27a7e06c233 1068 0x00, //
GerritPathuis 1:d27a7e06c233 1069
GerritPathuis 1:d27a7e06c233 1070 // @876 'i' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1071 0x00, //
GerritPathuis 1:d27a7e06c233 1072 0x10, // #
GerritPathuis 1:d27a7e06c233 1073 0x00, //
GerritPathuis 1:d27a7e06c233 1074 0x70, // ###
GerritPathuis 1:d27a7e06c233 1075 0x10, // #
GerritPathuis 1:d27a7e06c233 1076 0x10, // #
GerritPathuis 1:d27a7e06c233 1077 0x10, // #
GerritPathuis 1:d27a7e06c233 1078 0x10, // #
GerritPathuis 1:d27a7e06c233 1079 0x7C, // #####
GerritPathuis 1:d27a7e06c233 1080 0x00, //
GerritPathuis 1:d27a7e06c233 1081 0x00, //
GerritPathuis 1:d27a7e06c233 1082 0x00, //
GerritPathuis 1:d27a7e06c233 1083
GerritPathuis 1:d27a7e06c233 1084 // @888 'j' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1085 0x00, //
GerritPathuis 1:d27a7e06c233 1086 0x10, // #
GerritPathuis 1:d27a7e06c233 1087 0x00, //
GerritPathuis 1:d27a7e06c233 1088 0x78, // ####
GerritPathuis 1:d27a7e06c233 1089 0x08, // #
GerritPathuis 1:d27a7e06c233 1090 0x08, // #
GerritPathuis 1:d27a7e06c233 1091 0x08, // #
GerritPathuis 1:d27a7e06c233 1092 0x08, // #
GerritPathuis 1:d27a7e06c233 1093 0x08, // #
GerritPathuis 1:d27a7e06c233 1094 0x08, // #
GerritPathuis 1:d27a7e06c233 1095 0x70, // ###
GerritPathuis 1:d27a7e06c233 1096 0x00, //
GerritPathuis 1:d27a7e06c233 1097
GerritPathuis 1:d27a7e06c233 1098 // @900 'k' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1099 0x00, //
GerritPathuis 1:d27a7e06c233 1100 0xC0, // ##
GerritPathuis 1:d27a7e06c233 1101 0x40, // #
GerritPathuis 1:d27a7e06c233 1102 0x5C, // # ###
GerritPathuis 1:d27a7e06c233 1103 0x48, // # #
GerritPathuis 1:d27a7e06c233 1104 0x70, // ###
GerritPathuis 1:d27a7e06c233 1105 0x50, // # #
GerritPathuis 1:d27a7e06c233 1106 0x48, // # #
GerritPathuis 1:d27a7e06c233 1107 0xDC, // ## ###
GerritPathuis 1:d27a7e06c233 1108 0x00, //
GerritPathuis 1:d27a7e06c233 1109 0x00, //
GerritPathuis 1:d27a7e06c233 1110 0x00, //
GerritPathuis 1:d27a7e06c233 1111
GerritPathuis 1:d27a7e06c233 1112 // @912 'l' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1113 0x00, //
GerritPathuis 1:d27a7e06c233 1114 0x30, // ##
GerritPathuis 1:d27a7e06c233 1115 0x10, // #
GerritPathuis 1:d27a7e06c233 1116 0x10, // #
GerritPathuis 1:d27a7e06c233 1117 0x10, // #
GerritPathuis 1:d27a7e06c233 1118 0x10, // #
GerritPathuis 1:d27a7e06c233 1119 0x10, // #
GerritPathuis 1:d27a7e06c233 1120 0x10, // #
GerritPathuis 1:d27a7e06c233 1121 0x7C, // #####
GerritPathuis 1:d27a7e06c233 1122 0x00, //
GerritPathuis 1:d27a7e06c233 1123 0x00, //
GerritPathuis 1:d27a7e06c233 1124 0x00, //
GerritPathuis 1:d27a7e06c233 1125
GerritPathuis 1:d27a7e06c233 1126 // @924 'm' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1127 0x00, //
GerritPathuis 1:d27a7e06c233 1128 0x00, //
GerritPathuis 1:d27a7e06c233 1129 0x00, //
GerritPathuis 1:d27a7e06c233 1130 0xE8, // ### #
GerritPathuis 1:d27a7e06c233 1131 0x54, // # # #
GerritPathuis 1:d27a7e06c233 1132 0x54, // # # #
GerritPathuis 1:d27a7e06c233 1133 0x54, // # # #
GerritPathuis 1:d27a7e06c233 1134 0x54, // # # #
GerritPathuis 1:d27a7e06c233 1135 0xFE, // #######
GerritPathuis 1:d27a7e06c233 1136 0x00, //
GerritPathuis 1:d27a7e06c233 1137 0x00, //
GerritPathuis 1:d27a7e06c233 1138 0x00, //
GerritPathuis 1:d27a7e06c233 1139
GerritPathuis 1:d27a7e06c233 1140 // @936 'n' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1141 0x00, //
GerritPathuis 1:d27a7e06c233 1142 0x00, //
GerritPathuis 1:d27a7e06c233 1143 0x00, //
GerritPathuis 1:d27a7e06c233 1144 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 1145 0x64, // ## #
GerritPathuis 1:d27a7e06c233 1146 0x44, // # #
GerritPathuis 1:d27a7e06c233 1147 0x44, // # #
GerritPathuis 1:d27a7e06c233 1148 0x44, // # #
GerritPathuis 1:d27a7e06c233 1149 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 1150 0x00, //
GerritPathuis 1:d27a7e06c233 1151 0x00, //
GerritPathuis 1:d27a7e06c233 1152 0x00, //
GerritPathuis 1:d27a7e06c233 1153
GerritPathuis 1:d27a7e06c233 1154 // @948 'o' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1155 0x00, //
GerritPathuis 1:d27a7e06c233 1156 0x00, //
GerritPathuis 1:d27a7e06c233 1157 0x00, //
GerritPathuis 1:d27a7e06c233 1158 0x38, // ###
GerritPathuis 1:d27a7e06c233 1159 0x44, // # #
GerritPathuis 1:d27a7e06c233 1160 0x44, // # #
GerritPathuis 1:d27a7e06c233 1161 0x44, // # #
GerritPathuis 1:d27a7e06c233 1162 0x44, // # #
GerritPathuis 1:d27a7e06c233 1163 0x38, // ###
GerritPathuis 1:d27a7e06c233 1164 0x00, //
GerritPathuis 1:d27a7e06c233 1165 0x00, //
GerritPathuis 1:d27a7e06c233 1166 0x00, //
GerritPathuis 1:d27a7e06c233 1167
GerritPathuis 1:d27a7e06c233 1168 // @960 'p' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1169 0x00, //
GerritPathuis 1:d27a7e06c233 1170 0x00, //
GerritPathuis 1:d27a7e06c233 1171 0x00, //
GerritPathuis 1:d27a7e06c233 1172 0xD8, // ## ##
GerritPathuis 1:d27a7e06c233 1173 0x64, // ## #
GerritPathuis 1:d27a7e06c233 1174 0x44, // # #
GerritPathuis 1:d27a7e06c233 1175 0x44, // # #
GerritPathuis 1:d27a7e06c233 1176 0x44, // # #
GerritPathuis 1:d27a7e06c233 1177 0x78, // ####
GerritPathuis 1:d27a7e06c233 1178 0x40, // #
GerritPathuis 1:d27a7e06c233 1179 0xE0, // ###
GerritPathuis 1:d27a7e06c233 1180 0x00, //
GerritPathuis 1:d27a7e06c233 1181
GerritPathuis 1:d27a7e06c233 1182 // @972 'q' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1183 0x00, //
GerritPathuis 1:d27a7e06c233 1184 0x00, //
GerritPathuis 1:d27a7e06c233 1185 0x00, //
GerritPathuis 1:d27a7e06c233 1186 0x36, // ## ##
GerritPathuis 1:d27a7e06c233 1187 0x4C, // # ##
GerritPathuis 1:d27a7e06c233 1188 0x44, // # #
GerritPathuis 1:d27a7e06c233 1189 0x44, // # #
GerritPathuis 1:d27a7e06c233 1190 0x44, // # #
GerritPathuis 1:d27a7e06c233 1191 0x3C, // ####
GerritPathuis 1:d27a7e06c233 1192 0x04, // #
GerritPathuis 1:d27a7e06c233 1193 0x0E, // ###
GerritPathuis 1:d27a7e06c233 1194 0x00, //
GerritPathuis 1:d27a7e06c233 1195
GerritPathuis 1:d27a7e06c233 1196 // @984 'r' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1197 0x00, //
GerritPathuis 1:d27a7e06c233 1198 0x00, //
GerritPathuis 1:d27a7e06c233 1199 0x00, //
GerritPathuis 1:d27a7e06c233 1200 0x6C, // ## ##
GerritPathuis 1:d27a7e06c233 1201 0x30, // ##
GerritPathuis 1:d27a7e06c233 1202 0x20, // #
GerritPathuis 1:d27a7e06c233 1203 0x20, // #
GerritPathuis 1:d27a7e06c233 1204 0x20, // #
GerritPathuis 1:d27a7e06c233 1205 0x7C, // #####
GerritPathuis 1:d27a7e06c233 1206 0x00, //
GerritPathuis 1:d27a7e06c233 1207 0x00, //
GerritPathuis 1:d27a7e06c233 1208 0x00, //
GerritPathuis 1:d27a7e06c233 1209
GerritPathuis 1:d27a7e06c233 1210 // @996 's' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1211 0x00, //
GerritPathuis 1:d27a7e06c233 1212 0x00, //
GerritPathuis 1:d27a7e06c233 1213 0x00, //
GerritPathuis 1:d27a7e06c233 1214 0x3C, // ####
GerritPathuis 1:d27a7e06c233 1215 0x44, // # #
GerritPathuis 1:d27a7e06c233 1216 0x38, // ###
GerritPathuis 1:d27a7e06c233 1217 0x04, // #
GerritPathuis 1:d27a7e06c233 1218 0x44, // # #
GerritPathuis 1:d27a7e06c233 1219 0x78, // ####
GerritPathuis 1:d27a7e06c233 1220 0x00, //
GerritPathuis 1:d27a7e06c233 1221 0x00, //
GerritPathuis 1:d27a7e06c233 1222 0x00, //
GerritPathuis 1:d27a7e06c233 1223
GerritPathuis 1:d27a7e06c233 1224 // @1008 't' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1225 0x00, //
GerritPathuis 1:d27a7e06c233 1226 0x00, //
GerritPathuis 1:d27a7e06c233 1227 0x20, // #
GerritPathuis 1:d27a7e06c233 1228 0x7C, // #####
GerritPathuis 1:d27a7e06c233 1229 0x20, // #
GerritPathuis 1:d27a7e06c233 1230 0x20, // #
GerritPathuis 1:d27a7e06c233 1231 0x20, // #
GerritPathuis 1:d27a7e06c233 1232 0x22, // # #
GerritPathuis 1:d27a7e06c233 1233 0x1C, // ###
GerritPathuis 1:d27a7e06c233 1234 0x00, //
GerritPathuis 1:d27a7e06c233 1235 0x00, //
GerritPathuis 1:d27a7e06c233 1236 0x00, //
GerritPathuis 1:d27a7e06c233 1237
GerritPathuis 1:d27a7e06c233 1238 // @1020 'u' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1239 0x00, //
GerritPathuis 1:d27a7e06c233 1240 0x00, //
GerritPathuis 1:d27a7e06c233 1241 0x00, //
GerritPathuis 1:d27a7e06c233 1242 0xCC, // ## ##
GerritPathuis 1:d27a7e06c233 1243 0x44, // # #
GerritPathuis 1:d27a7e06c233 1244 0x44, // # #
GerritPathuis 1:d27a7e06c233 1245 0x44, // # #
GerritPathuis 1:d27a7e06c233 1246 0x4C, // # ##
GerritPathuis 1:d27a7e06c233 1247 0x36, // ## ##
GerritPathuis 1:d27a7e06c233 1248 0x00, //
GerritPathuis 1:d27a7e06c233 1249 0x00, //
GerritPathuis 1:d27a7e06c233 1250 0x00, //
GerritPathuis 1:d27a7e06c233 1251
GerritPathuis 1:d27a7e06c233 1252 // @1032 'v' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1253 0x00, //
GerritPathuis 1:d27a7e06c233 1254 0x00, //
GerritPathuis 1:d27a7e06c233 1255 0x00, //
GerritPathuis 1:d27a7e06c233 1256 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 1257 0x44, // # #
GerritPathuis 1:d27a7e06c233 1258 0x44, // # #
GerritPathuis 1:d27a7e06c233 1259 0x28, // # #
GerritPathuis 1:d27a7e06c233 1260 0x28, // # #
GerritPathuis 1:d27a7e06c233 1261 0x10, // #
GerritPathuis 1:d27a7e06c233 1262 0x00, //
GerritPathuis 1:d27a7e06c233 1263 0x00, //
GerritPathuis 1:d27a7e06c233 1264 0x00, //
GerritPathuis 1:d27a7e06c233 1265
GerritPathuis 1:d27a7e06c233 1266 // @1044 'w' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1267 0x00, //
GerritPathuis 1:d27a7e06c233 1268 0x00, //
GerritPathuis 1:d27a7e06c233 1269 0x00, //
GerritPathuis 1:d27a7e06c233 1270 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 1271 0x44, // # #
GerritPathuis 1:d27a7e06c233 1272 0x54, // # # #
GerritPathuis 1:d27a7e06c233 1273 0x54, // # # #
GerritPathuis 1:d27a7e06c233 1274 0x54, // # # #
GerritPathuis 1:d27a7e06c233 1275 0x28, // # #
GerritPathuis 1:d27a7e06c233 1276 0x00, //
GerritPathuis 1:d27a7e06c233 1277 0x00, //
GerritPathuis 1:d27a7e06c233 1278 0x00, //
GerritPathuis 1:d27a7e06c233 1279
GerritPathuis 1:d27a7e06c233 1280 // @1056 'x' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1281 0x00, //
GerritPathuis 1:d27a7e06c233 1282 0x00, //
GerritPathuis 1:d27a7e06c233 1283 0x00, //
GerritPathuis 1:d27a7e06c233 1284 0xCC, // ## ##
GerritPathuis 1:d27a7e06c233 1285 0x48, // # #
GerritPathuis 1:d27a7e06c233 1286 0x30, // ##
GerritPathuis 1:d27a7e06c233 1287 0x30, // ##
GerritPathuis 1:d27a7e06c233 1288 0x48, // # #
GerritPathuis 1:d27a7e06c233 1289 0xCC, // ## ##
GerritPathuis 1:d27a7e06c233 1290 0x00, //
GerritPathuis 1:d27a7e06c233 1291 0x00, //
GerritPathuis 1:d27a7e06c233 1292 0x00, //
GerritPathuis 1:d27a7e06c233 1293
GerritPathuis 1:d27a7e06c233 1294 // @1068 'y' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1295 0x00, //
GerritPathuis 1:d27a7e06c233 1296 0x00, //
GerritPathuis 1:d27a7e06c233 1297 0x00, //
GerritPathuis 1:d27a7e06c233 1298 0xEE, // ### ###
GerritPathuis 1:d27a7e06c233 1299 0x44, // # #
GerritPathuis 1:d27a7e06c233 1300 0x24, // # #
GerritPathuis 1:d27a7e06c233 1301 0x28, // # #
GerritPathuis 1:d27a7e06c233 1302 0x18, // ##
GerritPathuis 1:d27a7e06c233 1303 0x10, // #
GerritPathuis 1:d27a7e06c233 1304 0x10, // #
GerritPathuis 1:d27a7e06c233 1305 0x78, // ####
GerritPathuis 1:d27a7e06c233 1306 0x00, //
GerritPathuis 1:d27a7e06c233 1307
GerritPathuis 1:d27a7e06c233 1308 // @1080 'z' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1309 0x00, //
GerritPathuis 1:d27a7e06c233 1310 0x00, //
GerritPathuis 1:d27a7e06c233 1311 0x00, //
GerritPathuis 1:d27a7e06c233 1312 0x7C, // #####
GerritPathuis 1:d27a7e06c233 1313 0x48, // # #
GerritPathuis 1:d27a7e06c233 1314 0x10, // #
GerritPathuis 1:d27a7e06c233 1315 0x20, // #
GerritPathuis 1:d27a7e06c233 1316 0x44, // # #
GerritPathuis 1:d27a7e06c233 1317 0x7C, // #####
GerritPathuis 1:d27a7e06c233 1318 0x00, //
GerritPathuis 1:d27a7e06c233 1319 0x00, //
GerritPathuis 1:d27a7e06c233 1320 0x00, //
GerritPathuis 1:d27a7e06c233 1321
GerritPathuis 1:d27a7e06c233 1322 // @1092 '{' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1323 0x00, //
GerritPathuis 1:d27a7e06c233 1324 0x08, // #
GerritPathuis 1:d27a7e06c233 1325 0x10, // #
GerritPathuis 1:d27a7e06c233 1326 0x10, // #
GerritPathuis 1:d27a7e06c233 1327 0x10, // #
GerritPathuis 1:d27a7e06c233 1328 0x10, // #
GerritPathuis 1:d27a7e06c233 1329 0x20, // #
GerritPathuis 1:d27a7e06c233 1330 0x10, // #
GerritPathuis 1:d27a7e06c233 1331 0x10, // #
GerritPathuis 1:d27a7e06c233 1332 0x10, // #
GerritPathuis 1:d27a7e06c233 1333 0x08, // #
GerritPathuis 1:d27a7e06c233 1334 0x00, //
GerritPathuis 1:d27a7e06c233 1335
GerritPathuis 1:d27a7e06c233 1336 // @1104 '|' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1337 0x00, //
GerritPathuis 1:d27a7e06c233 1338 0x10, // #
GerritPathuis 1:d27a7e06c233 1339 0x10, // #
GerritPathuis 1:d27a7e06c233 1340 0x10, // #
GerritPathuis 1:d27a7e06c233 1341 0x10, // #
GerritPathuis 1:d27a7e06c233 1342 0x10, // #
GerritPathuis 1:d27a7e06c233 1343 0x10, // #
GerritPathuis 1:d27a7e06c233 1344 0x10, // #
GerritPathuis 1:d27a7e06c233 1345 0x10, // #
GerritPathuis 1:d27a7e06c233 1346 0x10, // #
GerritPathuis 1:d27a7e06c233 1347 0x00, //
GerritPathuis 1:d27a7e06c233 1348 0x00, //
GerritPathuis 1:d27a7e06c233 1349
GerritPathuis 1:d27a7e06c233 1350 // @1116 '}' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1351 0x00, //
GerritPathuis 1:d27a7e06c233 1352 0x20, // #
GerritPathuis 1:d27a7e06c233 1353 0x10, // #
GerritPathuis 1:d27a7e06c233 1354 0x10, // #
GerritPathuis 1:d27a7e06c233 1355 0x10, // #
GerritPathuis 1:d27a7e06c233 1356 0x10, // #
GerritPathuis 1:d27a7e06c233 1357 0x08, // #
GerritPathuis 1:d27a7e06c233 1358 0x10, // #
GerritPathuis 1:d27a7e06c233 1359 0x10, // #
GerritPathuis 1:d27a7e06c233 1360 0x10, // #
GerritPathuis 1:d27a7e06c233 1361 0x20, // #
GerritPathuis 1:d27a7e06c233 1362 0x00, //
GerritPathuis 1:d27a7e06c233 1363
GerritPathuis 1:d27a7e06c233 1364 // @1128 '~' (7 pixels wide)
GerritPathuis 1:d27a7e06c233 1365 0x00, //
GerritPathuis 1:d27a7e06c233 1366 0x00, //
GerritPathuis 1:d27a7e06c233 1367 0x00, //
GerritPathuis 1:d27a7e06c233 1368 0x00, //
GerritPathuis 1:d27a7e06c233 1369 0x00, //
GerritPathuis 1:d27a7e06c233 1370 0x24, // # #
GerritPathuis 1:d27a7e06c233 1371 0x58, // # ##
GerritPathuis 1:d27a7e06c233 1372 0x00, //
GerritPathuis 1:d27a7e06c233 1373 0x00, //
GerritPathuis 1:d27a7e06c233 1374 0x00, //
GerritPathuis 1:d27a7e06c233 1375 0x00, //
GerritPathuis 1:d27a7e06c233 1376 0x00, //
GerritPathuis 1:d27a7e06c233 1377 };
GerritPathuis 1:d27a7e06c233 1378
GerritPathuis 1:d27a7e06c233 1379 sFONT Font12 = {
GerritPathuis 1:d27a7e06c233 1380 Font12_Table,
GerritPathuis 1:d27a7e06c233 1381 7, /* Width */
GerritPathuis 1:d27a7e06c233 1382 12, /* Height */
GerritPathuis 1:d27a7e06c233 1383 };
GerritPathuis 1:d27a7e06c233 1384
GerritPathuis 1:d27a7e06c233 1385 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
GerritPathuis 1:d27a7e06c233 1386