WaveShare e-paper module (epd1in54). Monochrome version

e-Paper Module

Description

Waveshare 1.54 e-paper module imported from offiicial code https://www.waveshare.com/wiki/1.54inch_e-Paper_Module Codes are referenced from official Arduino code and Raspberry pi code.

SPI is used for communication between ePaper module and mbed.

Following shapes can be used:

  • primitive shape (square, circle, line)
  • font (variable sizes)

Pull request are appreciated (Note that the original code is copyrighted by (C) Waveshare )

Example Output

Display output with example code will be like following image:

/media/uploads/imachooon/img_20180216_223238.jpg

Example Code

include the mbed library with this snippet

#include "mbed.h"
#include "epd1in54.h"
#include "m41t62_rtc.h"
// Control
PinName rst;
PinName dc;
PinName busy;
// SPI communication
PinName mosi;
PinName miso;
PinName sclk;
PinName cs;

DigitalOut myled(LED1);

unsigned char frame_black[EPD_HEIGHT*EPD_WIDTH/8];


int main() {
    mosi = p5;
    miso = p6;
    sclk = p7;
    cs = p8;
    rst = p9;
    dc = p10;
    busy = p11;
    
    memset(frame_black, 0xFF, sizeof(unsigned char)*EPD_HEIGHT*EPD_WIDTH/8);

    Epd epd = Epd(mosi, miso, sclk, cs, dc, rst, busy);
    if (epd.Init(lut_full_update) != 0){
        return -1;
    }

    /* Draw something to the frame buffer */
    // For simplicity, the arguments are explicit numerical coordinates
    epd.DrawRectangle(frame_black, 10, 60, 50, 110, COLORED);
    epd.DrawLine(frame_black, 10, 60, 50, 110, COLORED);
    epd.DrawLine(frame_black, 50, 60, 10, 110, COLORED);
    epd.DrawCircle(frame_black, 120, 80, 30, COLORED);
    epd.DrawFilledRectangle(frame_black, 10, 130, 50, 180, COLORED);
    epd.DrawFilledRectangle(frame_black, 0, 6, 200, 26, COLORED);
    epd.DrawFilledCircle(frame_black, 120, 150, 30, COLORED);

    /*Write strings to the buffer */
    epd.DrawStringAt(frame_black, 30, 30, "e-Paper Demo", &Font16, COLORED);
    epd.DrawStringAt(frame_black, 28, 10, "Hello world!", &Font16, UNCOLORED);


    
    /* Display the frame_buffer */
    epd.SetFrameMemory(frame_black, 0, 0, epd.width, epd.height);
    epd.DisplayFrame();
    epd.Sleep();

    
    while(1) {
        myled = 1;
        wait(0.5);
        myled = 0;
        wait(0.5);
    }
}

