Library for Nuelectronics Nokia 3310/5110 LCD Display and joystick.

Dependents:   LEDFun NetTester

Fork of N3310LCD by Andrew Lindsay

Library for Nuelectronics Nokia 3310/5110 LCD Display and joystick.

Committer:
SomeRandomBloke
Date:
Sun Mar 10 18:29:09 2013 +0000
Revision:
1:51961974fe55
Parent:
0:7efa6655d94b
Child:
3:9808f63fd2fe
reformatted code

Who changed what in which revision?

UserRevisionLine numberNew contents of line
SomeRandomBloke 0:7efa6655d94b 1 /*
SomeRandomBloke 0:7efa6655d94b 2 * N3310LCD. A program to interface mbed with the nuelectronics
SomeRandomBloke 0:7efa6655d94b 3 * Nokia 3310 LCD shield from www.nuelectronics.com. Ported from
SomeRandomBloke 0:7efa6655d94b 4 * the nuelectronics Arduino code.
SomeRandomBloke 0:7efa6655d94b 5 *
SomeRandomBloke 0:7efa6655d94b 6 * Copyright (C) <2009> Petras Saduikis <petras@petras.co.uk>
SomeRandomBloke 0:7efa6655d94b 7 *
SomeRandomBloke 0:7efa6655d94b 8 * Converted to a mbed library by Andrew D. Lindsay
SomeRandomBloke 0:7efa6655d94b 9 *
SomeRandomBloke 0:7efa6655d94b 10 * This file is part of N3310LCD.
SomeRandomBloke 0:7efa6655d94b 11 *
SomeRandomBloke 0:7efa6655d94b 12 * N3310LCD is free software: you can redistribute it and/or modify
SomeRandomBloke 0:7efa6655d94b 13 * it under the terms of the GNU General Public License as published by
SomeRandomBloke 0:7efa6655d94b 14 * the Free Software Foundation, either version 3 of the License, or
SomeRandomBloke 0:7efa6655d94b 15 * (at your option) any later version.
SomeRandomBloke 1:51961974fe55 16 *
SomeRandomBloke 0:7efa6655d94b 17 * N3310LCD is distributed in the hope that it will be useful,
SomeRandomBloke 0:7efa6655d94b 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
SomeRandomBloke 0:7efa6655d94b 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
SomeRandomBloke 0:7efa6655d94b 20 * GNU General Public License for more details.
SomeRandomBloke 0:7efa6655d94b 21 *
SomeRandomBloke 0:7efa6655d94b 22 * You should have received a copy of the GNU General Public License
SomeRandomBloke 0:7efa6655d94b 23 * along with N3310LCD. If not, see <http://www.gnu.org/licenses/>.
SomeRandomBloke 0:7efa6655d94b 24 */
SomeRandomBloke 0:7efa6655d94b 25
SomeRandomBloke 0:7efa6655d94b 26 #ifndef SNATCH59_N3310FONTS_H
SomeRandomBloke 0:7efa6655d94b 27 #define SNATCH59_N3310FONTS_H
SomeRandomBloke 0:7efa6655d94b 28
SomeRandomBloke 0:7efa6655d94b 29 // 6 x 8 font
SomeRandomBloke 0:7efa6655d94b 30 // 1 pixel space at left and bottom
SomeRandomBloke 0:7efa6655d94b 31 // index = ASCII - 32
SomeRandomBloke 0:7efa6655d94b 32
SomeRandomBloke 1:51961974fe55 33 unsigned char font6_8[][6] = {
SomeRandomBloke 0:7efa6655d94b 34 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, // sp
SomeRandomBloke 0:7efa6655d94b 35 { 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00 }, // !
SomeRandomBloke 0:7efa6655d94b 36 { 0x00, 0x00, 0x07, 0x00, 0x07, 0x00 }, // "
SomeRandomBloke 0:7efa6655d94b 37 { 0x00, 0x14, 0x7f, 0x14, 0x7f, 0x14 }, // #
SomeRandomBloke 0:7efa6655d94b 38 { 0x00, 0x24, 0x2a, 0x7f, 0x2a, 0x12 }, // $
SomeRandomBloke 0:7efa6655d94b 39 { 0x00, 0x62, 0x64, 0x08, 0x13, 0x23 }, // %
SomeRandomBloke 0:7efa6655d94b 40 { 0x00, 0x36, 0x49, 0x55, 0x22, 0x50 }, // &
SomeRandomBloke 0:7efa6655d94b 41 { 0x00, 0x00, 0x05, 0x03, 0x00, 0x00 }, // '
SomeRandomBloke 0:7efa6655d94b 42 { 0x00, 0x00, 0x1c, 0x22, 0x41, 0x00 }, // (
SomeRandomBloke 0:7efa6655d94b 43 { 0x00, 0x00, 0x41, 0x22, 0x1c, 0x00 }, // )
SomeRandomBloke 0:7efa6655d94b 44 { 0x00, 0x14, 0x08, 0x3E, 0x08, 0x14 }, // *
SomeRandomBloke 0:7efa6655d94b 45 { 0x00, 0x08, 0x08, 0x3E, 0x08, 0x08 }, // +
SomeRandomBloke 0:7efa6655d94b 46 { 0x00, 0x00, 0x00, 0xA0, 0x60, 0x00 }, // ,
SomeRandomBloke 0:7efa6655d94b 47 { 0x00, 0x08, 0x08, 0x08, 0x08, 0x08 }, // -
SomeRandomBloke 0:7efa6655d94b 48 { 0x00, 0x00, 0x60, 0x60, 0x00, 0x00 }, // .
SomeRandomBloke 0:7efa6655d94b 49 { 0x00, 0x20, 0x10, 0x08, 0x04, 0x02 }, // /
SomeRandomBloke 0:7efa6655d94b 50 { 0x00, 0x3E, 0x51, 0x49, 0x45, 0x3E }, // 0
SomeRandomBloke 0:7efa6655d94b 51 { 0x00, 0x00, 0x42, 0x7F, 0x40, 0x00 }, // 1
SomeRandomBloke 0:7efa6655d94b 52 { 0x00, 0x42, 0x61, 0x51, 0x49, 0x46 }, // 2
SomeRandomBloke 0:7efa6655d94b 53 { 0x00, 0x21, 0x41, 0x45, 0x4B, 0x31 }, // 3
SomeRandomBloke 0:7efa6655d94b 54 { 0x00, 0x18, 0x14, 0x12, 0x7F, 0x10 }, // 4
SomeRandomBloke 0:7efa6655d94b 55 { 0x00, 0x27, 0x45, 0x45, 0x45, 0x39 }, // 5
SomeRandomBloke 0:7efa6655d94b 56 { 0x00, 0x3C, 0x4A, 0x49, 0x49, 0x30 }, // 6
SomeRandomBloke 0:7efa6655d94b 57 { 0x00, 0x01, 0x71, 0x09, 0x05, 0x03 }, // 7
SomeRandomBloke 0:7efa6655d94b 58 { 0x00, 0x36, 0x49, 0x49, 0x49, 0x36 }, // 8
SomeRandomBloke 0:7efa6655d94b 59 { 0x00, 0x06, 0x49, 0x49, 0x29, 0x1E }, // 9
SomeRandomBloke 0:7efa6655d94b 60 { 0x00, 0x00, 0x36, 0x36, 0x00, 0x00 }, // :
SomeRandomBloke 0:7efa6655d94b 61 { 0x00, 0x00, 0x56, 0x36, 0x00, 0x00 }, // ;
SomeRandomBloke 0:7efa6655d94b 62 { 0x00, 0x08, 0x14, 0x22, 0x41, 0x00 }, // <
SomeRandomBloke 0:7efa6655d94b 63 { 0x00, 0x14, 0x14, 0x14, 0x14, 0x14 }, // =
SomeRandomBloke 0:7efa6655d94b 64 { 0x00, 0x00, 0x41, 0x22, 0x14, 0x08 }, // >
SomeRandomBloke 0:7efa6655d94b 65 { 0x00, 0x02, 0x01, 0x51, 0x09, 0x06 }, // ?
SomeRandomBloke 0:7efa6655d94b 66 { 0x00, 0x32, 0x49, 0x59, 0x51, 0x3E }, // @
SomeRandomBloke 0:7efa6655d94b 67 { 0x00, 0x7C, 0x12, 0x11, 0x12, 0x7C }, // A
SomeRandomBloke 0:7efa6655d94b 68 { 0x00, 0x7F, 0x49, 0x49, 0x49, 0x36 }, // B
SomeRandomBloke 0:7efa6655d94b 69 { 0x00, 0x3E, 0x41, 0x41, 0x41, 0x22 }, // C
SomeRandomBloke 0:7efa6655d94b 70 { 0x00, 0x7F, 0x41, 0x41, 0x22, 0x1C }, // D
SomeRandomBloke 0:7efa6655d94b 71 { 0x00, 0x7F, 0x49, 0x49, 0x49, 0x41 }, // E
SomeRandomBloke 0:7efa6655d94b 72 { 0x00, 0x7F, 0x09, 0x09, 0x09, 0x01 }, // F
SomeRandomBloke 0:7efa6655d94b 73 { 0x00, 0x3E, 0x41, 0x49, 0x49, 0x7A }, // G
SomeRandomBloke 0:7efa6655d94b 74 { 0x00, 0x7F, 0x08, 0x08, 0x08, 0x7F }, // H
SomeRandomBloke 0:7efa6655d94b 75 { 0x00, 0x00, 0x41, 0x7F, 0x41, 0x00 }, // I
SomeRandomBloke 0:7efa6655d94b 76 { 0x00, 0x20, 0x40, 0x41, 0x3F, 0x01 }, // J
SomeRandomBloke 0:7efa6655d94b 77 { 0x00, 0x7F, 0x08, 0x14, 0x22, 0x41 }, // K
SomeRandomBloke 0:7efa6655d94b 78 { 0x00, 0x7F, 0x40, 0x40, 0x40, 0x40 }, // L
SomeRandomBloke 0:7efa6655d94b 79 { 0x00, 0x7F, 0x02, 0x0C, 0x02, 0x7F }, // M
SomeRandomBloke 0:7efa6655d94b 80 { 0x00, 0x7F, 0x04, 0x08, 0x10, 0x7F }, // N
SomeRandomBloke 0:7efa6655d94b 81 { 0x00, 0x3E, 0x41, 0x41, 0x41, 0x3E }, // O
SomeRandomBloke 0:7efa6655d94b 82 { 0x00, 0x7F, 0x09, 0x09, 0x09, 0x06 }, // P
SomeRandomBloke 0:7efa6655d94b 83 { 0x00, 0x3E, 0x41, 0x51, 0x21, 0x5E }, // Q
SomeRandomBloke 0:7efa6655d94b 84 { 0x00, 0x7F, 0x09, 0x19, 0x29, 0x46 }, // R
SomeRandomBloke 0:7efa6655d94b 85 { 0x00, 0x46, 0x49, 0x49, 0x49, 0x31 }, // S
SomeRandomBloke 0:7efa6655d94b 86 { 0x00, 0x01, 0x01, 0x7F, 0x01, 0x01 }, // T
SomeRandomBloke 0:7efa6655d94b 87 { 0x00, 0x3F, 0x40, 0x40, 0x40, 0x3F }, // U
SomeRandomBloke 0:7efa6655d94b 88 { 0x00, 0x1F, 0x20, 0x40, 0x20, 0x1F }, // V
SomeRandomBloke 0:7efa6655d94b 89 { 0x00, 0x3F, 0x40, 0x38, 0x40, 0x3F }, // W
SomeRandomBloke 0:7efa6655d94b 90 { 0x00, 0x63, 0x14, 0x08, 0x14, 0x63 }, // X
SomeRandomBloke 0:7efa6655d94b 91 { 0x00, 0x07, 0x08, 0x70, 0x08, 0x07 }, // Y
SomeRandomBloke 0:7efa6655d94b 92 { 0x00, 0x61, 0x51, 0x49, 0x45, 0x43 }, // Z
SomeRandomBloke 0:7efa6655d94b 93 { 0x00, 0x00, 0x7F, 0x41, 0x41, 0x00 }, // [
SomeRandomBloke 0:7efa6655d94b 94 { 0x00, 0x55, 0x2A, 0x55, 0x2A, 0x55 }, // 55
SomeRandomBloke 0:7efa6655d94b 95 { 0x00, 0x00, 0x41, 0x41, 0x7F, 0x00 }, // ]
SomeRandomBloke 0:7efa6655d94b 96 { 0x00, 0x04, 0x02, 0x01, 0x02, 0x04 }, // ^
SomeRandomBloke 0:7efa6655d94b 97 { 0x00, 0x40, 0x40, 0x40, 0x40, 0x40 }, // _
SomeRandomBloke 0:7efa6655d94b 98 { 0x00, 0x00, 0x01, 0x02, 0x04, 0x00 }, // '
SomeRandomBloke 0:7efa6655d94b 99 { 0x00, 0x20, 0x54, 0x54, 0x54, 0x78 }, // a
SomeRandomBloke 0:7efa6655d94b 100 { 0x00, 0x7F, 0x48, 0x44, 0x44, 0x38 }, // b
SomeRandomBloke 0:7efa6655d94b 101 { 0x00, 0x38, 0x44, 0x44, 0x44, 0x20 }, // c
SomeRandomBloke 0:7efa6655d94b 102 { 0x00, 0x38, 0x44, 0x44, 0x48, 0x7F }, // d
SomeRandomBloke 0:7efa6655d94b 103 { 0x00, 0x38, 0x54, 0x54, 0x54, 0x18 }, // e
SomeRandomBloke 0:7efa6655d94b 104 { 0x00, 0x08, 0x7E, 0x09, 0x01, 0x02 }, // f
SomeRandomBloke 0:7efa6655d94b 105 { 0x00, 0x18, 0xA4, 0xA4, 0xA4, 0x7C }, // g
SomeRandomBloke 0:7efa6655d94b 106 { 0x00, 0x7F, 0x08, 0x04, 0x04, 0x78 }, // h
SomeRandomBloke 0:7efa6655d94b 107 { 0x00, 0x00, 0x44, 0x7D, 0x40, 0x00 }, // i
SomeRandomBloke 0:7efa6655d94b 108 { 0x00, 0x40, 0x80, 0x84, 0x7D, 0x00 }, // j
SomeRandomBloke 0:7efa6655d94b 109 { 0x00, 0x7F, 0x10, 0x28, 0x44, 0x00 }, // k
SomeRandomBloke 0:7efa6655d94b 110 { 0x00, 0x00, 0x41, 0x7F, 0x40, 0x00 }, // l
SomeRandomBloke 0:7efa6655d94b 111 { 0x00, 0x7C, 0x04, 0x18, 0x04, 0x78 }, // m
SomeRandomBloke 0:7efa6655d94b 112 { 0x00, 0x7C, 0x08, 0x04, 0x04, 0x78 }, // n
SomeRandomBloke 0:7efa6655d94b 113 { 0x00, 0x38, 0x44, 0x44, 0x44, 0x38 }, // o
SomeRandomBloke 0:7efa6655d94b 114 { 0x00, 0xFC, 0x24, 0x24, 0x24, 0x18 }, // p
SomeRandomBloke 0:7efa6655d94b 115 { 0x00, 0x18, 0x24, 0x24, 0x18, 0xFC }, // q
SomeRandomBloke 0:7efa6655d94b 116 { 0x00, 0x7C, 0x08, 0x04, 0x04, 0x08 }, // r
SomeRandomBloke 0:7efa6655d94b 117 { 0x00, 0x48, 0x54, 0x54, 0x54, 0x20 }, // s
SomeRandomBloke 0:7efa6655d94b 118 { 0x00, 0x04, 0x3F, 0x44, 0x40, 0x20 }, // t
SomeRandomBloke 0:7efa6655d94b 119 { 0x00, 0x3C, 0x40, 0x40, 0x20, 0x7C }, // u
SomeRandomBloke 0:7efa6655d94b 120 { 0x00, 0x1C, 0x20, 0x40, 0x20, 0x1C }, // v
SomeRandomBloke 0:7efa6655d94b 121 { 0x00, 0x3C, 0x40, 0x30, 0x40, 0x3C }, // w
SomeRandomBloke 0:7efa6655d94b 122 { 0x00, 0x44, 0x28, 0x10, 0x28, 0x44 }, // x
SomeRandomBloke 0:7efa6655d94b 123 { 0x00, 0x1C, 0xA0, 0xA0, 0xA0, 0x7C }, // y
SomeRandomBloke 0:7efa6655d94b 124 { 0x00, 0x44, 0x64, 0x54, 0x4C, 0x44 }, // z
SomeRandomBloke 0:7efa6655d94b 125 { 0x00,0x00, 0x06, 0x09, 0x09, 0x06 } // horiz lines
SomeRandomBloke 0:7efa6655d94b 126 };
SomeRandomBloke 0:7efa6655d94b 127
SomeRandomBloke 0:7efa6655d94b 128
SomeRandomBloke 1:51961974fe55 129 //******* VERY LARGE FONTS **********
SomeRandomBloke 0:7efa6655d94b 130 //used here for displaying numbers 0 - 9 and '+', '-', '.'
SomeRandomBloke 0:7efa6655d94b 131
SomeRandomBloke 1:51961974fe55 132 unsigned char big_number[13][3][16] = {
SomeRandomBloke 0:7efa6655d94b 133 0,128,192,224,224,96,224,224, //'0'
SomeRandomBloke 0:7efa6655d94b 134 192,128,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 135 ,
SomeRandomBloke 0:7efa6655d94b 136 112,255,255,1,0,0,0,0,
SomeRandomBloke 0:7efa6655d94b 137 255,255,254,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 138 ,
SomeRandomBloke 0:7efa6655d94b 139 0,15,31,60,56,48,56,56,
SomeRandomBloke 0:7efa6655d94b 140 31,15,3,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 141 ,
SomeRandomBloke 0:7efa6655d94b 142
SomeRandomBloke 0:7efa6655d94b 143 0,0,0,0,128,224,224,0, //'1'
SomeRandomBloke 0:7efa6655d94b 144 0,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 145 ,
SomeRandomBloke 0:7efa6655d94b 146 0,0,3,3,3,255,255,0,
SomeRandomBloke 0:7efa6655d94b 147 0,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 148 ,
SomeRandomBloke 0:7efa6655d94b 149 0,0,56,56,56,63,63,56,
SomeRandomBloke 0:7efa6655d94b 150 56,56,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 151 ,
SomeRandomBloke 0:7efa6655d94b 152
SomeRandomBloke 0:7efa6655d94b 153 0,192,192,224,96,96,224,224, //'2'
SomeRandomBloke 0:7efa6655d94b 154 192,128,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 155 ,
SomeRandomBloke 0:7efa6655d94b 156 0,1,0,0,128,192,224,249,
SomeRandomBloke 0:7efa6655d94b 157 63,31,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 158 ,
SomeRandomBloke 0:7efa6655d94b 159 0,60,62,63,63,59,57,56,
SomeRandomBloke 0:7efa6655d94b 160 56,56,56,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 161 ,
SomeRandomBloke 0:7efa6655d94b 162
SomeRandomBloke 0:7efa6655d94b 163 0,192,224,224,96,96,224,224, //'3'
SomeRandomBloke 0:7efa6655d94b 164 192,192,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 165 ,
SomeRandomBloke 0:7efa6655d94b 166 0,1,0,0,48,48,56,125,
SomeRandomBloke 0:7efa6655d94b 167 239,207,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 168 ,
SomeRandomBloke 0:7efa6655d94b 169 0,28,56,56,48,48,56,60,
SomeRandomBloke 0:7efa6655d94b 170 31,15,1,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 171 ,
SomeRandomBloke 0:7efa6655d94b 172
SomeRandomBloke 0:7efa6655d94b 173 0,0,0,0,0,128,192,224, //'4'
SomeRandomBloke 0:7efa6655d94b 174 224,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 175 ,
SomeRandomBloke 0:7efa6655d94b 176 224,240,248,222,207,199,193,255,
SomeRandomBloke 0:7efa6655d94b 177 255,192,192,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 178 ,
SomeRandomBloke 0:7efa6655d94b 179 0,0,0,0,0,0,0,63,
SomeRandomBloke 0:7efa6655d94b 180 63,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 181 ,
SomeRandomBloke 0:7efa6655d94b 182
SomeRandomBloke 0:7efa6655d94b 183 0,224,224,224,224,224,224,224, //'5'
SomeRandomBloke 0:7efa6655d94b 184 224,224,224,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 185 ,
SomeRandomBloke 0:7efa6655d94b 186 0,63,63,63,56,56,48,112,
SomeRandomBloke 0:7efa6655d94b 187 240,224,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 188 ,
SomeRandomBloke 0:7efa6655d94b 189 0,28,56,56,48,48,56,60,
SomeRandomBloke 0:7efa6655d94b 190 31,15,1,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 191 ,
SomeRandomBloke 0:7efa6655d94b 192
SomeRandomBloke 0:7efa6655d94b 193 0,0,128,192,192,224,96,96, //'6'
SomeRandomBloke 0:7efa6655d94b 194 224,224,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 195 ,
SomeRandomBloke 0:7efa6655d94b 196 224,254,255,55,57,24,24,56,
SomeRandomBloke 0:7efa6655d94b 197 240,240,192,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 198 ,
SomeRandomBloke 0:7efa6655d94b 199 0,15,31,28,56,48,48,56,
SomeRandomBloke 0:7efa6655d94b 200 31,15,7,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 201 ,
SomeRandomBloke 0:7efa6655d94b 202
SomeRandomBloke 0:7efa6655d94b 203 0,224,224,224,224,224,224,224, //'7'
SomeRandomBloke 0:7efa6655d94b 204 224,224,224,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 205 ,
SomeRandomBloke 0:7efa6655d94b 206 0,0,0,0,128,224,248,126,
SomeRandomBloke 0:7efa6655d94b 207 31,7,1,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 208 ,
SomeRandomBloke 0:7efa6655d94b 209 0,0,56,62,31,7,1,0,
SomeRandomBloke 0:7efa6655d94b 210 0,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 211 ,
SomeRandomBloke 0:7efa6655d94b 212
SomeRandomBloke 0:7efa6655d94b 213 0,128,192,224,224,96,96,224, //'8'
SomeRandomBloke 0:7efa6655d94b 214 192,192,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 215 ,
SomeRandomBloke 0:7efa6655d94b 216 0,207,255,127,56,48,112,112,
SomeRandomBloke 0:7efa6655d94b 217 255,239,199,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 218 ,
SomeRandomBloke 0:7efa6655d94b 219 3,15,31,60,56,48,48,56,
SomeRandomBloke 0:7efa6655d94b 220 31,31,15,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 221 ,
SomeRandomBloke 0:7efa6655d94b 222
SomeRandomBloke 0:7efa6655d94b 223 0,128,192,224,224,96,224,224, //'9'
SomeRandomBloke 0:7efa6655d94b 224 192,128,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 225 ,
SomeRandomBloke 0:7efa6655d94b 226 12,63,127,241,224,192,192,225,
SomeRandomBloke 0:7efa6655d94b 227 255,255,254,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 228 ,
SomeRandomBloke 0:7efa6655d94b 229 0,0,56,48,48,56,56,30,
SomeRandomBloke 0:7efa6655d94b 230 15,7,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 231 ,
SomeRandomBloke 0:7efa6655d94b 232
SomeRandomBloke 0:7efa6655d94b 233
SomeRandomBloke 0:7efa6655d94b 234 0,0,0,0,0,0,0,0, //'.'
SomeRandomBloke 0:7efa6655d94b 235 0,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 236 ,
SomeRandomBloke 0:7efa6655d94b 237 0,0,0,0,0,0,0,0,
SomeRandomBloke 0:7efa6655d94b 238 0,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 239 ,
SomeRandomBloke 0:7efa6655d94b 240 60,60,60,0,0,0,0,0,
SomeRandomBloke 0:7efa6655d94b 241 0,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 242 ,
SomeRandomBloke 0:7efa6655d94b 243
SomeRandomBloke 0:7efa6655d94b 244 0,0,0,0,0,0,0,0, //'+'
SomeRandomBloke 0:7efa6655d94b 245 0,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 246 ,
SomeRandomBloke 0:7efa6655d94b 247 0,0,64,64,64,64,64,254,
SomeRandomBloke 0:7efa6655d94b 248 254,64,64,64,64,64,0,0
SomeRandomBloke 0:7efa6655d94b 249 ,
SomeRandomBloke 0:7efa6655d94b 250 0,0,0,0,0,0,0,15,
SomeRandomBloke 0:7efa6655d94b 251 15,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 252 ,
SomeRandomBloke 0:7efa6655d94b 253
SomeRandomBloke 0:7efa6655d94b 254 0,0,0,0,0,0,0,0, //'-'
SomeRandomBloke 0:7efa6655d94b 255 0,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 256 ,
SomeRandomBloke 0:7efa6655d94b 257 0,64,64,64,64,64,64,0,
SomeRandomBloke 0:7efa6655d94b 258 0,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 259 ,
SomeRandomBloke 0:7efa6655d94b 260 0,0,0,0,0,0,0,0,
SomeRandomBloke 0:7efa6655d94b 261 0,0,0,0,0,0,0,0
SomeRandomBloke 0:7efa6655d94b 262 };
SomeRandomBloke 0:7efa6655d94b 263
SomeRandomBloke 0:7efa6655d94b 264 #endif