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);
    }
}

font8.c

Committer:
imachooon
Date:
2018-02-16
Revision:
0:ac97d71fe296

File content as of revision 0:ac97d71fe296:

/**
  ******************************************************************************
  * @file    Font8.c
  * @author  MCD Application Team
  * @version V1.0.0
  * @date    18-February-2014
  * @brief   This file provides text Font8 for STM32xx-EVAL's LCD driver. 
  ******************************************************************************
  * @attention
  *
  * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
  *
  * Redistribution and use in source and binary forms, with or without modification,
  * are permitted provided that the following conditions are met:
  *   1. Redistributions of source code must retain the above copyright notice,
  *      this list of conditions and the following disclaimer.
  *   2. Redistributions in binary form must reproduce the above copyright notice,
  *      this list of conditions and the following disclaimer in the documentation
  *      and/or other materials provided with the distribution.
  *   3. Neither the name of STMicroelectronics nor the names of its contributors
  *      may be used to endorse or promote products derived from this software
  *      without specific prior written permission.
  *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  *
  ******************************************************************************
  */

/* Includes ------------------------------------------------------------------*/
#include "fonts.h"

// 
//  Font data for Courier New 12pt
// 

const uint8_t Font8_Table[] = 
{
    // @0 ' ' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      

    // @8 '!' (5 pixels wide)
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x00, //      
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @16 '"' (5 pixels wide)
    0x50, //  # # 
    0x50, //  # # 
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      

    // @24 '#' (5 pixels wide)
    0x28, //   # #
    0x50, //  # # 
    0xF8, // #####
    0x50, //  # # 
    0xF8, // #####
    0x50, //  # # 
    0xA0, // # #  
    0x00, //      

    // @32 '$' (5 pixels wide)
    0x20, //   #  
    0x30, //   ## 
    0x60, //  ##  
    0x30, //   ## 
    0x10, //    # 
    0x60, //  ##  
    0x20, //   #  
    0x00, //      

    // @40 '%' (5 pixels wide)
    0x20, //   #  
    0x20, //   #  
    0x18, //    ##
    0x60, //  ##  
    0x10, //    # 
    0x10, //    # 
    0x00, //      
    0x00, //      

    // @48 '&' (5 pixels wide)
    0x00, //      
    0x38, //   ###
    0x20, //   #  
    0x60, //  ##  
    0x50, //  # # 
    0x78, //  ####
    0x00, //      
    0x00, //      

    // @56 ''' (5 pixels wide)
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      

    // @64 '(' (5 pixels wide)
    0x10, //    # 
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x10, //    # 
    0x00, //      

    // @72 ')' (5 pixels wide)
    0x40, //  #   
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x40, //  #   
    0x00, //      

    // @80 '*' (5 pixels wide)
    0x20, //   #  
    0x70, //  ### 
    0x20, //   #  
    0x50, //  # # 
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      

    // @88 '+' (5 pixels wide)
    0x00, //      
    0x20, //   #  
    0x20, //   #  
    0xF8, // #####
    0x20, //   #  
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @96 ',' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x10, //    # 
    0x20, //   #  
    0x20, //   #  
    0x00, //      

    // @104 '-' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x00, //      
    0x70, //  ### 
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      

    // @112 '.' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @120 '/' (5 pixels wide)
    0x10, //    # 
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x40, //  #   
    0x40, //  #   
    0x80, // #    
    0x00, //      

    // @128 '0' (5 pixels wide)
    0x20, //   #  
    0x50, //  # # 
    0x50, //  # # 
    0x50, //  # # 
    0x50, //  # # 
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @136 '1' (5 pixels wide)
    0x60, //  ##  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0xF8, // #####
    0x00, //      
    0x00, //      

    // @144 '2' (5 pixels wide)
    0x20, //   #  
    0x50, //  # # 
    0x20, //   #  
    0x20, //   #  
    0x40, //  #   
    0x70, //  ### 
    0x00, //      
    0x00, //      

    // @152 '3' (5 pixels wide)
    0x20, //   #  
    0x50, //  # # 
    0x10, //    # 
    0x20, //   #  
    0x10, //    # 
    0x60, //  ##  
    0x00, //      
    0x00, //      

    // @160 '4' (5 pixels wide)
    0x10, //    # 
    0x30, //   ## 
    0x50, //  # # 
    0x78, //  ####
    0x10, //    # 
    0x38, //   ###
    0x00, //      
    0x00, //      

    // @168 '5' (5 pixels wide)
    0x70, //  ### 
    0x40, //  #   
    0x60, //  ##  
    0x10, //    # 
    0x50, //  # # 
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @176 '6' (5 pixels wide)
    0x30, //   ## 
    0x40, //  #   
    0x60, //  ##  
    0x50, //  # # 
    0x50, //  # # 
    0x60, //  ##  
    0x00, //      
    0x00, //      

    // @184 '7' (5 pixels wide)
    0x70, //  ### 
    0x50, //  # # 
    0x10, //    # 
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @192 '8' (5 pixels wide)
    0x20, //   #  
    0x50, //  # # 
    0x20, //   #  
    0x50, //  # # 
    0x50, //  # # 
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @200 '9' (5 pixels wide)
    0x30, //   ## 
    0x50, //  # # 
    0x50, //  # # 
    0x30, //   ## 
    0x10, //    # 
    0x60, //  ##  
    0x00, //      
    0x00, //      

    // @208 ':' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x20, //   #  
    0x00, //      
    0x00, //      
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @216 ';' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x10, //    # 
    0x00, //      
    0x10, //    # 
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @224 '<' (5 pixels wide)
    0x00, //      
    0x10, //    # 
    0x20, //   #  
    0xC0, // ##   
    0x20, //   #  
    0x10, //    # 
    0x00, //      
    0x00, //      

    // @232 '=' (5 pixels wide)
    0x00, //      
    0x70, //  ### 
    0x00, //      
    0x70, //  ### 
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      

    // @240 '>' (5 pixels wide)
    0x00, //      
    0x40, //  #   
    0x20, //   #  
    0x18, //    ##
    0x20, //   #  
    0x40, //  #   
    0x00, //      
    0x00, //      

    // @248 '?' (5 pixels wide)
    0x20, //   #  
    0x50, //  # # 
    0x10, //    # 
    0x20, //   #  
    0x00, //      
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @256 '@' (5 pixels wide)
    0x30, //   ## 
    0x48, //  #  #
    0x48, //  #  #
    0x58, //  # ##
    0x48, //  #  #
    0x40, //  #   
    0x38, //   ###
    0x00, //      

    // @264 'A' (5 pixels wide)
    0x60, //  ##  
    0x20, //   #  
    0x50, //  # # 
    0x70, //  ### 
    0x88, // #   #
    0xD8, // ## ##
    0x00, //      
    0x00, //      

    // @272 'B' (5 pixels wide)
    0xF0, // #### 
    0x48, //  #  #
    0x70, //  ### 
    0x48, //  #  #
    0x48, //  #  #
    0xF0, // #### 
    0x00, //      
    0x00, //      

    // @280 'C' (5 pixels wide)
    0x70, //  ### 
    0x50, //  # # 
    0x40, //  #   
    0x40, //  #   
    0x40, //  #   
    0x30, //   ## 
    0x00, //      
    0x00, //      

    // @288 'D' (5 pixels wide)
    0xF0, // #### 
    0x48, //  #  #
    0x48, //  #  #
    0x48, //  #  #
    0x48, //  #  #
    0xF0, // #### 
    0x00, //      
    0x00, //      

    // @296 'E' (5 pixels wide)
    0xF8, // #####
    0x48, //  #  #
    0x60, //  ##  
    0x40, //  #   
    0x48, //  #  #
    0xF8, // #####
    0x00, //      
    0x00, //      

    // @304 'F' (5 pixels wide)
    0xF8, // #####
    0x48, //  #  #
    0x60, //  ##  
    0x40, //  #   
    0x40, //  #   
    0xE0, // ###  
    0x00, //      
    0x00, //      

    // @312 'G' (5 pixels wide)
    0x70, //  ### 
    0x40, //  #   
    0x40, //  #   
    0x58, //  # ##
    0x50, //  # # 
    0x30, //   ## 
    0x00, //      
    0x00, //      

    // @320 'H' (5 pixels wide)
    0xE8, // ### #
    0x48, //  #  #
    0x78, //  ####
    0x48, //  #  #
    0x48, //  #  #
    0xE8, // ### #
    0x00, //      
    0x00, //      

    // @328 'I' (5 pixels wide)
    0x70, //  ### 
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x70, //  ### 
    0x00, //      
    0x00, //      

    // @336 'J' (5 pixels wide)
    0x38, //   ###
    0x10, //    # 
    0x10, //    # 
    0x50, //  # # 
    0x50, //  # # 
    0x20, //   #  
    0x00, //      
    0x00, //      

    // @344 'K' (5 pixels wide)
    0xD8, // ## ##
    0x50, //  # # 
    0x60, //  ##  
    0x70, //  ### 
    0x50, //  # # 
    0xD8, // ## ##
    0x00, //      
    0x00, //      

    // @352 'L' (5 pixels wide)
    0xE0, // ###  
    0x40, //  #   
    0x40, //  #   
    0x40, //  #   
    0x48, //  #  #
    0xF8, // #####
    0x00, //      
    0x00, //      

    // @360 'M' (5 pixels wide)
    0xD8, // ## ##
    0xD8, // ## ##
    0xD8, // ## ##
    0xA8, // # # #
    0x88, // #   #
    0xD8, // ## ##
    0x00, //      
    0x00, //      

    // @368 'N' (5 pixels wide)
    0xD8, // ## ##
    0x68, //  ## #
    0x68, //  ## #
    0x58, //  # ##
    0x58, //  # ##
    0xE8, // ### #
    0x00, //      
    0x00, //      

    // @376 'O' (5 pixels wide)
    0x30, //   ## 
    0x48, //  #  #
    0x48, //  #  #
    0x48, //  #  #
    0x48, //  #  #
    0x30, //   ## 
    0x00, //      
    0x00, //      

    // @384 'P' (5 pixels wide)
    0xF0, // #### 
    0x48, //  #  #
    0x48, //  #  #
    0x70, //  ### 
    0x40, //  #   
    0xE0, // ###  
    0x00, //      
    0x00, //      

    // @392 'Q' (5 pixels wide)
    0x30, //   ## 
    0x48, //  #  #
    0x48, //  #  #
    0x48, //  #  #
    0x48, //  #  #
    0x30, //   ## 
    0x18, //    ##
    0x00, //      

    // @400 'R' (5 pixels wide)
    0xF0, // #### 
    0x48, //  #  #
    0x48, //  #  #
    0x70, //  ### 
    0x48, //  #  #
    0xE8, // ### #
    0x00, //      
    0x00, //      

    // @408 'S' (5 pixels wide)
    0x70, //  ### 
    0x50, //  # # 
    0x20, //   #  
    0x10, //    # 
    0x50, //  # # 
    0x70, //  ### 
    0x00, //      
    0x00, //      

    // @416 'T' (5 pixels wide)
    0xF8, // #####
    0xA8, // # # #
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x70, //  ### 
    0x00, //      
    0x00, //      

    // @424 'U' (5 pixels wide)
    0xD8, // ## ##
    0x48, //  #  #
    0x48, //  #  #
    0x48, //  #  #
    0x48, //  #  #
    0x30, //   ## 
    0x00, //      
    0x00, //      

    // @432 'V' (5 pixels wide)
    0xD8, // ## ##
    0x88, // #   #
    0x48, //  #  #
    0x50, //  # # 
    0x50, //  # # 
    0x30, //   ## 
    0x00, //      
    0x00, //      

    // @440 'W' (5 pixels wide)
    0xD8, // ## ##
    0x88, // #   #
    0xA8, // # # #
    0xA8, // # # #
    0xA8, // # # #
    0x50, //  # # 
    0x00, //      
    0x00, //      

    // @448 'X' (5 pixels wide)
    0xD8, // ## ##
    0x50, //  # # 
    0x20, //   #  
    0x20, //   #  
    0x50, //  # # 
    0xD8, // ## ##
    0x00, //      
    0x00, //      

    // @456 'Y' (5 pixels wide)
    0xD8, // ## ##
    0x88, // #   #
    0x50, //  # # 
    0x20, //   #  
    0x20, //   #  
    0x70, //  ### 
    0x00, //      
    0x00, //      

    // @464 'Z' (5 pixels wide)
    0x78, //  ####
    0x48, //  #  #
    0x10, //    # 
    0x20, //   #  
    0x48, //  #  #
    0x78, //  ####
    0x00, //      
    0x00, //      

    // @472 '[' (5 pixels wide)
    0x30, //   ## 
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x30, //   ## 
    0x00, //      

    // @480 '\' (5 pixels wide)
    0x80, // #    
    0x40, //  #   
    0x40, //  #   
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x10, //    # 
    0x00, //      

    // @488 ']' (5 pixels wide)
    0x60, //  ##  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x60, //  ##  
    0x00, //      

    // @496 '^' (5 pixels wide)
    0x20, //   #  
    0x20, //   #  
    0x50, //  # # 
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      

    // @504 '_' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0xF8, // #####

    // @512 '`' (5 pixels wide)
    0x20, //   #  
    0x10, //    # 
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      
    0x00, //      

    // @520 'a' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x30, //   ## 
    0x10, //    # 
    0x70, //  ### 
    0x78, //  ####
    0x00, //      
    0x00, //      

    // @528 'b' (5 pixels wide)
    0xC0, // ##   
    0x40, //  #   
    0x70, //  ### 
    0x48, //  #  #
    0x48, //  #  #
    0xF0, // #### 
    0x00, //      
    0x00, //      

    // @536 'c' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x70, //  ### 
    0x40, //  #   
    0x40, //  #   
    0x70, //  ### 
    0x00, //      
    0x00, //      

    // @544 'd' (5 pixels wide)
    0x18, //    ##
    0x08, //     #
    0x38, //   ###
    0x48, //  #  #
    0x48, //  #  #
    0x38, //   ###
    0x00, //      
    0x00, //      

    // @552 'e' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x70, //  ### 
    0x70, //  ### 
    0x40, //  #   
    0x30, //   ## 
    0x00, //      
    0x00, //      

    // @560 'f' (5 pixels wide)
    0x10, //    # 
    0x20, //   #  
    0x70, //  ### 
    0x20, //   #  
    0x20, //   #  
    0x70, //  ### 
    0x00, //      
    0x00, //      

    // @568 'g' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x38, //   ###
    0x48, //  #  #
    0x48, //  #  #
    0x38, //   ###
    0x08, //     #
    0x30, //   ## 

    // @576 'h' (5 pixels wide)
    0xC0, // ##   
    0x40, //  #   
    0x70, //  ### 
    0x48, //  #  #
    0x48, //  #  #
    0xE8, // ### #
    0x00, //      
    0x00, //      

    // @584 'i' (5 pixels wide)
    0x20, //   #  
    0x00, //      
    0x60, //  ##  
    0x20, //   #  
    0x20, //   #  
    0x70, //  ### 
    0x00, //      
    0x00, //      

    // @592 'j' (5 pixels wide)
    0x20, //   #  
    0x00, //      
    0x70, //  ### 
    0x10, //    # 
    0x10, //    # 
    0x10, //    # 
    0x10, //    # 
    0x70, //  ### 

    // @600 'k' (5 pixels wide)
    0xC0, // ##   
    0x40, //  #   
    0x58, //  # ##
    0x70, //  ### 
    0x50, //  # # 
    0xD8, // ## ##
    0x00, //      
    0x00, //      

    // @608 'l' (5 pixels wide)
    0x60, //  ##  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x70, //  ### 
    0x00, //      
    0x00, //      

    // @616 'm' (5 pixels wide)
    0x00, //      
    0x00, //      
    0xD0, // ## # 
    0xA8, // # # #
    0xA8, // # # #
    0xA8, // # # #
    0x00, //      
    0x00, //      

    // @624 'n' (5 pixels wide)
    0x00, //      
    0x00, //      
    0xF0, // #### 
    0x48, //  #  #
    0x48, //  #  #
    0xC8, // ##  #
    0x00, //      
    0x00, //      

    // @632 'o' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x30, //   ## 
    0x48, //  #  #
    0x48, //  #  #
    0x30, //   ## 
    0x00, //      
    0x00, //      

    // @640 'p' (5 pixels wide)
    0x00, //      
    0x00, //      
    0xF0, // #### 
    0x48, //  #  #
    0x48, //  #  #
    0x70, //  ### 
    0x40, //  #   
    0xE0, // ###  

    // @648 'q' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x38, //   ###
    0x48, //  #  #
    0x48, //  #  #
    0x38, //   ###
    0x08, //     #
    0x18, //    ##

    // @656 'r' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x78, //  ####
    0x20, //   #  
    0x20, //   #  
    0x70, //  ### 
    0x00, //      
    0x00, //      

    // @664 's' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x30, //   ## 
    0x20, //   #  
    0x10, //    # 
    0x60, //  ##  
    0x00, //      
    0x00, //      

    // @672 't' (5 pixels wide)
    0x00, //      
    0x40, //  #   
    0xF0, // #### 
    0x40, //  #   
    0x48, //  #  #
    0x30, //   ## 
    0x00, //      
    0x00, //      

    // @680 'u' (5 pixels wide)
    0x00, //      
    0x00, //      
    0xD8, // ## ##
    0x48, //  #  #
    0x48, //  #  #
    0x38, //   ###
    0x00, //      
    0x00, //      

    // @688 'v' (5 pixels wide)
    0x00, //      
    0x00, //      
    0xC8, // ##  #
    0x48, //  #  #
    0x30, //   ## 
    0x30, //   ## 
    0x00, //      
    0x00, //      

    // @696 'w' (5 pixels wide)
    0x00, //      
    0x00, //      
    0xD8, // ## ##
    0xA8, // # # #
    0xA8, // # # #
    0x50, //  # # 
    0x00, //      
    0x00, //      

    // @704 'x' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x48, //  #  #
    0x30, //   ## 
    0x30, //   ## 
    0x48, //  #  #
    0x00, //      
    0x00, //      

    // @712 'y' (5 pixels wide)
    0x00, //      
    0x00, //      
    0xD8, // ## ##
    0x50, //  # # 
    0x50, //  # # 
    0x20, //   #  
    0x20, //   #  
    0x60, //  ##  

    // @720 'z' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x78, //  ####
    0x50, //  # # 
    0x28, //   # #
    0x78, //  ####
    0x00, //      
    0x00, //      

    // @728 '{' (5 pixels wide)
    0x10, //    # 
    0x20, //   #  
    0x20, //   #  
    0x60, //  ##  
    0x20, //   #  
    0x20, //   #  
    0x10, //    # 
    0x00, //      

    // @736 '|' (5 pixels wide)
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x20, //   #  
    0x00, //      

    // @744 '}' (5 pixels wide)
    0x40, //  #   
    0x20, //   #  
    0x20, //   #  
    0x30, //   ## 
    0x20, //   #  
    0x20, //   #  
    0x40, //  #   
    0x00, //      

    // @752 '~' (5 pixels wide)
    0x00, //      
    0x00, //      
    0x00, //      
    0x28, //   # #
    0x50, //  # # 
    0x00, //      
    0x00, //      
    0x00, //      
};

sFONT Font8 = {
  Font8_Table,
  5, /* Width */
  8, /* Height */
};

/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/