Committer:
imachooon
Date:
Fri Feb 16 21:30:08 2018 +0000
Revision:
0:ac97d71fe296
initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
imachooon 0:ac97d71fe296 1 /**
imachooon 0:ac97d71fe296 2 ******************************************************************************
imachooon 0:ac97d71fe296 3 * @file Font8.c
imachooon 0:ac97d71fe296 4 * @author MCD Application Team
imachooon 0:ac97d71fe296 5 * @version V1.0.0
imachooon 0:ac97d71fe296 6 * @date 18-February-2014
imachooon 0:ac97d71fe296 7 * @brief This file provides text Font8 for STM32xx-EVAL's LCD driver.
imachooon 0:ac97d71fe296 8 ******************************************************************************
imachooon 0:ac97d71fe296 9 * @attention
imachooon 0:ac97d71fe296 10 *
imachooon 0:ac97d71fe296 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
imachooon 0:ac97d71fe296 12 *
imachooon 0:ac97d71fe296 13 * Redistribution and use in source and binary forms, with or without modification,
imachooon 0:ac97d71fe296 14 * are permitted provided that the following conditions are met:
imachooon 0:ac97d71fe296 15 * 1. Redistributions of source code must retain the above copyright notice,
imachooon 0:ac97d71fe296 16 * this list of conditions and the following disclaimer.
imachooon 0:ac97d71fe296 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
imachooon 0:ac97d71fe296 18 * this list of conditions and the following disclaimer in the documentation
imachooon 0:ac97d71fe296 19 * and/or other materials provided with the distribution.
imachooon 0:ac97d71fe296 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
imachooon 0:ac97d71fe296 21 * may be used to endorse or promote products derived from this software
imachooon 0:ac97d71fe296 22 * without specific prior written permission.
imachooon 0:ac97d71fe296 23 *
imachooon 0:ac97d71fe296 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
imachooon 0:ac97d71fe296 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
imachooon 0:ac97d71fe296 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
imachooon 0:ac97d71fe296 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
imachooon 0:ac97d71fe296 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
imachooon 0:ac97d71fe296 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
imachooon 0:ac97d71fe296 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
imachooon 0:ac97d71fe296 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
imachooon 0:ac97d71fe296 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
imachooon 0:ac97d71fe296 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
imachooon 0:ac97d71fe296 34 *
imachooon 0:ac97d71fe296 35 ******************************************************************************
imachooon 0:ac97d71fe296 36 */
imachooon 0:ac97d71fe296 37
imachooon 0:ac97d71fe296 38 /* Includes ------------------------------------------------------------------*/
imachooon 0:ac97d71fe296 39 #include "fonts.h"
imachooon 0:ac97d71fe296 40
imachooon 0:ac97d71fe296 41 //
imachooon 0:ac97d71fe296 42 // Font data for Courier New 12pt
imachooon 0:ac97d71fe296 43 //
imachooon 0:ac97d71fe296 44
imachooon 0:ac97d71fe296 45 const uint8_t Font8_Table[] =
imachooon 0:ac97d71fe296 46 {
imachooon 0:ac97d71fe296 47 // @0 ' ' (5 pixels wide)
imachooon 0:ac97d71fe296 48 0x00, //
imachooon 0:ac97d71fe296 49 0x00, //
imachooon 0:ac97d71fe296 50 0x00, //
imachooon 0:ac97d71fe296 51 0x00, //
imachooon 0:ac97d71fe296 52 0x00, //
imachooon 0:ac97d71fe296 53 0x00, //
imachooon 0:ac97d71fe296 54 0x00, //
imachooon 0:ac97d71fe296 55 0x00, //
imachooon 0:ac97d71fe296 56
imachooon 0:ac97d71fe296 57 // @8 '!' (5 pixels wide)
imachooon 0:ac97d71fe296 58 0x20, // #
imachooon 0:ac97d71fe296 59 0x20, // #
imachooon 0:ac97d71fe296 60 0x20, // #
imachooon 0:ac97d71fe296 61 0x20, // #
imachooon 0:ac97d71fe296 62 0x00, //
imachooon 0:ac97d71fe296 63 0x20, // #
imachooon 0:ac97d71fe296 64 0x00, //
imachooon 0:ac97d71fe296 65 0x00, //
imachooon 0:ac97d71fe296 66
imachooon 0:ac97d71fe296 67 // @16 '"' (5 pixels wide)
imachooon 0:ac97d71fe296 68 0x50, // # #
imachooon 0:ac97d71fe296 69 0x50, // # #
imachooon 0:ac97d71fe296 70 0x00, //
imachooon 0:ac97d71fe296 71 0x00, //
imachooon 0:ac97d71fe296 72 0x00, //
imachooon 0:ac97d71fe296 73 0x00, //
imachooon 0:ac97d71fe296 74 0x00, //
imachooon 0:ac97d71fe296 75 0x00, //
imachooon 0:ac97d71fe296 76
imachooon 0:ac97d71fe296 77 // @24 '#' (5 pixels wide)
imachooon 0:ac97d71fe296 78 0x28, // # #
imachooon 0:ac97d71fe296 79 0x50, // # #
imachooon 0:ac97d71fe296 80 0xF8, // #####
imachooon 0:ac97d71fe296 81 0x50, // # #
imachooon 0:ac97d71fe296 82 0xF8, // #####
imachooon 0:ac97d71fe296 83 0x50, // # #
imachooon 0:ac97d71fe296 84 0xA0, // # #
imachooon 0:ac97d71fe296 85 0x00, //
imachooon 0:ac97d71fe296 86
imachooon 0:ac97d71fe296 87 // @32 '$' (5 pixels wide)
imachooon 0:ac97d71fe296 88 0x20, // #
imachooon 0:ac97d71fe296 89 0x30, // ##
imachooon 0:ac97d71fe296 90 0x60, // ##
imachooon 0:ac97d71fe296 91 0x30, // ##
imachooon 0:ac97d71fe296 92 0x10, // #
imachooon 0:ac97d71fe296 93 0x60, // ##
imachooon 0:ac97d71fe296 94 0x20, // #
imachooon 0:ac97d71fe296 95 0x00, //
imachooon 0:ac97d71fe296 96
imachooon 0:ac97d71fe296 97 // @40 '%' (5 pixels wide)
imachooon 0:ac97d71fe296 98 0x20, // #
imachooon 0:ac97d71fe296 99 0x20, // #
imachooon 0:ac97d71fe296 100 0x18, // ##
imachooon 0:ac97d71fe296 101 0x60, // ##
imachooon 0:ac97d71fe296 102 0x10, // #
imachooon 0:ac97d71fe296 103 0x10, // #
imachooon 0:ac97d71fe296 104 0x00, //
imachooon 0:ac97d71fe296 105 0x00, //
imachooon 0:ac97d71fe296 106
imachooon 0:ac97d71fe296 107 // @48 '&' (5 pixels wide)
imachooon 0:ac97d71fe296 108 0x00, //
imachooon 0:ac97d71fe296 109 0x38, // ###
imachooon 0:ac97d71fe296 110 0x20, // #
imachooon 0:ac97d71fe296 111 0x60, // ##
imachooon 0:ac97d71fe296 112 0x50, // # #
imachooon 0:ac97d71fe296 113 0x78, // ####
imachooon 0:ac97d71fe296 114 0x00, //
imachooon 0:ac97d71fe296 115 0x00, //
imachooon 0:ac97d71fe296 116
imachooon 0:ac97d71fe296 117 // @56 ''' (5 pixels wide)
imachooon 0:ac97d71fe296 118 0x20, // #
imachooon 0:ac97d71fe296 119 0x20, // #
imachooon 0:ac97d71fe296 120 0x20, // #
imachooon 0:ac97d71fe296 121 0x00, //
imachooon 0:ac97d71fe296 122 0x00, //
imachooon 0:ac97d71fe296 123 0x00, //
imachooon 0:ac97d71fe296 124 0x00, //
imachooon 0:ac97d71fe296 125 0x00, //
imachooon 0:ac97d71fe296 126
imachooon 0:ac97d71fe296 127 // @64 '(' (5 pixels wide)
imachooon 0:ac97d71fe296 128 0x10, // #
imachooon 0:ac97d71fe296 129 0x20, // #
imachooon 0:ac97d71fe296 130 0x20, // #
imachooon 0:ac97d71fe296 131 0x20, // #
imachooon 0:ac97d71fe296 132 0x20, // #
imachooon 0:ac97d71fe296 133 0x20, // #
imachooon 0:ac97d71fe296 134 0x10, // #
imachooon 0:ac97d71fe296 135 0x00, //
imachooon 0:ac97d71fe296 136
imachooon 0:ac97d71fe296 137 // @72 ')' (5 pixels wide)
imachooon 0:ac97d71fe296 138 0x40, // #
imachooon 0:ac97d71fe296 139 0x20, // #
imachooon 0:ac97d71fe296 140 0x20, // #
imachooon 0:ac97d71fe296 141 0x20, // #
imachooon 0:ac97d71fe296 142 0x20, // #
imachooon 0:ac97d71fe296 143 0x20, // #
imachooon 0:ac97d71fe296 144 0x40, // #
imachooon 0:ac97d71fe296 145 0x00, //
imachooon 0:ac97d71fe296 146
imachooon 0:ac97d71fe296 147 // @80 '*' (5 pixels wide)
imachooon 0:ac97d71fe296 148 0x20, // #
imachooon 0:ac97d71fe296 149 0x70, // ###
imachooon 0:ac97d71fe296 150 0x20, // #
imachooon 0:ac97d71fe296 151 0x50, // # #
imachooon 0:ac97d71fe296 152 0x00, //
imachooon 0:ac97d71fe296 153 0x00, //
imachooon 0:ac97d71fe296 154 0x00, //
imachooon 0:ac97d71fe296 155 0x00, //
imachooon 0:ac97d71fe296 156
imachooon 0:ac97d71fe296 157 // @88 '+' (5 pixels wide)
imachooon 0:ac97d71fe296 158 0x00, //
imachooon 0:ac97d71fe296 159 0x20, // #
imachooon 0:ac97d71fe296 160 0x20, // #
imachooon 0:ac97d71fe296 161 0xF8, // #####
imachooon 0:ac97d71fe296 162 0x20, // #
imachooon 0:ac97d71fe296 163 0x20, // #
imachooon 0:ac97d71fe296 164 0x00, //
imachooon 0:ac97d71fe296 165 0x00, //
imachooon 0:ac97d71fe296 166
imachooon 0:ac97d71fe296 167 // @96 ',' (5 pixels wide)
imachooon 0:ac97d71fe296 168 0x00, //
imachooon 0:ac97d71fe296 169 0x00, //
imachooon 0:ac97d71fe296 170 0x00, //
imachooon 0:ac97d71fe296 171 0x00, //
imachooon 0:ac97d71fe296 172 0x10, // #
imachooon 0:ac97d71fe296 173 0x20, // #
imachooon 0:ac97d71fe296 174 0x20, // #
imachooon 0:ac97d71fe296 175 0x00, //
imachooon 0:ac97d71fe296 176
imachooon 0:ac97d71fe296 177 // @104 '-' (5 pixels wide)
imachooon 0:ac97d71fe296 178 0x00, //
imachooon 0:ac97d71fe296 179 0x00, //
imachooon 0:ac97d71fe296 180 0x00, //
imachooon 0:ac97d71fe296 181 0x70, // ###
imachooon 0:ac97d71fe296 182 0x00, //
imachooon 0:ac97d71fe296 183 0x00, //
imachooon 0:ac97d71fe296 184 0x00, //
imachooon 0:ac97d71fe296 185 0x00, //
imachooon 0:ac97d71fe296 186
imachooon 0:ac97d71fe296 187 // @112 '.' (5 pixels wide)
imachooon 0:ac97d71fe296 188 0x00, //
imachooon 0:ac97d71fe296 189 0x00, //
imachooon 0:ac97d71fe296 190 0x00, //
imachooon 0:ac97d71fe296 191 0x00, //
imachooon 0:ac97d71fe296 192 0x00, //
imachooon 0:ac97d71fe296 193 0x20, // #
imachooon 0:ac97d71fe296 194 0x00, //
imachooon 0:ac97d71fe296 195 0x00, //
imachooon 0:ac97d71fe296 196
imachooon 0:ac97d71fe296 197 // @120 '/' (5 pixels wide)
imachooon 0:ac97d71fe296 198 0x10, // #
imachooon 0:ac97d71fe296 199 0x20, // #
imachooon 0:ac97d71fe296 200 0x20, // #
imachooon 0:ac97d71fe296 201 0x20, // #
imachooon 0:ac97d71fe296 202 0x40, // #
imachooon 0:ac97d71fe296 203 0x40, // #
imachooon 0:ac97d71fe296 204 0x80, // #
imachooon 0:ac97d71fe296 205 0x00, //
imachooon 0:ac97d71fe296 206
imachooon 0:ac97d71fe296 207 // @128 '0' (5 pixels wide)
imachooon 0:ac97d71fe296 208 0x20, // #
imachooon 0:ac97d71fe296 209 0x50, // # #
imachooon 0:ac97d71fe296 210 0x50, // # #
imachooon 0:ac97d71fe296 211 0x50, // # #
imachooon 0:ac97d71fe296 212 0x50, // # #
imachooon 0:ac97d71fe296 213 0x20, // #
imachooon 0:ac97d71fe296 214 0x00, //
imachooon 0:ac97d71fe296 215 0x00, //
imachooon 0:ac97d71fe296 216
imachooon 0:ac97d71fe296 217 // @136 '1' (5 pixels wide)
imachooon 0:ac97d71fe296 218 0x60, // ##
imachooon 0:ac97d71fe296 219 0x20, // #
imachooon 0:ac97d71fe296 220 0x20, // #
imachooon 0:ac97d71fe296 221 0x20, // #
imachooon 0:ac97d71fe296 222 0x20, // #
imachooon 0:ac97d71fe296 223 0xF8, // #####
imachooon 0:ac97d71fe296 224 0x00, //
imachooon 0:ac97d71fe296 225 0x00, //
imachooon 0:ac97d71fe296 226
imachooon 0:ac97d71fe296 227 // @144 '2' (5 pixels wide)
imachooon 0:ac97d71fe296 228 0x20, // #
imachooon 0:ac97d71fe296 229 0x50, // # #
imachooon 0:ac97d71fe296 230 0x20, // #
imachooon 0:ac97d71fe296 231 0x20, // #
imachooon 0:ac97d71fe296 232 0x40, // #
imachooon 0:ac97d71fe296 233 0x70, // ###
imachooon 0:ac97d71fe296 234 0x00, //
imachooon 0:ac97d71fe296 235 0x00, //
imachooon 0:ac97d71fe296 236
imachooon 0:ac97d71fe296 237 // @152 '3' (5 pixels wide)
imachooon 0:ac97d71fe296 238 0x20, // #
imachooon 0:ac97d71fe296 239 0x50, // # #
imachooon 0:ac97d71fe296 240 0x10, // #
imachooon 0:ac97d71fe296 241 0x20, // #
imachooon 0:ac97d71fe296 242 0x10, // #
imachooon 0:ac97d71fe296 243 0x60, // ##
imachooon 0:ac97d71fe296 244 0x00, //
imachooon 0:ac97d71fe296 245 0x00, //
imachooon 0:ac97d71fe296 246
imachooon 0:ac97d71fe296 247 // @160 '4' (5 pixels wide)
imachooon 0:ac97d71fe296 248 0x10, // #
imachooon 0:ac97d71fe296 249 0x30, // ##
imachooon 0:ac97d71fe296 250 0x50, // # #
imachooon 0:ac97d71fe296 251 0x78, // ####
imachooon 0:ac97d71fe296 252 0x10, // #
imachooon 0:ac97d71fe296 253 0x38, // ###
imachooon 0:ac97d71fe296 254 0x00, //
imachooon 0:ac97d71fe296 255 0x00, //
imachooon 0:ac97d71fe296 256
imachooon 0:ac97d71fe296 257 // @168 '5' (5 pixels wide)
imachooon 0:ac97d71fe296 258 0x70, // ###
imachooon 0:ac97d71fe296 259 0x40, // #
imachooon 0:ac97d71fe296 260 0x60, // ##
imachooon 0:ac97d71fe296 261 0x10, // #
imachooon 0:ac97d71fe296 262 0x50, // # #
imachooon 0:ac97d71fe296 263 0x20, // #
imachooon 0:ac97d71fe296 264 0x00, //
imachooon 0:ac97d71fe296 265 0x00, //
imachooon 0:ac97d71fe296 266
imachooon 0:ac97d71fe296 267 // @176 '6' (5 pixels wide)
imachooon 0:ac97d71fe296 268 0x30, // ##
imachooon 0:ac97d71fe296 269 0x40, // #
imachooon 0:ac97d71fe296 270 0x60, // ##
imachooon 0:ac97d71fe296 271 0x50, // # #
imachooon 0:ac97d71fe296 272 0x50, // # #
imachooon 0:ac97d71fe296 273 0x60, // ##
imachooon 0:ac97d71fe296 274 0x00, //
imachooon 0:ac97d71fe296 275 0x00, //
imachooon 0:ac97d71fe296 276
imachooon 0:ac97d71fe296 277 // @184 '7' (5 pixels wide)
imachooon 0:ac97d71fe296 278 0x70, // ###
imachooon 0:ac97d71fe296 279 0x50, // # #
imachooon 0:ac97d71fe296 280 0x10, // #
imachooon 0:ac97d71fe296 281 0x20, // #
imachooon 0:ac97d71fe296 282 0x20, // #
imachooon 0:ac97d71fe296 283 0x20, // #
imachooon 0:ac97d71fe296 284 0x00, //
imachooon 0:ac97d71fe296 285 0x00, //
imachooon 0:ac97d71fe296 286
imachooon 0:ac97d71fe296 287 // @192 '8' (5 pixels wide)
imachooon 0:ac97d71fe296 288 0x20, // #
imachooon 0:ac97d71fe296 289 0x50, // # #
imachooon 0:ac97d71fe296 290 0x20, // #
imachooon 0:ac97d71fe296 291 0x50, // # #
imachooon 0:ac97d71fe296 292 0x50, // # #
imachooon 0:ac97d71fe296 293 0x20, // #
imachooon 0:ac97d71fe296 294 0x00, //
imachooon 0:ac97d71fe296 295 0x00, //
imachooon 0:ac97d71fe296 296
imachooon 0:ac97d71fe296 297 // @200 '9' (5 pixels wide)
imachooon 0:ac97d71fe296 298 0x30, // ##
imachooon 0:ac97d71fe296 299 0x50, // # #
imachooon 0:ac97d71fe296 300 0x50, // # #
imachooon 0:ac97d71fe296 301 0x30, // ##
imachooon 0:ac97d71fe296 302 0x10, // #
imachooon 0:ac97d71fe296 303 0x60, // ##
imachooon 0:ac97d71fe296 304 0x00, //
imachooon 0:ac97d71fe296 305 0x00, //
imachooon 0:ac97d71fe296 306
imachooon 0:ac97d71fe296 307 // @208 ':' (5 pixels wide)
imachooon 0:ac97d71fe296 308 0x00, //
imachooon 0:ac97d71fe296 309 0x00, //
imachooon 0:ac97d71fe296 310 0x20, // #
imachooon 0:ac97d71fe296 311 0x00, //
imachooon 0:ac97d71fe296 312 0x00, //
imachooon 0:ac97d71fe296 313 0x20, // #
imachooon 0:ac97d71fe296 314 0x00, //
imachooon 0:ac97d71fe296 315 0x00, //
imachooon 0:ac97d71fe296 316
imachooon 0:ac97d71fe296 317 // @216 ';' (5 pixels wide)
imachooon 0:ac97d71fe296 318 0x00, //
imachooon 0:ac97d71fe296 319 0x00, //
imachooon 0:ac97d71fe296 320 0x10, // #
imachooon 0:ac97d71fe296 321 0x00, //
imachooon 0:ac97d71fe296 322 0x10, // #
imachooon 0:ac97d71fe296 323 0x20, // #
imachooon 0:ac97d71fe296 324 0x00, //
imachooon 0:ac97d71fe296 325 0x00, //
imachooon 0:ac97d71fe296 326
imachooon 0:ac97d71fe296 327 // @224 '<' (5 pixels wide)
imachooon 0:ac97d71fe296 328 0x00, //
imachooon 0:ac97d71fe296 329 0x10, // #
imachooon 0:ac97d71fe296 330 0x20, // #
imachooon 0:ac97d71fe296 331 0xC0, // ##
imachooon 0:ac97d71fe296 332 0x20, // #
imachooon 0:ac97d71fe296 333 0x10, // #
imachooon 0:ac97d71fe296 334 0x00, //
imachooon 0:ac97d71fe296 335 0x00, //
imachooon 0:ac97d71fe296 336
imachooon 0:ac97d71fe296 337 // @232 '=' (5 pixels wide)
imachooon 0:ac97d71fe296 338 0x00, //
imachooon 0:ac97d71fe296 339 0x70, // ###
imachooon 0:ac97d71fe296 340 0x00, //
imachooon 0:ac97d71fe296 341 0x70, // ###
imachooon 0:ac97d71fe296 342 0x00, //
imachooon 0:ac97d71fe296 343 0x00, //
imachooon 0:ac97d71fe296 344 0x00, //
imachooon 0:ac97d71fe296 345 0x00, //
imachooon 0:ac97d71fe296 346
imachooon 0:ac97d71fe296 347 // @240 '>' (5 pixels wide)
imachooon 0:ac97d71fe296 348 0x00, //
imachooon 0:ac97d71fe296 349 0x40, // #
imachooon 0:ac97d71fe296 350 0x20, // #
imachooon 0:ac97d71fe296 351 0x18, // ##
imachooon 0:ac97d71fe296 352 0x20, // #
imachooon 0:ac97d71fe296 353 0x40, // #
imachooon 0:ac97d71fe296 354 0x00, //
imachooon 0:ac97d71fe296 355 0x00, //
imachooon 0:ac97d71fe296 356
imachooon 0:ac97d71fe296 357 // @248 '?' (5 pixels wide)
imachooon 0:ac97d71fe296 358 0x20, // #
imachooon 0:ac97d71fe296 359 0x50, // # #
imachooon 0:ac97d71fe296 360 0x10, // #
imachooon 0:ac97d71fe296 361 0x20, // #
imachooon 0:ac97d71fe296 362 0x00, //
imachooon 0:ac97d71fe296 363 0x20, // #
imachooon 0:ac97d71fe296 364 0x00, //
imachooon 0:ac97d71fe296 365 0x00, //
imachooon 0:ac97d71fe296 366
imachooon 0:ac97d71fe296 367 // @256 '@' (5 pixels wide)
imachooon 0:ac97d71fe296 368 0x30, // ##
imachooon 0:ac97d71fe296 369 0x48, // # #
imachooon 0:ac97d71fe296 370 0x48, // # #
imachooon 0:ac97d71fe296 371 0x58, // # ##
imachooon 0:ac97d71fe296 372 0x48, // # #
imachooon 0:ac97d71fe296 373 0x40, // #
imachooon 0:ac97d71fe296 374 0x38, // ###
imachooon 0:ac97d71fe296 375 0x00, //
imachooon 0:ac97d71fe296 376
imachooon 0:ac97d71fe296 377 // @264 'A' (5 pixels wide)
imachooon 0:ac97d71fe296 378 0x60, // ##
imachooon 0:ac97d71fe296 379 0x20, // #
imachooon 0:ac97d71fe296 380 0x50, // # #
imachooon 0:ac97d71fe296 381 0x70, // ###
imachooon 0:ac97d71fe296 382 0x88, // # #
imachooon 0:ac97d71fe296 383 0xD8, // ## ##
imachooon 0:ac97d71fe296 384 0x00, //
imachooon 0:ac97d71fe296 385 0x00, //
imachooon 0:ac97d71fe296 386
imachooon 0:ac97d71fe296 387 // @272 'B' (5 pixels wide)
imachooon 0:ac97d71fe296 388 0xF0, // ####
imachooon 0:ac97d71fe296 389 0x48, // # #
imachooon 0:ac97d71fe296 390 0x70, // ###
imachooon 0:ac97d71fe296 391 0x48, // # #
imachooon 0:ac97d71fe296 392 0x48, // # #
imachooon 0:ac97d71fe296 393 0xF0, // ####
imachooon 0:ac97d71fe296 394 0x00, //
imachooon 0:ac97d71fe296 395 0x00, //
imachooon 0:ac97d71fe296 396
imachooon 0:ac97d71fe296 397 // @280 'C' (5 pixels wide)
imachooon 0:ac97d71fe296 398 0x70, // ###
imachooon 0:ac97d71fe296 399 0x50, // # #
imachooon 0:ac97d71fe296 400 0x40, // #
imachooon 0:ac97d71fe296 401 0x40, // #
imachooon 0:ac97d71fe296 402 0x40, // #
imachooon 0:ac97d71fe296 403 0x30, // ##
imachooon 0:ac97d71fe296 404 0x00, //
imachooon 0:ac97d71fe296 405 0x00, //
imachooon 0:ac97d71fe296 406
imachooon 0:ac97d71fe296 407 // @288 'D' (5 pixels wide)
imachooon 0:ac97d71fe296 408 0xF0, // ####
imachooon 0:ac97d71fe296 409 0x48, // # #
imachooon 0:ac97d71fe296 410 0x48, // # #
imachooon 0:ac97d71fe296 411 0x48, // # #
imachooon 0:ac97d71fe296 412 0x48, // # #
imachooon 0:ac97d71fe296 413 0xF0, // ####
imachooon 0:ac97d71fe296 414 0x00, //
imachooon 0:ac97d71fe296 415 0x00, //
imachooon 0:ac97d71fe296 416
imachooon 0:ac97d71fe296 417 // @296 'E' (5 pixels wide)
imachooon 0:ac97d71fe296 418 0xF8, // #####
imachooon 0:ac97d71fe296 419 0x48, // # #
imachooon 0:ac97d71fe296 420 0x60, // ##
imachooon 0:ac97d71fe296 421 0x40, // #
imachooon 0:ac97d71fe296 422 0x48, // # #
imachooon 0:ac97d71fe296 423 0xF8, // #####
imachooon 0:ac97d71fe296 424 0x00, //
imachooon 0:ac97d71fe296 425 0x00, //
imachooon 0:ac97d71fe296 426
imachooon 0:ac97d71fe296 427 // @304 'F' (5 pixels wide)
imachooon 0:ac97d71fe296 428 0xF8, // #####
imachooon 0:ac97d71fe296 429 0x48, // # #
imachooon 0:ac97d71fe296 430 0x60, // ##
imachooon 0:ac97d71fe296 431 0x40, // #
imachooon 0:ac97d71fe296 432 0x40, // #
imachooon 0:ac97d71fe296 433 0xE0, // ###
imachooon 0:ac97d71fe296 434 0x00, //
imachooon 0:ac97d71fe296 435 0x00, //
imachooon 0:ac97d71fe296 436
imachooon 0:ac97d71fe296 437 // @312 'G' (5 pixels wide)
imachooon 0:ac97d71fe296 438 0x70, // ###
imachooon 0:ac97d71fe296 439 0x40, // #
imachooon 0:ac97d71fe296 440 0x40, // #
imachooon 0:ac97d71fe296 441 0x58, // # ##
imachooon 0:ac97d71fe296 442 0x50, // # #
imachooon 0:ac97d71fe296 443 0x30, // ##
imachooon 0:ac97d71fe296 444 0x00, //
imachooon 0:ac97d71fe296 445 0x00, //
imachooon 0:ac97d71fe296 446
imachooon 0:ac97d71fe296 447 // @320 'H' (5 pixels wide)
imachooon 0:ac97d71fe296 448 0xE8, // ### #
imachooon 0:ac97d71fe296 449 0x48, // # #
imachooon 0:ac97d71fe296 450 0x78, // ####
imachooon 0:ac97d71fe296 451 0x48, // # #
imachooon 0:ac97d71fe296 452 0x48, // # #
imachooon 0:ac97d71fe296 453 0xE8, // ### #
imachooon 0:ac97d71fe296 454 0x00, //
imachooon 0:ac97d71fe296 455 0x00, //
imachooon 0:ac97d71fe296 456
imachooon 0:ac97d71fe296 457 // @328 'I' (5 pixels wide)
imachooon 0:ac97d71fe296 458 0x70, // ###
imachooon 0:ac97d71fe296 459 0x20, // #
imachooon 0:ac97d71fe296 460 0x20, // #
imachooon 0:ac97d71fe296 461 0x20, // #
imachooon 0:ac97d71fe296 462 0x20, // #
imachooon 0:ac97d71fe296 463 0x70, // ###
imachooon 0:ac97d71fe296 464 0x00, //
imachooon 0:ac97d71fe296 465 0x00, //
imachooon 0:ac97d71fe296 466
imachooon 0:ac97d71fe296 467 // @336 'J' (5 pixels wide)
imachooon 0:ac97d71fe296 468 0x38, // ###
imachooon 0:ac97d71fe296 469 0x10, // #
imachooon 0:ac97d71fe296 470 0x10, // #
imachooon 0:ac97d71fe296 471 0x50, // # #
imachooon 0:ac97d71fe296 472 0x50, // # #
imachooon 0:ac97d71fe296 473 0x20, // #
imachooon 0:ac97d71fe296 474 0x00, //
imachooon 0:ac97d71fe296 475 0x00, //
imachooon 0:ac97d71fe296 476
imachooon 0:ac97d71fe296 477 // @344 'K' (5 pixels wide)
imachooon 0:ac97d71fe296 478 0xD8, // ## ##
imachooon 0:ac97d71fe296 479 0x50, // # #
imachooon 0:ac97d71fe296 480 0x60, // ##
imachooon 0:ac97d71fe296 481 0x70, // ###
imachooon 0:ac97d71fe296 482 0x50, // # #
imachooon 0:ac97d71fe296 483 0xD8, // ## ##
imachooon 0:ac97d71fe296 484 0x00, //
imachooon 0:ac97d71fe296 485 0x00, //
imachooon 0:ac97d71fe296 486
imachooon 0:ac97d71fe296 487 // @352 'L' (5 pixels wide)
imachooon 0:ac97d71fe296 488 0xE0, // ###
imachooon 0:ac97d71fe296 489 0x40, // #
imachooon 0:ac97d71fe296 490 0x40, // #
imachooon 0:ac97d71fe296 491 0x40, // #
imachooon 0:ac97d71fe296 492 0x48, // # #
imachooon 0:ac97d71fe296 493 0xF8, // #####
imachooon 0:ac97d71fe296 494 0x00, //
imachooon 0:ac97d71fe296 495 0x00, //
imachooon 0:ac97d71fe296 496
imachooon 0:ac97d71fe296 497 // @360 'M' (5 pixels wide)
imachooon 0:ac97d71fe296 498 0xD8, // ## ##
imachooon 0:ac97d71fe296 499 0xD8, // ## ##
imachooon 0:ac97d71fe296 500 0xD8, // ## ##
imachooon 0:ac97d71fe296 501 0xA8, // # # #
imachooon 0:ac97d71fe296 502 0x88, // # #
imachooon 0:ac97d71fe296 503 0xD8, // ## ##
imachooon 0:ac97d71fe296 504 0x00, //
imachooon 0:ac97d71fe296 505 0x00, //
imachooon 0:ac97d71fe296 506
imachooon 0:ac97d71fe296 507 // @368 'N' (5 pixels wide)
imachooon 0:ac97d71fe296 508 0xD8, // ## ##
imachooon 0:ac97d71fe296 509 0x68, // ## #
imachooon 0:ac97d71fe296 510 0x68, // ## #
imachooon 0:ac97d71fe296 511 0x58, // # ##
imachooon 0:ac97d71fe296 512 0x58, // # ##
imachooon 0:ac97d71fe296 513 0xE8, // ### #
imachooon 0:ac97d71fe296 514 0x00, //
imachooon 0:ac97d71fe296 515 0x00, //
imachooon 0:ac97d71fe296 516
imachooon 0:ac97d71fe296 517 // @376 'O' (5 pixels wide)
imachooon 0:ac97d71fe296 518 0x30, // ##
imachooon 0:ac97d71fe296 519 0x48, // # #
imachooon 0:ac97d71fe296 520 0x48, // # #
imachooon 0:ac97d71fe296 521 0x48, // # #
imachooon 0:ac97d71fe296 522 0x48, // # #
imachooon 0:ac97d71fe296 523 0x30, // ##
imachooon 0:ac97d71fe296 524 0x00, //
imachooon 0:ac97d71fe296 525 0x00, //
imachooon 0:ac97d71fe296 526
imachooon 0:ac97d71fe296 527 // @384 'P' (5 pixels wide)
imachooon 0:ac97d71fe296 528 0xF0, // ####
imachooon 0:ac97d71fe296 529 0x48, // # #
imachooon 0:ac97d71fe296 530 0x48, // # #
imachooon 0:ac97d71fe296 531 0x70, // ###
imachooon 0:ac97d71fe296 532 0x40, // #
imachooon 0:ac97d71fe296 533 0xE0, // ###
imachooon 0:ac97d71fe296 534 0x00, //
imachooon 0:ac97d71fe296 535 0x00, //
imachooon 0:ac97d71fe296 536
imachooon 0:ac97d71fe296 537 // @392 'Q' (5 pixels wide)
imachooon 0:ac97d71fe296 538 0x30, // ##
imachooon 0:ac97d71fe296 539 0x48, // # #
imachooon 0:ac97d71fe296 540 0x48, // # #
imachooon 0:ac97d71fe296 541 0x48, // # #
imachooon 0:ac97d71fe296 542 0x48, // # #
imachooon 0:ac97d71fe296 543 0x30, // ##
imachooon 0:ac97d71fe296 544 0x18, // ##
imachooon 0:ac97d71fe296 545 0x00, //
imachooon 0:ac97d71fe296 546
imachooon 0:ac97d71fe296 547 // @400 'R' (5 pixels wide)
imachooon 0:ac97d71fe296 548 0xF0, // ####
imachooon 0:ac97d71fe296 549 0x48, // # #
imachooon 0:ac97d71fe296 550 0x48, // # #
imachooon 0:ac97d71fe296 551 0x70, // ###
imachooon 0:ac97d71fe296 552 0x48, // # #
imachooon 0:ac97d71fe296 553 0xE8, // ### #
imachooon 0:ac97d71fe296 554 0x00, //
imachooon 0:ac97d71fe296 555 0x00, //
imachooon 0:ac97d71fe296 556
imachooon 0:ac97d71fe296 557 // @408 'S' (5 pixels wide)
imachooon 0:ac97d71fe296 558 0x70, // ###
imachooon 0:ac97d71fe296 559 0x50, // # #
imachooon 0:ac97d71fe296 560 0x20, // #
imachooon 0:ac97d71fe296 561 0x10, // #
imachooon 0:ac97d71fe296 562 0x50, // # #
imachooon 0:ac97d71fe296 563 0x70, // ###
imachooon 0:ac97d71fe296 564 0x00, //
imachooon 0:ac97d71fe296 565 0x00, //
imachooon 0:ac97d71fe296 566
imachooon 0:ac97d71fe296 567 // @416 'T' (5 pixels wide)
imachooon 0:ac97d71fe296 568 0xF8, // #####
imachooon 0:ac97d71fe296 569 0xA8, // # # #
imachooon 0:ac97d71fe296 570 0x20, // #
imachooon 0:ac97d71fe296 571 0x20, // #
imachooon 0:ac97d71fe296 572 0x20, // #
imachooon 0:ac97d71fe296 573 0x70, // ###
imachooon 0:ac97d71fe296 574 0x00, //
imachooon 0:ac97d71fe296 575 0x00, //
imachooon 0:ac97d71fe296 576
imachooon 0:ac97d71fe296 577 // @424 'U' (5 pixels wide)
imachooon 0:ac97d71fe296 578 0xD8, // ## ##
imachooon 0:ac97d71fe296 579 0x48, // # #
imachooon 0:ac97d71fe296 580 0x48, // # #
imachooon 0:ac97d71fe296 581 0x48, // # #
imachooon 0:ac97d71fe296 582 0x48, // # #
imachooon 0:ac97d71fe296 583 0x30, // ##
imachooon 0:ac97d71fe296 584 0x00, //
imachooon 0:ac97d71fe296 585 0x00, //
imachooon 0:ac97d71fe296 586
imachooon 0:ac97d71fe296 587 // @432 'V' (5 pixels wide)
imachooon 0:ac97d71fe296 588 0xD8, // ## ##
imachooon 0:ac97d71fe296 589 0x88, // # #
imachooon 0:ac97d71fe296 590 0x48, // # #
imachooon 0:ac97d71fe296 591 0x50, // # #
imachooon 0:ac97d71fe296 592 0x50, // # #
imachooon 0:ac97d71fe296 593 0x30, // ##
imachooon 0:ac97d71fe296 594 0x00, //
imachooon 0:ac97d71fe296 595 0x00, //
imachooon 0:ac97d71fe296 596
imachooon 0:ac97d71fe296 597 // @440 'W' (5 pixels wide)
imachooon 0:ac97d71fe296 598 0xD8, // ## ##
imachooon 0:ac97d71fe296 599 0x88, // # #
imachooon 0:ac97d71fe296 600 0xA8, // # # #
imachooon 0:ac97d71fe296 601 0xA8, // # # #
imachooon 0:ac97d71fe296 602 0xA8, // # # #
imachooon 0:ac97d71fe296 603 0x50, // # #
imachooon 0:ac97d71fe296 604 0x00, //
imachooon 0:ac97d71fe296 605 0x00, //
imachooon 0:ac97d71fe296 606
imachooon 0:ac97d71fe296 607 // @448 'X' (5 pixels wide)
imachooon 0:ac97d71fe296 608 0xD8, // ## ##
imachooon 0:ac97d71fe296 609 0x50, // # #
imachooon 0:ac97d71fe296 610 0x20, // #
imachooon 0:ac97d71fe296 611 0x20, // #
imachooon 0:ac97d71fe296 612 0x50, // # #
imachooon 0:ac97d71fe296 613 0xD8, // ## ##
imachooon 0:ac97d71fe296 614 0x00, //
imachooon 0:ac97d71fe296 615 0x00, //
imachooon 0:ac97d71fe296 616
imachooon 0:ac97d71fe296 617 // @456 'Y' (5 pixels wide)
imachooon 0:ac97d71fe296 618 0xD8, // ## ##
imachooon 0:ac97d71fe296 619 0x88, // # #
imachooon 0:ac97d71fe296 620 0x50, // # #
imachooon 0:ac97d71fe296 621 0x20, // #
imachooon 0:ac97d71fe296 622 0x20, // #
imachooon 0:ac97d71fe296 623 0x70, // ###
imachooon 0:ac97d71fe296 624 0x00, //
imachooon 0:ac97d71fe296 625 0x00, //
imachooon 0:ac97d71fe296 626
imachooon 0:ac97d71fe296 627 // @464 'Z' (5 pixels wide)
imachooon 0:ac97d71fe296 628 0x78, // ####
imachooon 0:ac97d71fe296 629 0x48, // # #
imachooon 0:ac97d71fe296 630 0x10, // #
imachooon 0:ac97d71fe296 631 0x20, // #
imachooon 0:ac97d71fe296 632 0x48, // # #
imachooon 0:ac97d71fe296 633 0x78, // ####
imachooon 0:ac97d71fe296 634 0x00, //
imachooon 0:ac97d71fe296 635 0x00, //
imachooon 0:ac97d71fe296 636
imachooon 0:ac97d71fe296 637 // @472 '[' (5 pixels wide)
imachooon 0:ac97d71fe296 638 0x30, // ##
imachooon 0:ac97d71fe296 639 0x20, // #
imachooon 0:ac97d71fe296 640 0x20, // #
imachooon 0:ac97d71fe296 641 0x20, // #
imachooon 0:ac97d71fe296 642 0x20, // #
imachooon 0:ac97d71fe296 643 0x20, // #
imachooon 0:ac97d71fe296 644 0x30, // ##
imachooon 0:ac97d71fe296 645 0x00, //
imachooon 0:ac97d71fe296 646
imachooon 0:ac97d71fe296 647 // @480 '\' (5 pixels wide)
imachooon 0:ac97d71fe296 648 0x80, // #
imachooon 0:ac97d71fe296 649 0x40, // #
imachooon 0:ac97d71fe296 650 0x40, // #
imachooon 0:ac97d71fe296 651 0x20, // #
imachooon 0:ac97d71fe296 652 0x20, // #
imachooon 0:ac97d71fe296 653 0x20, // #
imachooon 0:ac97d71fe296 654 0x10, // #
imachooon 0:ac97d71fe296 655 0x00, //
imachooon 0:ac97d71fe296 656
imachooon 0:ac97d71fe296 657 // @488 ']' (5 pixels wide)
imachooon 0:ac97d71fe296 658 0x60, // ##
imachooon 0:ac97d71fe296 659 0x20, // #
imachooon 0:ac97d71fe296 660 0x20, // #
imachooon 0:ac97d71fe296 661 0x20, // #
imachooon 0:ac97d71fe296 662 0x20, // #
imachooon 0:ac97d71fe296 663 0x20, // #
imachooon 0:ac97d71fe296 664 0x60, // ##
imachooon 0:ac97d71fe296 665 0x00, //
imachooon 0:ac97d71fe296 666
imachooon 0:ac97d71fe296 667 // @496 '^' (5 pixels wide)
imachooon 0:ac97d71fe296 668 0x20, // #
imachooon 0:ac97d71fe296 669 0x20, // #
imachooon 0:ac97d71fe296 670 0x50, // # #
imachooon 0:ac97d71fe296 671 0x00, //
imachooon 0:ac97d71fe296 672 0x00, //
imachooon 0:ac97d71fe296 673 0x00, //
imachooon 0:ac97d71fe296 674 0x00, //
imachooon 0:ac97d71fe296 675 0x00, //
imachooon 0:ac97d71fe296 676
imachooon 0:ac97d71fe296 677 // @504 '_' (5 pixels wide)
imachooon 0:ac97d71fe296 678 0x00, //
imachooon 0:ac97d71fe296 679 0x00, //
imachooon 0:ac97d71fe296 680 0x00, //
imachooon 0:ac97d71fe296 681 0x00, //
imachooon 0:ac97d71fe296 682 0x00, //
imachooon 0:ac97d71fe296 683 0x00, //
imachooon 0:ac97d71fe296 684 0x00, //
imachooon 0:ac97d71fe296 685 0xF8, // #####
imachooon 0:ac97d71fe296 686
imachooon 0:ac97d71fe296 687 // @512 '`' (5 pixels wide)
imachooon 0:ac97d71fe296 688 0x20, // #
imachooon 0:ac97d71fe296 689 0x10, // #
imachooon 0:ac97d71fe296 690 0x00, //
imachooon 0:ac97d71fe296 691 0x00, //
imachooon 0:ac97d71fe296 692 0x00, //
imachooon 0:ac97d71fe296 693 0x00, //
imachooon 0:ac97d71fe296 694 0x00, //
imachooon 0:ac97d71fe296 695 0x00, //
imachooon 0:ac97d71fe296 696
imachooon 0:ac97d71fe296 697 // @520 'a' (5 pixels wide)
imachooon 0:ac97d71fe296 698 0x00, //
imachooon 0:ac97d71fe296 699 0x00, //
imachooon 0:ac97d71fe296 700 0x30, // ##
imachooon 0:ac97d71fe296 701 0x10, // #
imachooon 0:ac97d71fe296 702 0x70, // ###
imachooon 0:ac97d71fe296 703 0x78, // ####
imachooon 0:ac97d71fe296 704 0x00, //
imachooon 0:ac97d71fe296 705 0x00, //
imachooon 0:ac97d71fe296 706
imachooon 0:ac97d71fe296 707 // @528 'b' (5 pixels wide)
imachooon 0:ac97d71fe296 708 0xC0, // ##
imachooon 0:ac97d71fe296 709 0x40, // #
imachooon 0:ac97d71fe296 710 0x70, // ###
imachooon 0:ac97d71fe296 711 0x48, // # #
imachooon 0:ac97d71fe296 712 0x48, // # #
imachooon 0:ac97d71fe296 713 0xF0, // ####
imachooon 0:ac97d71fe296 714 0x00, //
imachooon 0:ac97d71fe296 715 0x00, //
imachooon 0:ac97d71fe296 716
imachooon 0:ac97d71fe296 717 // @536 'c' (5 pixels wide)
imachooon 0:ac97d71fe296 718 0x00, //
imachooon 0:ac97d71fe296 719 0x00, //
imachooon 0:ac97d71fe296 720 0x70, // ###
imachooon 0:ac97d71fe296 721 0x40, // #
imachooon 0:ac97d71fe296 722 0x40, // #
imachooon 0:ac97d71fe296 723 0x70, // ###
imachooon 0:ac97d71fe296 724 0x00, //
imachooon 0:ac97d71fe296 725 0x00, //
imachooon 0:ac97d71fe296 726
imachooon 0:ac97d71fe296 727 // @544 'd' (5 pixels wide)
imachooon 0:ac97d71fe296 728 0x18, // ##
imachooon 0:ac97d71fe296 729 0x08, // #
imachooon 0:ac97d71fe296 730 0x38, // ###
imachooon 0:ac97d71fe296 731 0x48, // # #
imachooon 0:ac97d71fe296 732 0x48, // # #
imachooon 0:ac97d71fe296 733 0x38, // ###
imachooon 0:ac97d71fe296 734 0x00, //
imachooon 0:ac97d71fe296 735 0x00, //
imachooon 0:ac97d71fe296 736
imachooon 0:ac97d71fe296 737 // @552 'e' (5 pixels wide)
imachooon 0:ac97d71fe296 738 0x00, //
imachooon 0:ac97d71fe296 739 0x00, //
imachooon 0:ac97d71fe296 740 0x70, // ###
imachooon 0:ac97d71fe296 741 0x70, // ###
imachooon 0:ac97d71fe296 742 0x40, // #
imachooon 0:ac97d71fe296 743 0x30, // ##
imachooon 0:ac97d71fe296 744 0x00, //
imachooon 0:ac97d71fe296 745 0x00, //
imachooon 0:ac97d71fe296 746
imachooon 0:ac97d71fe296 747 // @560 'f' (5 pixels wide)
imachooon 0:ac97d71fe296 748 0x10, // #
imachooon 0:ac97d71fe296 749 0x20, // #
imachooon 0:ac97d71fe296 750 0x70, // ###
imachooon 0:ac97d71fe296 751 0x20, // #
imachooon 0:ac97d71fe296 752 0x20, // #
imachooon 0:ac97d71fe296 753 0x70, // ###
imachooon 0:ac97d71fe296 754 0x00, //
imachooon 0:ac97d71fe296 755 0x00, //
imachooon 0:ac97d71fe296 756
imachooon 0:ac97d71fe296 757 // @568 'g' (5 pixels wide)
imachooon 0:ac97d71fe296 758 0x00, //
imachooon 0:ac97d71fe296 759 0x00, //
imachooon 0:ac97d71fe296 760 0x38, // ###
imachooon 0:ac97d71fe296 761 0x48, // # #
imachooon 0:ac97d71fe296 762 0x48, // # #
imachooon 0:ac97d71fe296 763 0x38, // ###
imachooon 0:ac97d71fe296 764 0x08, // #
imachooon 0:ac97d71fe296 765 0x30, // ##
imachooon 0:ac97d71fe296 766
imachooon 0:ac97d71fe296 767 // @576 'h' (5 pixels wide)
imachooon 0:ac97d71fe296 768 0xC0, // ##
imachooon 0:ac97d71fe296 769 0x40, // #
imachooon 0:ac97d71fe296 770 0x70, // ###
imachooon 0:ac97d71fe296 771 0x48, // # #
imachooon 0:ac97d71fe296 772 0x48, // # #
imachooon 0:ac97d71fe296 773 0xE8, // ### #
imachooon 0:ac97d71fe296 774 0x00, //
imachooon 0:ac97d71fe296 775 0x00, //
imachooon 0:ac97d71fe296 776
imachooon 0:ac97d71fe296 777 // @584 'i' (5 pixels wide)
imachooon 0:ac97d71fe296 778 0x20, // #
imachooon 0:ac97d71fe296 779 0x00, //
imachooon 0:ac97d71fe296 780 0x60, // ##
imachooon 0:ac97d71fe296 781 0x20, // #
imachooon 0:ac97d71fe296 782 0x20, // #
imachooon 0:ac97d71fe296 783 0x70, // ###
imachooon 0:ac97d71fe296 784 0x00, //
imachooon 0:ac97d71fe296 785 0x00, //
imachooon 0:ac97d71fe296 786
imachooon 0:ac97d71fe296 787 // @592 'j' (5 pixels wide)
imachooon 0:ac97d71fe296 788 0x20, // #
imachooon 0:ac97d71fe296 789 0x00, //
imachooon 0:ac97d71fe296 790 0x70, // ###
imachooon 0:ac97d71fe296 791 0x10, // #
imachooon 0:ac97d71fe296 792 0x10, // #
imachooon 0:ac97d71fe296 793 0x10, // #
imachooon 0:ac97d71fe296 794 0x10, // #
imachooon 0:ac97d71fe296 795 0x70, // ###
imachooon 0:ac97d71fe296 796
imachooon 0:ac97d71fe296 797 // @600 'k' (5 pixels wide)
imachooon 0:ac97d71fe296 798 0xC0, // ##
imachooon 0:ac97d71fe296 799 0x40, // #
imachooon 0:ac97d71fe296 800 0x58, // # ##
imachooon 0:ac97d71fe296 801 0x70, // ###
imachooon 0:ac97d71fe296 802 0x50, // # #
imachooon 0:ac97d71fe296 803 0xD8, // ## ##
imachooon 0:ac97d71fe296 804 0x00, //
imachooon 0:ac97d71fe296 805 0x00, //
imachooon 0:ac97d71fe296 806
imachooon 0:ac97d71fe296 807 // @608 'l' (5 pixels wide)
imachooon 0:ac97d71fe296 808 0x60, // ##
imachooon 0:ac97d71fe296 809 0x20, // #
imachooon 0:ac97d71fe296 810 0x20, // #
imachooon 0:ac97d71fe296 811 0x20, // #
imachooon 0:ac97d71fe296 812 0x20, // #
imachooon 0:ac97d71fe296 813 0x70, // ###
imachooon 0:ac97d71fe296 814 0x00, //
imachooon 0:ac97d71fe296 815 0x00, //
imachooon 0:ac97d71fe296 816
imachooon 0:ac97d71fe296 817 // @616 'm' (5 pixels wide)
imachooon 0:ac97d71fe296 818 0x00, //
imachooon 0:ac97d71fe296 819 0x00, //
imachooon 0:ac97d71fe296 820 0xD0, // ## #
imachooon 0:ac97d71fe296 821 0xA8, // # # #
imachooon 0:ac97d71fe296 822 0xA8, // # # #
imachooon 0:ac97d71fe296 823 0xA8, // # # #
imachooon 0:ac97d71fe296 824 0x00, //
imachooon 0:ac97d71fe296 825 0x00, //
imachooon 0:ac97d71fe296 826
imachooon 0:ac97d71fe296 827 // @624 'n' (5 pixels wide)
imachooon 0:ac97d71fe296 828 0x00, //
imachooon 0:ac97d71fe296 829 0x00, //
imachooon 0:ac97d71fe296 830 0xF0, // ####
imachooon 0:ac97d71fe296 831 0x48, // # #
imachooon 0:ac97d71fe296 832 0x48, // # #
imachooon 0:ac97d71fe296 833 0xC8, // ## #
imachooon 0:ac97d71fe296 834 0x00, //
imachooon 0:ac97d71fe296 835 0x00, //
imachooon 0:ac97d71fe296 836
imachooon 0:ac97d71fe296 837 // @632 'o' (5 pixels wide)
imachooon 0:ac97d71fe296 838 0x00, //
imachooon 0:ac97d71fe296 839 0x00, //
imachooon 0:ac97d71fe296 840 0x30, // ##
imachooon 0:ac97d71fe296 841 0x48, // # #
imachooon 0:ac97d71fe296 842 0x48, // # #
imachooon 0:ac97d71fe296 843 0x30, // ##
imachooon 0:ac97d71fe296 844 0x00, //
imachooon 0:ac97d71fe296 845 0x00, //
imachooon 0:ac97d71fe296 846
imachooon 0:ac97d71fe296 847 // @640 'p' (5 pixels wide)
imachooon 0:ac97d71fe296 848 0x00, //
imachooon 0:ac97d71fe296 849 0x00, //
imachooon 0:ac97d71fe296 850 0xF0, // ####
imachooon 0:ac97d71fe296 851 0x48, // # #
imachooon 0:ac97d71fe296 852 0x48, // # #
imachooon 0:ac97d71fe296 853 0x70, // ###
imachooon 0:ac97d71fe296 854 0x40, // #
imachooon 0:ac97d71fe296 855 0xE0, // ###
imachooon 0:ac97d71fe296 856
imachooon 0:ac97d71fe296 857 // @648 'q' (5 pixels wide)
imachooon 0:ac97d71fe296 858 0x00, //
imachooon 0:ac97d71fe296 859 0x00, //
imachooon 0:ac97d71fe296 860 0x38, // ###
imachooon 0:ac97d71fe296 861 0x48, // # #
imachooon 0:ac97d71fe296 862 0x48, // # #
imachooon 0:ac97d71fe296 863 0x38, // ###
imachooon 0:ac97d71fe296 864 0x08, // #
imachooon 0:ac97d71fe296 865 0x18, // ##
imachooon 0:ac97d71fe296 866
imachooon 0:ac97d71fe296 867 // @656 'r' (5 pixels wide)
imachooon 0:ac97d71fe296 868 0x00, //
imachooon 0:ac97d71fe296 869 0x00, //
imachooon 0:ac97d71fe296 870 0x78, // ####
imachooon 0:ac97d71fe296 871 0x20, // #
imachooon 0:ac97d71fe296 872 0x20, // #
imachooon 0:ac97d71fe296 873 0x70, // ###
imachooon 0:ac97d71fe296 874 0x00, //
imachooon 0:ac97d71fe296 875 0x00, //
imachooon 0:ac97d71fe296 876
imachooon 0:ac97d71fe296 877 // @664 's' (5 pixels wide)
imachooon 0:ac97d71fe296 878 0x00, //
imachooon 0:ac97d71fe296 879 0x00, //
imachooon 0:ac97d71fe296 880 0x30, // ##
imachooon 0:ac97d71fe296 881 0x20, // #
imachooon 0:ac97d71fe296 882 0x10, // #
imachooon 0:ac97d71fe296 883 0x60, // ##
imachooon 0:ac97d71fe296 884 0x00, //
imachooon 0:ac97d71fe296 885 0x00, //
imachooon 0:ac97d71fe296 886
imachooon 0:ac97d71fe296 887 // @672 't' (5 pixels wide)
imachooon 0:ac97d71fe296 888 0x00, //
imachooon 0:ac97d71fe296 889 0x40, // #
imachooon 0:ac97d71fe296 890 0xF0, // ####
imachooon 0:ac97d71fe296 891 0x40, // #
imachooon 0:ac97d71fe296 892 0x48, // # #
imachooon 0:ac97d71fe296 893 0x30, // ##
imachooon 0:ac97d71fe296 894 0x00, //
imachooon 0:ac97d71fe296 895 0x00, //
imachooon 0:ac97d71fe296 896
imachooon 0:ac97d71fe296 897 // @680 'u' (5 pixels wide)
imachooon 0:ac97d71fe296 898 0x00, //
imachooon 0:ac97d71fe296 899 0x00, //
imachooon 0:ac97d71fe296 900 0xD8, // ## ##
imachooon 0:ac97d71fe296 901 0x48, // # #
imachooon 0:ac97d71fe296 902 0x48, // # #
imachooon 0:ac97d71fe296 903 0x38, // ###
imachooon 0:ac97d71fe296 904 0x00, //
imachooon 0:ac97d71fe296 905 0x00, //
imachooon 0:ac97d71fe296 906
imachooon 0:ac97d71fe296 907 // @688 'v' (5 pixels wide)
imachooon 0:ac97d71fe296 908 0x00, //
imachooon 0:ac97d71fe296 909 0x00, //
imachooon 0:ac97d71fe296 910 0xC8, // ## #
imachooon 0:ac97d71fe296 911 0x48, // # #
imachooon 0:ac97d71fe296 912 0x30, // ##
imachooon 0:ac97d71fe296 913 0x30, // ##
imachooon 0:ac97d71fe296 914 0x00, //
imachooon 0:ac97d71fe296 915 0x00, //
imachooon 0:ac97d71fe296 916
imachooon 0:ac97d71fe296 917 // @696 'w' (5 pixels wide)
imachooon 0:ac97d71fe296 918 0x00, //
imachooon 0:ac97d71fe296 919 0x00, //
imachooon 0:ac97d71fe296 920 0xD8, // ## ##
imachooon 0:ac97d71fe296 921 0xA8, // # # #
imachooon 0:ac97d71fe296 922 0xA8, // # # #
imachooon 0:ac97d71fe296 923 0x50, // # #
imachooon 0:ac97d71fe296 924 0x00, //
imachooon 0:ac97d71fe296 925 0x00, //
imachooon 0:ac97d71fe296 926
imachooon 0:ac97d71fe296 927 // @704 'x' (5 pixels wide)
imachooon 0:ac97d71fe296 928 0x00, //
imachooon 0:ac97d71fe296 929 0x00, //
imachooon 0:ac97d71fe296 930 0x48, // # #
imachooon 0:ac97d71fe296 931 0x30, // ##
imachooon 0:ac97d71fe296 932 0x30, // ##
imachooon 0:ac97d71fe296 933 0x48, // # #
imachooon 0:ac97d71fe296 934 0x00, //
imachooon 0:ac97d71fe296 935 0x00, //
imachooon 0:ac97d71fe296 936
imachooon 0:ac97d71fe296 937 // @712 'y' (5 pixels wide)
imachooon 0:ac97d71fe296 938 0x00, //
imachooon 0:ac97d71fe296 939 0x00, //
imachooon 0:ac97d71fe296 940 0xD8, // ## ##
imachooon 0:ac97d71fe296 941 0x50, // # #
imachooon 0:ac97d71fe296 942 0x50, // # #
imachooon 0:ac97d71fe296 943 0x20, // #
imachooon 0:ac97d71fe296 944 0x20, // #
imachooon 0:ac97d71fe296 945 0x60, // ##
imachooon 0:ac97d71fe296 946
imachooon 0:ac97d71fe296 947 // @720 'z' (5 pixels wide)
imachooon 0:ac97d71fe296 948 0x00, //
imachooon 0:ac97d71fe296 949 0x00, //
imachooon 0:ac97d71fe296 950 0x78, // ####
imachooon 0:ac97d71fe296 951 0x50, // # #
imachooon 0:ac97d71fe296 952 0x28, // # #
imachooon 0:ac97d71fe296 953 0x78, // ####
imachooon 0:ac97d71fe296 954 0x00, //
imachooon 0:ac97d71fe296 955 0x00, //
imachooon 0:ac97d71fe296 956
imachooon 0:ac97d71fe296 957 // @728 '{' (5 pixels wide)
imachooon 0:ac97d71fe296 958 0x10, // #
imachooon 0:ac97d71fe296 959 0x20, // #
imachooon 0:ac97d71fe296 960 0x20, // #
imachooon 0:ac97d71fe296 961 0x60, // ##
imachooon 0:ac97d71fe296 962 0x20, // #
imachooon 0:ac97d71fe296 963 0x20, // #
imachooon 0:ac97d71fe296 964 0x10, // #
imachooon 0:ac97d71fe296 965 0x00, //
imachooon 0:ac97d71fe296 966
imachooon 0:ac97d71fe296 967 // @736 '|' (5 pixels wide)
imachooon 0:ac97d71fe296 968 0x20, // #
imachooon 0:ac97d71fe296 969 0x20, // #
imachooon 0:ac97d71fe296 970 0x20, // #
imachooon 0:ac97d71fe296 971 0x20, // #
imachooon 0:ac97d71fe296 972 0x20, // #
imachooon 0:ac97d71fe296 973 0x20, // #
imachooon 0:ac97d71fe296 974 0x20, // #
imachooon 0:ac97d71fe296 975 0x00, //
imachooon 0:ac97d71fe296 976
imachooon 0:ac97d71fe296 977 // @744 '}' (5 pixels wide)
imachooon 0:ac97d71fe296 978 0x40, // #
imachooon 0:ac97d71fe296 979 0x20, // #
imachooon 0:ac97d71fe296 980 0x20, // #
imachooon 0:ac97d71fe296 981 0x30, // ##
imachooon 0:ac97d71fe296 982 0x20, // #
imachooon 0:ac97d71fe296 983 0x20, // #
imachooon 0:ac97d71fe296 984 0x40, // #
imachooon 0:ac97d71fe296 985 0x00, //
imachooon 0:ac97d71fe296 986
imachooon 0:ac97d71fe296 987 // @752 '~' (5 pixels wide)
imachooon 0:ac97d71fe296 988 0x00, //
imachooon 0:ac97d71fe296 989 0x00, //
imachooon 0:ac97d71fe296 990 0x00, //
imachooon 0:ac97d71fe296 991 0x28, // # #
imachooon 0:ac97d71fe296 992 0x50, // # #
imachooon 0:ac97d71fe296 993 0x00, //
imachooon 0:ac97d71fe296 994 0x00, //
imachooon 0:ac97d71fe296 995 0x00, //
imachooon 0:ac97d71fe296 996 };
imachooon 0:ac97d71fe296 997
imachooon 0:ac97d71fe296 998 sFONT Font8 = {
imachooon 0:ac97d71fe296 999 Font8_Table,
imachooon 0:ac97d71fe296 1000 5, /* Width */
imachooon 0:ac97d71fe296 1001 8, /* Height */
imachooon 0:ac97d71fe296 1002 };
imachooon 0:ac97d71fe296 1003
imachooon 0:ac97d71fe296 1004 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/