TFT

Dependencies:   mbed

Fork of Ovation_Controller_1 by Andrew R

Committer:
bf1891
Date:
Thu Aug 28 15:18:07 2014 +0000
Revision:
3:92845c139aca
Parent:
1:ecf8078bf531
publish;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewcrussell 1:ecf8078bf531 1 // *********************************************************************************
andrewcrussell 1:ecf8078bf531 2 //
andrewcrussell 1:ecf8078bf531 3 // Font tables for SSD1963 LCD Display Driver
andrewcrussell 1:ecf8078bf531 4 //
andrewcrussell 1:ecf8078bf531 5 // FONT6x8 - SMALL font (mostly 5x7)
andrewcrussell 1:ecf8078bf531 6 // FONT8x8 - MEDIUM font (8x8 characters, a bit thicker)
andrewcrussell 1:ecf8078bf531 7 // FONT8x16 - LARGE font (8x16 characters, thicker)
andrewcrussell 1:ecf8078bf531 8 //
andrewcrussell 1:ecf8078bf531 9 // Note: ASCII characters 0x00 through 0x1F are not included in these fonts.
andrewcrussell 1:ecf8078bf531 10 //
andrewcrussell 1:ecf8078bf531 11 // Author: Jim Parise, James P Lynch August 30, 2007
andrewcrussell 1:ecf8078bf531 12 // Adapted by Andrew C. Russell March 2011
andrewcrussell 1:ecf8078bf531 13 // *********************************************************************************
andrewcrussell 1:ecf8078bf531 14
andrewcrussell 1:ecf8078bf531 15 const unsigned char FONT6x8[97][8] = {
andrewcrussell 1:ecf8078bf531 16 0x06,0x08,0x08,0x00,0x00,0x00,0x00,0x00, // columns, rows, num_bytes_per_char
andrewcrussell 1:ecf8078bf531 17 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // space 0x20
andrewcrussell 1:ecf8078bf531 18 0x20,0x20,0x20,0x20,0x20,0x00,0x20,0x00, // !
andrewcrussell 1:ecf8078bf531 19 0x50,0x50,0x50,0x00,0x00,0x00,0x00,0x00, // "
andrewcrussell 1:ecf8078bf531 20 0x50,0x50,0xF8,0x50,0xF8,0x50,0x50,0x00, // #
andrewcrussell 1:ecf8078bf531 21 0x20,0x78,0xA0,0x70,0x28,0xF0,0x20,0x00, // $
andrewcrussell 1:ecf8078bf531 22 0xC0,0xC8,0x10,0x20,0x40,0x98,0x18,0x00, // %
andrewcrussell 1:ecf8078bf531 23 0x40,0xA0,0xA0,0x40,0xA8,0x90,0x68,0x00, // &
andrewcrussell 1:ecf8078bf531 24 0x30,0x30,0x20,0x40,0x00,0x00,0x00,0x00, // '
andrewcrussell 1:ecf8078bf531 25 0x10,0x20,0x40,0x40,0x40,0x20,0x10,0x00, // (
andrewcrussell 1:ecf8078bf531 26 0x40,0x20,0x10,0x10,0x10,0x20,0x40,0x00, // )
andrewcrussell 1:ecf8078bf531 27 0x00,0x20,0xA8,0x70,0x70,0xA8,0x20,0x00, // *
andrewcrussell 1:ecf8078bf531 28 0x00,0x20,0x20,0xF8,0x20,0x20,0x00,0x00, // +
andrewcrussell 1:ecf8078bf531 29 0x00,0x00,0x00,0x00,0x30,0x30,0x20,0x40, // ,
andrewcrussell 1:ecf8078bf531 30 0x00,0x00,0x00,0xF8,0x00,0x00,0x00,0x00, // -
andrewcrussell 1:ecf8078bf531 31 0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00, // .
andrewcrussell 1:ecf8078bf531 32 0x00,0x08,0x10,0x20,0x40,0x80,0x00,0x00, // / (forward slash)
andrewcrussell 1:ecf8078bf531 33 0x70,0x88,0x88,0xA8,0x88,0x88,0x70,0x00, // 0 0x30
andrewcrussell 1:ecf8078bf531 34 0x20,0x60,0x20,0x20,0x20,0x20,0x70,0x00, // 1
andrewcrussell 1:ecf8078bf531 35 0x70,0x88,0x08,0x70,0x80,0x80,0xF8,0x00, // 2
andrewcrussell 1:ecf8078bf531 36 0xF8,0x08,0x10,0x30,0x08,0x88,0x70,0x00, // 3
andrewcrussell 1:ecf8078bf531 37 0x10,0x30,0x50,0x90,0xF8,0x10,0x10,0x00, // 4
andrewcrussell 1:ecf8078bf531 38 0xF8,0x80,0xF0,0x08,0x08,0x88,0x70,0x00, // 5
andrewcrussell 1:ecf8078bf531 39 0x38,0x40,0x80,0xF0,0x88,0x88,0x70,0x00, // 6
andrewcrussell 1:ecf8078bf531 40 0xF8,0x08,0x08,0x10,0x20,0x40,0x80,0x00, // 7
andrewcrussell 1:ecf8078bf531 41 0x70,0x88,0x88,0x70,0x88,0x88,0x70,0x00, // 8
andrewcrussell 1:ecf8078bf531 42 0x70,0x88,0x88,0x78,0x08,0x10,0xE0,0x00, // 9
andrewcrussell 1:ecf8078bf531 43 0x00,0x00,0x20,0x00,0x20,0x00,0x00,0x00, // :
andrewcrussell 1:ecf8078bf531 44 0x00,0x00,0x20,0x00,0x20,0x20,0x40,0x00, // ;
andrewcrussell 1:ecf8078bf531 45 0x08,0x10,0x20,0x40,0x20,0x10,0x08,0x00, // <
andrewcrussell 1:ecf8078bf531 46 0x00,0x00,0xF8,0x00,0xF8,0x00,0x00,0x00, // =
andrewcrussell 1:ecf8078bf531 47 0x40,0x20,0x10,0x08,0x10,0x20,0x40,0x00, // >
andrewcrussell 1:ecf8078bf531 48 0x70,0x88,0x08,0x30,0x20,0x00,0x20,0x00, // ?
andrewcrussell 1:ecf8078bf531 49 0x70,0x88,0xA8,0xB8,0xB0,0x80,0x78,0x00, // @ 0x40
andrewcrussell 1:ecf8078bf531 50 0x20,0x50,0x88,0x88,0xF8,0x88,0x88,0x00, // A
andrewcrussell 1:ecf8078bf531 51 0xF0,0x88,0x88,0xF0,0x88,0x88,0xF0,0x00, // B
andrewcrussell 1:ecf8078bf531 52 0x70,0x88,0x80,0x80,0x80,0x88,0x70,0x00, // C
andrewcrussell 1:ecf8078bf531 53 0xF0,0x88,0x88,0x88,0x88,0x88,0xF0,0x00, // D
andrewcrussell 1:ecf8078bf531 54 0xF8,0x80,0x80,0xF0,0x80,0x80,0xF8,0x00, // E
andrewcrussell 1:ecf8078bf531 55 0xF8,0x80,0x80,0xF0,0x80,0x80,0x80,0x00, // F
andrewcrussell 1:ecf8078bf531 56 0x78,0x88,0x80,0x80,0x98,0x88,0x78,0x00, // G
andrewcrussell 1:ecf8078bf531 57 0x88,0x88,0x88,0xF8,0x88,0x88,0x88,0x00, // H
andrewcrussell 1:ecf8078bf531 58 0x70,0x20,0x20,0x20,0x20,0x20,0x70,0x00, // I
andrewcrussell 1:ecf8078bf531 59 0x38,0x10,0x10,0x10,0x10,0x90,0x60,0x00, // J
andrewcrussell 1:ecf8078bf531 60 0x88,0x90,0xA0,0xC0,0xA0,0x90,0x88,0x00, // K
andrewcrussell 1:ecf8078bf531 61 0x80,0x80,0x80,0x80,0x80,0x80,0xF8,0x00, // L
andrewcrussell 1:ecf8078bf531 62 0x88,0xD8,0xA8,0xA8,0xA8,0x88,0x88,0x00, // M
andrewcrussell 1:ecf8078bf531 63 0x88,0x88,0xC8,0xA8,0x98,0x88,0x88,0x00, // N
andrewcrussell 1:ecf8078bf531 64 0x70,0x88,0x88,0x88,0x88,0x88,0x70,0x00, // O
andrewcrussell 1:ecf8078bf531 65 0xF0,0x88,0x88,0xF0,0x80,0x80,0x80,0x00, // P 0x50
andrewcrussell 1:ecf8078bf531 66 0x70,0x88,0x88,0x88,0xA8,0x90,0x68,0x00, // Q
andrewcrussell 1:ecf8078bf531 67 0xF0,0x88,0x88,0xF0,0xA0,0x90,0x88,0x00, // R
andrewcrussell 1:ecf8078bf531 68 0x70,0x88,0x80,0x70,0x08,0x88,0x70,0x00, // S
andrewcrussell 1:ecf8078bf531 69 0xF8,0xA8,0x20,0x20,0x20,0x20,0x20,0x00, // T
andrewcrussell 1:ecf8078bf531 70 0x88,0x88,0x88,0x88,0x88,0x88,0x70,0x00, // U
andrewcrussell 1:ecf8078bf531 71 0x88,0x88,0x88,0x88,0x88,0x50,0x20,0x00, // V
andrewcrussell 1:ecf8078bf531 72 0x88,0x88,0x88,0xA8,0xA8,0xA8,0x50,0x00, // W
andrewcrussell 1:ecf8078bf531 73 0x88,0x88,0x50,0x20,0x50,0x88,0x88,0x00, // X
andrewcrussell 1:ecf8078bf531 74 0x88,0x88,0x50,0x20,0x20,0x20,0x20,0x00, // Y
andrewcrussell 1:ecf8078bf531 75 0xF8,0x08,0x10,0x70,0x40,0x80,0xF8,0x00, // Z
andrewcrussell 1:ecf8078bf531 76 0x78,0x40,0x40,0x40,0x40,0x40,0x78,0x00, // [
andrewcrussell 1:ecf8078bf531 77 0x00,0x80,0x40,0x20,0x10,0x08,0x00,0x00, // \ (back slash)
andrewcrussell 1:ecf8078bf531 78 0x78,0x08,0x08,0x08,0x08,0x08,0x78,0x00, // ]
andrewcrussell 1:ecf8078bf531 79 0x20,0x50,0x88,0x00,0x00,0x00,0x00,0x00, // ^
andrewcrussell 1:ecf8078bf531 80 0x00,0x00,0x00,0x00,0x00,0x00,0xF8,0x00, // _
andrewcrussell 1:ecf8078bf531 81 0x60,0x60,0x20,0x10,0x00,0x00,0x00,0x00, // ` 0x60
andrewcrussell 1:ecf8078bf531 82 0x00,0x00,0x60,0x10,0x70,0x90,0x78,0x00, // a
andrewcrussell 1:ecf8078bf531 83 0x80,0x80,0xB0,0xC8,0x88,0xC8,0xB0,0x00, // b
andrewcrussell 1:ecf8078bf531 84 0x00,0x00,0x70,0x88,0x80,0x88,0x70,0x00, // c
andrewcrussell 1:ecf8078bf531 85 0x08,0x08,0x68,0x98,0x88,0x98,0x68,0x00, // d
andrewcrussell 1:ecf8078bf531 86 0x00,0x00,0x70,0x88,0xF8,0x80,0x70,0x00, // e
andrewcrussell 1:ecf8078bf531 87 0x10,0x28,0x20,0x70,0x20,0x20,0x20,0x00, // f
andrewcrussell 1:ecf8078bf531 88 0x00,0x00,0x70,0x98,0x98,0x68,0x08,0x70, // g
andrewcrussell 1:ecf8078bf531 89 0x80,0x80,0xB0,0xC8,0x88,0x88,0x88,0x00, // h
andrewcrussell 1:ecf8078bf531 90 0x20,0x00,0x60,0x20,0x20,0x20,0x70,0x00, // i
andrewcrussell 1:ecf8078bf531 91 0x10,0x00,0x10,0x10,0x10,0x90,0x60,0x00, // j
andrewcrussell 1:ecf8078bf531 92 0x80,0x80,0x90,0xA0,0xC0,0xA0,0x90,0x00, // k
andrewcrussell 1:ecf8078bf531 93 0x60,0x20,0x20,0x20,0x20,0x20,0x70,0x00, // l
andrewcrussell 1:ecf8078bf531 94 0x00,0x00,0xD0,0xA8,0xA8,0xA8,0xA8,0x00, // m
andrewcrussell 1:ecf8078bf531 95 0x00,0x00,0xB0,0xC8,0x88,0x88,0x88,0x00, // n
andrewcrussell 1:ecf8078bf531 96 0x00,0x00,0x70,0x88,0x88,0x88,0x70,0x00, // o
andrewcrussell 1:ecf8078bf531 97 0x00,0x00,0xB0,0xC8,0xC8,0xB0,0x80,0x80, // p 0x70
andrewcrussell 1:ecf8078bf531 98 0x00,0x00,0x68,0x98,0x98,0x68,0x08,0x08, // q
andrewcrussell 1:ecf8078bf531 99 0x00,0x00,0xB0,0xC8,0x80,0x80,0x80,0x00, // r
andrewcrussell 1:ecf8078bf531 100 0x00,0x00,0x78,0x80,0x70,0x08,0xF0,0x00, // s
andrewcrussell 1:ecf8078bf531 101 0x20,0x20,0xF8,0x20,0x20,0x28,0x10,0x00, // t
andrewcrussell 1:ecf8078bf531 102 0x00,0x00,0x88,0x88,0x88,0x98,0x68,0x00, // u
andrewcrussell 1:ecf8078bf531 103 0x00,0x00,0x88,0x88,0x88,0x50,0x20,0x00, // v
andrewcrussell 1:ecf8078bf531 104 0x00,0x00,0x88,0x88,0xA8,0xA8,0x50,0x00, // w
andrewcrussell 1:ecf8078bf531 105 0x00,0x00,0x88,0x50,0x20,0x50,0x88,0x00, // x
andrewcrussell 1:ecf8078bf531 106 0x00,0x00,0x88,0x88,0x78,0x08,0x88,0x70, // y
andrewcrussell 1:ecf8078bf531 107 0x00,0x00,0xF8,0x10,0x20,0x40,0xF8,0x00, // z
andrewcrussell 1:ecf8078bf531 108 0x10,0x20,0x20,0x40,0x20,0x20,0x10,0x00, // {
andrewcrussell 1:ecf8078bf531 109 0x20,0x20,0x20,0x00,0x20,0x20,0x20,0x00, // |
andrewcrussell 1:ecf8078bf531 110 0x40,0x20,0x20,0x10,0x20,0x20,0x40,0x00, // }
andrewcrussell 1:ecf8078bf531 111 0x40,0xA8,0x10,0x00,0x00,0x00,0x00,0x00, // ~
andrewcrussell 1:ecf8078bf531 112 0x70,0xD8,0xD8,0x70,0x00,0x00,0x00,0x00}; // DEL
andrewcrussell 1:ecf8078bf531 113
andrewcrussell 1:ecf8078bf531 114 const unsigned char FONT8x8[97][8] = {
andrewcrussell 1:ecf8078bf531 115 0x08,0x08,0x08,0x00,0x00,0x00,0x00,0x00, // columns, rows, num_bytes_per_char
andrewcrussell 1:ecf8078bf531 116 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // space 0x20
andrewcrussell 1:ecf8078bf531 117 0x30,0x78,0x78,0x30,0x30,0x00,0x30,0x00, // !
andrewcrussell 1:ecf8078bf531 118 0x6C,0x6C,0x6C,0x00,0x00,0x00,0x00,0x00, // "
andrewcrussell 1:ecf8078bf531 119 0x6C,0x6C,0xFE,0x6C,0xFE,0x6C,0x6C,0x00, // #
andrewcrussell 1:ecf8078bf531 120 0x18,0x3E,0x60,0x3C,0x06,0x7C,0x18,0x00, // $
andrewcrussell 1:ecf8078bf531 121 0x00,0x63,0x66,0x0C,0x18,0x33,0x63,0x00, // %
andrewcrussell 1:ecf8078bf531 122 0x1C,0x36,0x1C,0x3B,0x6E,0x66,0x3B,0x00, // &
andrewcrussell 1:ecf8078bf531 123 0x30,0x30,0x60,0x00,0x00,0x00,0x00,0x00, // '
andrewcrussell 1:ecf8078bf531 124 0x0C,0x18,0x30,0x30,0x30,0x18,0x0C,0x00, // (
andrewcrussell 1:ecf8078bf531 125 0x30,0x18,0x0C,0x0C,0x0C,0x18,0x30,0x00, // )
andrewcrussell 1:ecf8078bf531 126 0x00,0x66,0x3C,0xFF,0x3C,0x66,0x00,0x00, // *
andrewcrussell 1:ecf8078bf531 127 0x00,0x30,0x30,0xFC,0x30,0x30,0x00,0x00, // +
andrewcrussell 1:ecf8078bf531 128 0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x30, // ,
andrewcrussell 1:ecf8078bf531 129 0x00,0x00,0x00,0x7E,0x00,0x00,0x00,0x00, // -
andrewcrussell 1:ecf8078bf531 130 0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00, // .
andrewcrussell 1:ecf8078bf531 131 0x03,0x06,0x0C,0x18,0x30,0x60,0x40,0x00, // / (forward slash)
andrewcrussell 1:ecf8078bf531 132 0x3E,0x63,0x63,0x6B,0x63,0x63,0x3E,0x00, // 0 0x30
andrewcrussell 1:ecf8078bf531 133 0x18,0x38,0x58,0x18,0x18,0x18,0x7E,0x00, // 1
andrewcrussell 1:ecf8078bf531 134 0x3C,0x66,0x06,0x1C,0x30,0x66,0x7E,0x00, // 2
andrewcrussell 1:ecf8078bf531 135 0x3C,0x66,0x06,0x1C,0x06,0x66,0x3C,0x00, // 3
andrewcrussell 1:ecf8078bf531 136 0x0E,0x1E,0x36,0x66,0x7F,0x06,0x0F,0x00, // 4
andrewcrussell 1:ecf8078bf531 137 0x7E,0x60,0x7C,0x06,0x06,0x66,0x3C,0x00, // 5
andrewcrussell 1:ecf8078bf531 138 0x1C,0x30,0x60,0x7C,0x66,0x66,0x3C,0x00, // 6
andrewcrussell 1:ecf8078bf531 139 0x7E,0x66,0x06,0x0C,0x18,0x18,0x18,0x00, // 7
andrewcrussell 1:ecf8078bf531 140 0x3C,0x66,0x66,0x3C,0x66,0x66,0x3C,0x00, // 8
andrewcrussell 1:ecf8078bf531 141 0x3C,0x66,0x66,0x3E,0x06,0x0C,0x38,0x00, // 9
andrewcrussell 1:ecf8078bf531 142 0x00,0x18,0x18,0x00,0x00,0x18,0x18,0x00, // :
andrewcrussell 1:ecf8078bf531 143 0x00,0x18,0x18,0x00,0x00,0x18,0x18,0x30, // ;
andrewcrussell 1:ecf8078bf531 144 0x0C,0x18,0x30,0x60,0x30,0x18,0x0C,0x00, // <
andrewcrussell 1:ecf8078bf531 145 0x00,0x00,0x7E,0x00,0x00,0x7E,0x00,0x00, // =
andrewcrussell 1:ecf8078bf531 146 0x30,0x18,0x0C,0x06,0x0C,0x18,0x30,0x00, // >
andrewcrussell 1:ecf8078bf531 147 0x3C,0x66,0x06,0x0C,0x18,0x00,0x18,0x00, // ?
andrewcrussell 1:ecf8078bf531 148 0x3E,0x63,0x6F,0x69,0x6F,0x60,0x3E,0x00, // @ 0x40
andrewcrussell 1:ecf8078bf531 149 0x18,0x3C,0x66,0x66,0x7E,0x66,0x66,0x00, // A
andrewcrussell 1:ecf8078bf531 150 0x7E,0x33,0x33,0x3E,0x33,0x33,0x7E,0x00, // B
andrewcrussell 1:ecf8078bf531 151 0x1E,0x33,0x60,0x60,0x60,0x33,0x1E,0x00, // C
andrewcrussell 1:ecf8078bf531 152 0x7C,0x36,0x33,0x33,0x33,0x36,0x7C,0x00, // D
andrewcrussell 1:ecf8078bf531 153 0x7F,0x31,0x34,0x3C,0x34,0x31,0x7F,0x00, // E
andrewcrussell 1:ecf8078bf531 154 0x7F,0x31,0x34,0x3C,0x34,0x30,0x78,0x00, // F
andrewcrussell 1:ecf8078bf531 155 0x1E,0x33,0x60,0x60,0x67,0x33,0x1F,0x00, // G
andrewcrussell 1:ecf8078bf531 156 0x66,0x66,0x66,0x7E,0x66,0x66,0x66,0x00, // H
andrewcrussell 1:ecf8078bf531 157 0x3C,0x18,0x18,0x18,0x18,0x18,0x3C,0x00, // I
andrewcrussell 1:ecf8078bf531 158 0x0F,0x06,0x06,0x06,0x66,0x66,0x3C,0x00, // J
andrewcrussell 1:ecf8078bf531 159 0x73,0x33,0x36,0x3C,0x36,0x33,0x73,0x00, // K
andrewcrussell 1:ecf8078bf531 160 0x78,0x30,0x30,0x30,0x31,0x33,0x7F,0x00, // L
andrewcrussell 1:ecf8078bf531 161 0x63,0x77,0x7F,0x7F,0x6B,0x63,0x63,0x00, // M
andrewcrussell 1:ecf8078bf531 162 0x63,0x73,0x7B,0x6F,0x67,0x63,0x63,0x00, // N
andrewcrussell 1:ecf8078bf531 163 0x3E,0x63,0x63,0x63,0x63,0x63,0x3E,0x00, // O
andrewcrussell 1:ecf8078bf531 164 0x7E,0x33,0x33,0x3E,0x30,0x30,0x78,0x00, // P 0x50
andrewcrussell 1:ecf8078bf531 165 0x3C,0x66,0x66,0x66,0x6E,0x3C,0x0E,0x00, // Q
andrewcrussell 1:ecf8078bf531 166 0x7E,0x33,0x33,0x3E,0x36,0x33,0x73,0x00, // R
andrewcrussell 1:ecf8078bf531 167 0x3C,0x66,0x30,0x18,0x0C,0x66,0x3C,0x00, // S
andrewcrussell 1:ecf8078bf531 168 0x7E,0x5A,0x18,0x18,0x18,0x18,0x3C,0x00, // T
andrewcrussell 1:ecf8078bf531 169 0x66,0x66,0x66,0x66,0x66,0x66,0x7E,0x00, // U
andrewcrussell 1:ecf8078bf531 170 0x66,0x66,0x66,0x66,0x66,0x3C,0x18,0x00, // V
andrewcrussell 1:ecf8078bf531 171 0x63,0x63,0x63,0x6B,0x7F,0x77,0x63,0x00, // W
andrewcrussell 1:ecf8078bf531 172 0x63,0x63,0x36,0x1C,0x1C,0x36,0x63,0x00, // X
andrewcrussell 1:ecf8078bf531 173 0x66,0x66,0x66,0x3C,0x18,0x18,0x3C,0x00, // Y
andrewcrussell 1:ecf8078bf531 174 0x7F,0x63,0x46,0x0C,0x19,0x33,0x7F,0x00, // Z
andrewcrussell 1:ecf8078bf531 175 0x3C,0x30,0x30,0x30,0x30,0x30,0x3C,0x00, // [
andrewcrussell 1:ecf8078bf531 176 0x60,0x30,0x18,0x0C,0x06,0x03,0x01,0x00, // \ (back slash)
andrewcrussell 1:ecf8078bf531 177 0x3C,0x0C,0x0C,0x0C,0x0C,0x0C,0x3C,0x00, // ]
andrewcrussell 1:ecf8078bf531 178 0x08,0x1C,0x36,0x63,0x00,0x00,0x00,0x00, // ^
andrewcrussell 1:ecf8078bf531 179 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF, // _
andrewcrussell 1:ecf8078bf531 180 0x18,0x18,0x0C,0x00,0x00,0x00,0x00,0x00, // ` 0x60
andrewcrussell 1:ecf8078bf531 181 0x00,0x00,0x3C,0x06,0x3E,0x66,0x3B,0x00, // a
andrewcrussell 1:ecf8078bf531 182 0x70,0x30,0x3E,0x33,0x33,0x33,0x6E,0x00, // b
andrewcrussell 1:ecf8078bf531 183 0x00,0x00,0x3C,0x66,0x60,0x66,0x3C,0x00, // c
andrewcrussell 1:ecf8078bf531 184 0x0E,0x06,0x3E,0x66,0x66,0x66,0x3B,0x00, // d
andrewcrussell 1:ecf8078bf531 185 0x00,0x00,0x3C,0x66,0x7E,0x60,0x3C,0x00, // e
andrewcrussell 1:ecf8078bf531 186 0x1C,0x36,0x30,0x78,0x30,0x30,0x78,0x00, // f
andrewcrussell 1:ecf8078bf531 187 0x00,0x00,0x3B,0x66,0x66,0x3E,0x06,0x7C, // g
andrewcrussell 1:ecf8078bf531 188 0x70,0x30,0x36,0x3B,0x33,0x33,0x73,0x00, // h
andrewcrussell 1:ecf8078bf531 189 0x18,0x00,0x38,0x18,0x18,0x18,0x3C,0x00, // i
andrewcrussell 1:ecf8078bf531 190 0x06,0x00,0x06,0x06,0x06,0x66,0x66,0x3C, // j
andrewcrussell 1:ecf8078bf531 191 0x70,0x30,0x33,0x36,0x3C,0x36,0x73,0x00, // k
andrewcrussell 1:ecf8078bf531 192 0x38,0x18,0x18,0x18,0x18,0x18,0x3C,0x00, // l
andrewcrussell 1:ecf8078bf531 193 0x00,0x00,0x66,0x7F,0x7F,0x6B,0x63,0x00, // m
andrewcrussell 1:ecf8078bf531 194 0x00,0x00,0x7C,0x66,0x66,0x66,0x66,0x00, // n
andrewcrussell 1:ecf8078bf531 195 0x00,0x00,0x3C,0x66,0x66,0x66,0x3C,0x00, // o
andrewcrussell 1:ecf8078bf531 196 0x00,0x00,0x6E,0x33,0x33,0x3E,0x30,0x78, // p 0x70
andrewcrussell 1:ecf8078bf531 197 0x00,0x00,0x3B,0x66,0x66,0x3E,0x06,0x0F, // q
andrewcrussell 1:ecf8078bf531 198 0x00,0x00,0x6E,0x3B,0x33,0x30,0x78,0x00, // r
andrewcrussell 1:ecf8078bf531 199 0x00,0x00,0x3E,0x60,0x3C,0x06,0x7C,0x00, // s
andrewcrussell 1:ecf8078bf531 200 0x08,0x18,0x3E,0x18,0x18,0x1A,0x0C,0x00, // t
andrewcrussell 1:ecf8078bf531 201 0x00,0x00,0x66,0x66,0x66,0x66,0x3B,0x00, // u
andrewcrussell 1:ecf8078bf531 202 0x00,0x00,0x66,0x66,0x66,0x3C,0x18,0x00, // v
andrewcrussell 1:ecf8078bf531 203 0x00,0x00,0x63,0x6B,0x7F,0x7F,0x36,0x00, // w
andrewcrussell 1:ecf8078bf531 204 0x00,0x00,0x63,0x36,0x1C,0x36,0x63,0x00, // x
andrewcrussell 1:ecf8078bf531 205 0x00,0x00,0x66,0x66,0x66,0x3E,0x06,0x7C, // y
andrewcrussell 1:ecf8078bf531 206 0x00,0x00,0x7E,0x4C,0x18,0x32,0x7E,0x00, // z
andrewcrussell 1:ecf8078bf531 207 0x0E,0x18,0x18,0x70,0x18,0x18,0x0E,0x00, // {
andrewcrussell 1:ecf8078bf531 208 0x0C,0x0C,0x0C,0x00,0x0C,0x0C,0x0C,0x00, // |
andrewcrussell 1:ecf8078bf531 209 0x70,0x18,0x18,0x0E,0x18,0x18,0x70,0x00, // }
andrewcrussell 1:ecf8078bf531 210 0x3B,0x6E,0x00,0x00,0x00,0x00,0x00,0x00, // ~
andrewcrussell 1:ecf8078bf531 211 0x1C,0x36,0x36,0x1C,0x00,0x00,0x00,0x00}; // DEL
andrewcrussell 1:ecf8078bf531 212
andrewcrussell 1:ecf8078bf531 213 const unsigned char FONT8x16[97][16] = {
andrewcrussell 1:ecf8078bf531 214 0x08,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // columns, rows, num_bytes_per_char
andrewcrussell 1:ecf8078bf531 215 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // space 0x20
andrewcrussell 1:ecf8078bf531 216 0x00,0x00,0x18,0x3C,0x3C,0x3C,0x18,0x18,0x18,0x00,0x18,0x18,0x00,0x00,0x00,0x00, // !
andrewcrussell 1:ecf8078bf531 217 0x00,0x63,0x63,0x63,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // "
andrewcrussell 1:ecf8078bf531 218 0x00,0x00,0x00,0x36,0x36,0x7F,0x36,0x36,0x36,0x7F,0x36,0x36,0x00,0x00,0x00,0x00, // #
andrewcrussell 1:ecf8078bf531 219 0x0C,0x0C,0x3E,0x63,0x61,0x60,0x3E,0x03,0x03,0x43,0x63,0x3E,0x0C,0x0C,0x00,0x00, // $
andrewcrussell 1:ecf8078bf531 220 0x00,0x00,0x00,0x00,0x00,0x61,0x63,0x06,0x0C,0x18,0x33,0x63,0x00,0x00,0x00,0x00, // %
andrewcrussell 1:ecf8078bf531 221 0x00,0x00,0x00,0x1C,0x36,0x36,0x1C,0x3B,0x6E,0x66,0x66,0x3B,0x00,0x00,0x00,0x00, // &
andrewcrussell 1:ecf8078bf531 222 0x00,0x30,0x30,0x30,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // '
andrewcrussell 1:ecf8078bf531 223 0x00,0x00,0x0C,0x18,0x18,0x30,0x30,0x30,0x30,0x18,0x18,0x0C,0x00,0x00,0x00,0x00, // (
andrewcrussell 1:ecf8078bf531 224 0x00,0x00,0x18,0x0C,0x0C,0x06,0x06,0x06,0x06,0x0C,0x0C,0x18,0x00,0x00,0x00,0x00, // )
andrewcrussell 1:ecf8078bf531 225 0x00,0x00,0x00,0x00,0x42,0x66,0x3C,0xFF,0x3C,0x66,0x42,0x00,0x00,0x00,0x00,0x00, // *
andrewcrussell 1:ecf8078bf531 226 0x00,0x00,0x00,0x00,0x18,0x18,0x18,0xFF,0x18,0x18,0x18,0x00,0x00,0x00,0x00,0x00, // +
andrewcrussell 1:ecf8078bf531 227 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x18,0x30,0x00,0x00, // ,
andrewcrussell 1:ecf8078bf531 228 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // -
andrewcrussell 1:ecf8078bf531 229 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00, // .
andrewcrussell 1:ecf8078bf531 230 0x00,0x00,0x01,0x03,0x07,0x0E,0x1C,0x38,0x70,0xE0,0xC0,0x80,0x00,0x00,0x00,0x00, // / (forward slash)
andrewcrussell 1:ecf8078bf531 231 0x00,0x00,0x3E,0x63,0x63,0x63,0x6B,0x6B,0x63,0x63,0x63,0x3E,0x00,0x00,0x00,0x00, // 0 0x30
andrewcrussell 1:ecf8078bf531 232 0x00,0x00,0x0C,0x1C,0x3C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x3F,0x00,0x00,0x00,0x00, // 1
andrewcrussell 1:ecf8078bf531 233 0x00,0x00,0x3E,0x63,0x03,0x06,0x0C,0x18,0x30,0x61,0x63,0x7F,0x00,0x00,0x00,0x00, // 2
andrewcrussell 1:ecf8078bf531 234 0x00,0x00,0x3E,0x63,0x03,0x03,0x1E,0x03,0x03,0x03,0x63,0x3E,0x00,0x00,0x00,0x00, // 3
andrewcrussell 1:ecf8078bf531 235 0x00,0x00,0x06,0x0E,0x1E,0x36,0x66,0x66,0x7F,0x06,0x06,0x0F,0x00,0x00,0x00,0x00, // 4
andrewcrussell 1:ecf8078bf531 236 0x00,0x00,0x7F,0x60,0x60,0x60,0x7E,0x03,0x03,0x63,0x73,0x3E,0x00,0x00,0x00,0x00, // 5
andrewcrussell 1:ecf8078bf531 237 0x00,0x00,0x1C,0x30,0x60,0x60,0x7E,0x63,0x63,0x63,0x63,0x3E,0x00,0x00,0x00,0x00, // 6
andrewcrussell 1:ecf8078bf531 238 0x00,0x00,0x7F,0x63,0x03,0x06,0x06,0x0C,0x0C,0x18,0x18,0x18,0x00,0x00,0x00,0x00, // 7
andrewcrussell 1:ecf8078bf531 239 0x00,0x00,0x3E,0x63,0x63,0x63,0x3E,0x63,0x63,0x63,0x63,0x3E,0x00,0x00,0x00,0x00, // 8
andrewcrussell 1:ecf8078bf531 240 0x00,0x00,0x3E,0x63,0x63,0x63,0x63,0x3F,0x03,0x03,0x06,0x3C,0x00,0x00,0x00,0x00, // 9
andrewcrussell 1:ecf8078bf531 241 0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00, // :
andrewcrussell 1:ecf8078bf531 242 0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x18,0x18,0x18,0x30,0x00,0x00, // ;
andrewcrussell 1:ecf8078bf531 243 0x00,0x00,0x00,0x06,0x0C,0x18,0x30,0x60,0x30,0x18,0x0C,0x06,0x00,0x00,0x00,0x00, // <
andrewcrussell 1:ecf8078bf531 244 0x00,0x00,0x00,0x00,0x00,0x00,0x7E,0x00,0x00,0x7E,0x00,0x00,0x00,0x00,0x00,0x00, // =
andrewcrussell 1:ecf8078bf531 245 0x00,0x00,0x00,0x60,0x30,0x18,0x0C,0x06,0x0C,0x18,0x30,0x60,0x00,0x00,0x00,0x00, // >
andrewcrussell 1:ecf8078bf531 246 0x00,0x00,0x3E,0x63,0x63,0x06,0x0C,0x0C,0x0C,0x00,0x0C,0x0C,0x00,0x00,0x00,0x00, // ?
andrewcrussell 1:ecf8078bf531 247 0x00,0x00,0x3E,0x63,0x63,0x6F,0x6B,0x6B,0x6E,0x60,0x60,0x3E,0x00,0x00,0x00,0x00, // @ 0x40
andrewcrussell 1:ecf8078bf531 248 0x00,0x00,0x08,0x1C,0x36,0x63,0x63,0x63,0x7F,0x63,0x63,0x63,0x00,0x00,0x00,0x00, // A
andrewcrussell 1:ecf8078bf531 249 0x00,0x00,0x7E,0x33,0x33,0x33,0x3E,0x33,0x33,0x33,0x33,0x7E,0x00,0x00,0x00,0x00, // B
andrewcrussell 1:ecf8078bf531 250 0x00,0x00,0x1E,0x33,0x61,0x60,0x60,0x60,0x60,0x61,0x33,0x1E,0x00,0x00,0x00,0x00, // C
andrewcrussell 1:ecf8078bf531 251 0x00,0x00,0x7C,0x36,0x33,0x33,0x33,0x33,0x33,0x33,0x36,0x7C,0x00,0x00,0x00,0x00, // D
andrewcrussell 1:ecf8078bf531 252 0x00,0x00,0x7F,0x33,0x31,0x34,0x3C,0x34,0x30,0x31,0x33,0x7F,0x00,0x00,0x00,0x00, // E
andrewcrussell 1:ecf8078bf531 253 0x00,0x00,0x7F,0x33,0x31,0x34,0x3C,0x34,0x30,0x30,0x30,0x78,0x00,0x00,0x00,0x00, // F
andrewcrussell 1:ecf8078bf531 254 0x00,0x00,0x1E,0x33,0x61,0x60,0x60,0x6F,0x63,0x63,0x37,0x1D,0x00,0x00,0x00,0x00, // G
andrewcrussell 1:ecf8078bf531 255 0x00,0x00,0x63,0x63,0x63,0x63,0x7F,0x63,0x63,0x63,0x63,0x63,0x00,0x00,0x00,0x00, // H
andrewcrussell 1:ecf8078bf531 256 0x00,0x00,0x3C,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x3C,0x00,0x00,0x00,0x00, // I
andrewcrussell 1:ecf8078bf531 257 0x00,0x00,0x0F,0x06,0x06,0x06,0x06,0x06,0x06,0x66,0x66,0x3C,0x00,0x00,0x00,0x00, // J
andrewcrussell 1:ecf8078bf531 258 0x00,0x00,0x73,0x33,0x36,0x36,0x3C,0x36,0x36,0x33,0x33,0x73,0x00,0x00,0x00,0x00, // K
andrewcrussell 1:ecf8078bf531 259 0x00,0x00,0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x31,0x33,0x7F,0x00,0x00,0x00,0x00, // L
andrewcrussell 1:ecf8078bf531 260 0x00,0x00,0x63,0x77,0x7F,0x6B,0x63,0x63,0x63,0x63,0x63,0x63,0x00,0x00,0x00,0x00, // M
andrewcrussell 1:ecf8078bf531 261 0x00,0x00,0x63,0x63,0x73,0x7B,0x7F,0x6F,0x67,0x63,0x63,0x63,0x00,0x00,0x00,0x00, // N
andrewcrussell 1:ecf8078bf531 262 0x00,0x00,0x1C,0x36,0x63,0x63,0x63,0x63,0x63,0x63,0x36,0x1C,0x00,0x00,0x00,0x00, // O
andrewcrussell 1:ecf8078bf531 263 0x00,0x00,0x7E,0x33,0x33,0x33,0x3E,0x30,0x30,0x30,0x30,0x78,0x00,0x00,0x00,0x00, // P 0x50
andrewcrussell 1:ecf8078bf531 264 0x00,0x00,0x3E,0x63,0x63,0x63,0x63,0x63,0x63,0x6B,0x6F,0x3E,0x06,0x07,0x00,0x00, // Q
andrewcrussell 1:ecf8078bf531 265 0x00,0x00,0x7E,0x33,0x33,0x33,0x3E,0x36,0x36,0x33,0x33,0x73,0x00,0x00,0x00,0x00, // R
andrewcrussell 1:ecf8078bf531 266 0x00,0x00,0x3E,0x63,0x63,0x30,0x1C,0x06,0x03,0x63,0x63,0x3E,0x00,0x00,0x00,0x00, // S
andrewcrussell 1:ecf8078bf531 267 0x00,0x00,0xFF,0xDB,0x99,0x18,0x18,0x18,0x18,0x18,0x18,0x3C,0x00,0x00,0x00,0x00, // T
andrewcrussell 1:ecf8078bf531 268 0x00,0x00,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x3E,0x00,0x00,0x00,0x00, // U
andrewcrussell 1:ecf8078bf531 269 0x00,0x00,0x63,0x63,0x63,0x63,0x63,0x63,0x63,0x36,0x1C,0x08,0x00,0x00,0x00,0x00, // V
andrewcrussell 1:ecf8078bf531 270 0x00,0x00,0x63,0x63,0x63,0x63,0x63,0x6B,0x6B,0x7F,0x36,0x36,0x00,0x00,0x00,0x00, // W
andrewcrussell 1:ecf8078bf531 271 0x00,0x00,0xC3,0xC3,0x66,0x3C,0x18,0x18,0x3C,0x66,0xC3,0xC3,0x00,0x00,0x00,0x00, // X
andrewcrussell 1:ecf8078bf531 272 0x00,0x00,0xC3,0xC3,0xC3,0x66,0x3C,0x18,0x18,0x18,0x18,0x3C,0x00,0x00,0x00,0x00, // Y
andrewcrussell 1:ecf8078bf531 273 0x00,0x00,0x7F,0x63,0x43,0x06,0x0C,0x18,0x30,0x61,0x63,0x7F,0x00,0x00,0x00,0x00, // Z
andrewcrussell 1:ecf8078bf531 274 0x00,0x00,0x3C,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x3C,0x00,0x00,0x00,0x00, // [
andrewcrussell 1:ecf8078bf531 275 0x00,0x00,0x80,0xC0,0xE0,0x70,0x38,0x1C,0x0E,0x07,0x03,0x01,0x00,0x00,0x00,0x00, // \ (back slash)
andrewcrussell 1:ecf8078bf531 276 0x00,0x00,0x3C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x3C,0x00,0x00,0x00,0x00, // ]
andrewcrussell 1:ecf8078bf531 277 0x08,0x1C,0x36,0x63,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // ^
andrewcrussell 1:ecf8078bf531 278 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0x00,0x00,0x00, // _
andrewcrussell 1:ecf8078bf531 279 0x18,0x18,0x0C,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // ` 0x60
andrewcrussell 1:ecf8078bf531 280 0x00,0x00,0x00,0x00,0x00,0x3C,0x46,0x06,0x3E,0x66,0x66,0x3B,0x00,0x00,0x00,0x00, // a
andrewcrussell 1:ecf8078bf531 281 0x00,0x00,0x70,0x30,0x30,0x3C,0x36,0x33,0x33,0x33,0x33,0x6E,0x00,0x00,0x00,0x00, // b
andrewcrussell 1:ecf8078bf531 282 0x00,0x00,0x00,0x00,0x00,0x3E,0x63,0x60,0x60,0x60,0x63,0x3E,0x00,0x00,0x00,0x00, // c
andrewcrussell 1:ecf8078bf531 283 0x00,0x00,0x0E,0x06,0x06,0x1E,0x36,0x66,0x66,0x66,0x66,0x3B,0x00,0x00,0x00,0x00, // d
andrewcrussell 1:ecf8078bf531 284 0x00,0x00,0x00,0x00,0x00,0x3E,0x63,0x63,0x7E,0x60,0x63,0x3E,0x00,0x00,0x00,0x00, // e
andrewcrussell 1:ecf8078bf531 285 0x00,0x00,0x1C,0x36,0x32,0x30,0x7C,0x30,0x30,0x30,0x30,0x78,0x00,0x00,0x00,0x00, // f
andrewcrussell 1:ecf8078bf531 286 0x00,0x00,0x00,0x00,0x00,0x3B,0x66,0x66,0x66,0x66,0x3E,0x06,0x66,0x3C,0x00,0x00, // g
andrewcrussell 1:ecf8078bf531 287 0x00,0x00,0x70,0x30,0x30,0x36,0x3B,0x33,0x33,0x33,0x33,0x73,0x00,0x00,0x00,0x00, // h
andrewcrussell 1:ecf8078bf531 288 0x00,0x00,0x0C,0x0C,0x00,0x1C,0x0C,0x0C,0x0C,0x0C,0x0C,0x1E,0x00,0x00,0x00,0x00, // i
andrewcrussell 1:ecf8078bf531 289 0x00,0x00,0x06,0x06,0x00,0x0E,0x06,0x06,0x06,0x06,0x06,0x66,0x66,0x3C,0x00,0x00, // j
andrewcrussell 1:ecf8078bf531 290 0x00,0x00,0x70,0x30,0x30,0x33,0x33,0x36,0x3C,0x36,0x33,0x73,0x00,0x00,0x00,0x00, // k
andrewcrussell 1:ecf8078bf531 291 0x00,0x00,0x1C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x0C,0x1E,0x00,0x00,0x00,0x00, // l
andrewcrussell 1:ecf8078bf531 292 0x00,0x00,0x00,0x00,0x00,0x6E,0x7F,0x6B,0x6B,0x6B,0x6B,0x6B,0x00,0x00,0x00,0x00, // m
andrewcrussell 1:ecf8078bf531 293 0x00,0x00,0x00,0x00,0x00,0x6E,0x33,0x33,0x33,0x33,0x33,0x33,0x00,0x00,0x00,0x00, // n
andrewcrussell 1:ecf8078bf531 294 0x00,0x00,0x00,0x00,0x00,0x3E,0x63,0x63,0x63,0x63,0x63,0x3E,0x00,0x00,0x00,0x00, // o
andrewcrussell 1:ecf8078bf531 295 0x00,0x00,0x00,0x00,0x00,0x6E,0x33,0x33,0x33,0x33,0x3E,0x30,0x30,0x78,0x00,0x00, // p 0x70
andrewcrussell 1:ecf8078bf531 296 0x00,0x00,0x00,0x00,0x00,0x3B,0x66,0x66,0x66,0x66,0x3E,0x06,0x06,0x0F,0x00,0x00, // q
andrewcrussell 1:ecf8078bf531 297 0x00,0x00,0x00,0x00,0x00,0x6E,0x3B,0x33,0x30,0x30,0x30,0x78,0x00,0x00,0x00,0x00, // r
andrewcrussell 1:ecf8078bf531 298 0x00,0x00,0x00,0x00,0x00,0x3E,0x63,0x38,0x0E,0x03,0x63,0x3E,0x00,0x00,0x00,0x00, // s
andrewcrussell 1:ecf8078bf531 299 0x00,0x00,0x08,0x18,0x18,0x7E,0x18,0x18,0x18,0x18,0x1B,0x0E,0x00,0x00,0x00,0x00, // t
andrewcrussell 1:ecf8078bf531 300 0x00,0x00,0x00,0x00,0x00,0x66,0x66,0x66,0x66,0x66,0x66,0x3B,0x00,0x00,0x00,0x00, // u
andrewcrussell 1:ecf8078bf531 301 0x00,0x00,0x00,0x00,0x00,0x63,0x63,0x36,0x36,0x1C,0x1C,0x08,0x00,0x00,0x00,0x00, // v
andrewcrussell 1:ecf8078bf531 302 0x00,0x00,0x00,0x00,0x00,0x63,0x63,0x63,0x6B,0x6B,0x7F,0x36,0x00,0x00,0x00,0x00, // w
andrewcrussell 1:ecf8078bf531 303 0x00,0x00,0x00,0x00,0x00,0x63,0x36,0x1C,0x1C,0x1C,0x36,0x63,0x00,0x00,0x00,0x00, // x
andrewcrussell 1:ecf8078bf531 304 0x00,0x00,0x00,0x00,0x00,0x63,0x63,0x63,0x63,0x63,0x3F,0x03,0x06,0x3C,0x00,0x00, // y
andrewcrussell 1:ecf8078bf531 305 0x00,0x00,0x00,0x00,0x00,0x7F,0x66,0x0C,0x18,0x30,0x63,0x7F,0x00,0x00,0x00,0x00, // z
andrewcrussell 1:ecf8078bf531 306 0x00,0x00,0x0E,0x18,0x18,0x18,0x70,0x18,0x18,0x18,0x18,0x0E,0x00,0x00,0x00,0x00, // {
andrewcrussell 1:ecf8078bf531 307 0x00,0x00,0x18,0x18,0x18,0x18,0x18,0x00,0x18,0x18,0x18,0x18,0x18,0x00,0x00,0x00, // |
andrewcrussell 1:ecf8078bf531 308 0x00,0x00,0x70,0x18,0x18,0x18,0x0E,0x18,0x18,0x18,0x18,0x70,0x00,0x00,0x00,0x00, // }
andrewcrussell 1:ecf8078bf531 309 0x00,0x00,0x3B,0x6E,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // ~
andrewcrussell 1:ecf8078bf531 310 0x00,0x70,0xD8,0xD8,0x70,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}; // DEL
andrewcrussell 1:ecf8078bf531 311
andrewcrussell 1:ecf8078bf531 312 /* character = '0' */
andrewcrussell 1:ecf8078bf531 313 const unsigned char FONT24x59[1][177] = //this sets up a 2 dimensional array 23 x 8
andrewcrussell 1:ecf8078bf531 314 /* character = '0' */
andrewcrussell 1:ecf8078bf531 315 {
andrewcrussell 1:ecf8078bf531 316 //*----------------------------------------
andrewcrussell 1:ecf8078bf531 317 //;hexcode: 0030
andrewcrussell 1:ecf8078bf531 318 //;width x height: 24 x 59
andrewcrussell 1:ecf8078bf531 319 //;size: 177 bytes
andrewcrussell 1:ecf8078bf531 320 //------------------------------------------*/
andrewcrussell 1:ecf8078bf531 321 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 322 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 323 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 324 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 325 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 326 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0x00,
andrewcrussell 1:ecf8078bf531 327 0xC0, 0xFF, 0x03, 0xE0, 0xFF, 0x0F, 0xF0, 0xFF,
andrewcrussell 1:ecf8078bf531 328 0x0F, 0xF8, 0xFF, 0x1F, 0xF8, 0xC3, 0x1F, 0xFC,
andrewcrussell 1:ecf8078bf531 329 0x81, 0x3F, 0xFC, 0x00, 0x3F, 0xFC, 0x00, 0x3F,
andrewcrussell 1:ecf8078bf531 330 0x7C, 0x00, 0x7E, 0x7E, 0x00, 0x7E, 0x7E, 0x00,
andrewcrussell 1:ecf8078bf531 331 0x7E, 0x7E, 0x00, 0x7E, 0x7E, 0x00, 0x7E, 0x7E,
andrewcrussell 1:ecf8078bf531 332 0x00, 0x7E, 0x7E, 0x00, 0x7E, 0x7E, 0x00, 0x7E,
andrewcrussell 1:ecf8078bf531 333 0x7E, 0x00, 0x7E, 0x7E, 0x00, 0x7E, 0x7E, 0x00,
andrewcrussell 1:ecf8078bf531 334 0x7E, 0x7E, 0x00, 0x7E, 0x7E, 0x00, 0x7E, 0x7E,
andrewcrussell 1:ecf8078bf531 335 0x00, 0x3E, 0xFC, 0x00, 0x3F, 0xFC, 0x00, 0x3F,
andrewcrussell 1:ecf8078bf531 336 0xFC, 0x81, 0x3F, 0xF8, 0xC3, 0x1F, 0xF8, 0xFF,
andrewcrussell 1:ecf8078bf531 337 0x1F, 0xF0, 0xFF, 0x0F, 0xE0, 0xFF, 0x07, 0xC0,
andrewcrussell 1:ecf8078bf531 338 0xFF, 0x03, 0x00, 0x7F, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 339 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 340 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 341 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 342 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
andrewcrussell 1:ecf8078bf531 343 0x00,};
andrewcrussell 1:ecf8078bf531 344
andrewcrussell 1:ecf8078bf531 345