Erik van de Coevering / UC1701

Dependents:   Opensmart_LCD_UC1701

Committer:
Anaesthetix
Date:
Sun Dec 18 21:10:26 2016 +0000
Revision:
0:a8cfaf48d064
Optimized for execution speed

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Anaesthetix 0:a8cfaf48d064 1 #ifndef FONT2D_FORMPLEX12_H
Anaesthetix 0:a8cfaf48d064 2 #define FONT2D_FORMPLEX12_H
Anaesthetix 0:a8cfaf48d064 3
Anaesthetix 0:a8cfaf48d064 4 ; // Compiler bug: remove if needed
Anaesthetix 0:a8cfaf48d064 5 const char font2d_formplex12[96][8] = {
Anaesthetix 0:a8cfaf48d064 6 {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}, //
Anaesthetix 0:a8cfaf48d064 7 {0x00,0x2f,0x2f,0x00,0x00,0x00,0x00,0x00}, // !
Anaesthetix 0:a8cfaf48d064 8 {0x03,0x03,0x00,0x03,0x03,0x00,0x00,0x00}, // "
Anaesthetix 0:a8cfaf48d064 9 {0x14,0x3e,0x3e,0x14,0x3e,0x3e,0x14,0x00}, // #
Anaesthetix 0:a8cfaf48d064 10 {0x24,0x2e,0x2a,0x7f,0x7f,0x3a,0x3a,0x00}, // $
Anaesthetix 0:a8cfaf48d064 11 {0x26,0x36,0x18,0x0c,0x36,0x32,0x00,0x00}, // %
Anaesthetix 0:a8cfaf48d064 12 {0x1a,0x3f,0x25,0x25,0x3f,0x1a,0x28,0x28}, // &
Anaesthetix 0:a8cfaf48d064 13 {0x00,0x03,0x03,0x00,0x00,0x00,0x00,0x00}, // '
Anaesthetix 0:a8cfaf48d064 14 {0x00,0x3e,0x7f,0x41,0x41,0x41,0x00,0x00}, // (
Anaesthetix 0:a8cfaf48d064 15 {0x00,0x41,0x41,0x41,0x7f,0x3e,0x00,0x00}, // )
Anaesthetix 0:a8cfaf48d064 16 {0x08,0x2a,0x3e,0x1c,0x3e,0x2a,0x08,0x00}, // *
Anaesthetix 0:a8cfaf48d064 17 {0x08,0x08,0x3e,0x3e,0x08,0x08,0x00,0x00}, // +
Anaesthetix 0:a8cfaf48d064 18 {0x00,0x70,0x70,0x00,0x00,0x00,0x00,0x00}, // ,
Anaesthetix 0:a8cfaf48d064 19 {0x08,0x08,0x08,0x08,0x08,0x00,0x00,0x00}, // -
Anaesthetix 0:a8cfaf48d064 20 {0x00,0x30,0x30,0x00,0x00,0x00,0x00,0x00}, // .
Anaesthetix 0:a8cfaf48d064 21 {0x20,0x30,0x18,0x0c,0x06,0x02,0x00,0x00}, // /
Anaesthetix 0:a8cfaf48d064 22 {0x1c,0x3e,0x32,0x2a,0x2a,0x3e,0x3e,0x00}, // 0
Anaesthetix 0:a8cfaf48d064 23 {0x00,0x24,0x3e,0x3e,0x20,0x00,0x00,0x00}, // 1
Anaesthetix 0:a8cfaf48d064 24 {0x3a,0x3a,0x2a,0x2a,0x2a,0x2e,0x24,0x00}, // 2
Anaesthetix 0:a8cfaf48d064 25 {0x2a,0x2a,0x2a,0x2a,0x2a,0x3e,0x14,0x00}, // 3
Anaesthetix 0:a8cfaf48d064 26 {0x06,0x0e,0x08,0x08,0x08,0x3e,0x3e,0x00}, // 4
Anaesthetix 0:a8cfaf48d064 27 {0x2e,0x2e,0x2a,0x2a,0x2a,0x3a,0x12,0x00}, // 5
Anaesthetix 0:a8cfaf48d064 28 {0x1c,0x3e,0x2a,0x2a,0x2a,0x3a,0x10,0x00}, // 6
Anaesthetix 0:a8cfaf48d064 29 {0x02,0x02,0x02,0x02,0x02,0x3e,0x3c,0x00}, // 7
Anaesthetix 0:a8cfaf48d064 30 {0x14,0x3e,0x2a,0x2a,0x2a,0x3e,0x14,0x00}, // 8
Anaesthetix 0:a8cfaf48d064 31 {0x04,0x0e,0x0a,0x0a,0x0a,0x7e,0x7c,0x00}, // 9
Anaesthetix 0:a8cfaf48d064 32 {0x00,0x00,0x36,0x36,0x00,0x00,0x00,0x00}, // :
Anaesthetix 0:a8cfaf48d064 33 {0x00,0x16,0x36,0x20,0x00,0x00,0x00,0x00}, // ;
Anaesthetix 0:a8cfaf48d064 34 {0x00,0x08,0x1c,0x36,0x22,0x22,0x00,0x00}, // <
Anaesthetix 0:a8cfaf48d064 35 {0x14,0x14,0x14,0x14,0x14,0x00,0x00,0x00}, // =
Anaesthetix 0:a8cfaf48d064 36 {0x00,0x22,0x22,0x36,0x1c,0x08,0x00,0x00}, // >
Anaesthetix 0:a8cfaf48d064 37 {0x00,0x01,0x2d,0x2f,0x06,0x00,0x00,0x00}, // ?
Anaesthetix 0:a8cfaf48d064 38 {0x1e,0x3f,0x21,0x2d,0x2d,0x29,0x06,0x06}, // @
Anaesthetix 0:a8cfaf48d064 39 {0x3c,0x3e,0x02,0x0a,0x0a,0x3e,0x3c,0x00}, // A
Anaesthetix 0:a8cfaf48d064 40 {0x3e,0x3e,0x22,0x2a,0x2a,0x3e,0x14,0x00}, // B
Anaesthetix 0:a8cfaf48d064 41 {0x1c,0x3e,0x22,0x22,0x22,0x22,0x22,0x00}, // C
Anaesthetix 0:a8cfaf48d064 42 {0x3e,0x3e,0x02,0x22,0x22,0x3e,0x1c,0x00}, // D
Anaesthetix 0:a8cfaf48d064 43 {0x1c,0x3e,0x22,0x2a,0x2a,0x2a,0x22,0x00}, // E
Anaesthetix 0:a8cfaf48d064 44 {0x3c,0x3e,0x02,0x0a,0x0a,0x0a,0x02,0x00}, // F
Anaesthetix 0:a8cfaf48d064 45 {0x1c,0x3e,0x22,0x22,0x22,0x3a,0x18,0x00}, // G
Anaesthetix 0:a8cfaf48d064 46 {0x3e,0x3e,0x00,0x08,0x08,0x3e,0x3e,0x00}, // H
Anaesthetix 0:a8cfaf48d064 47 {0x3e,0x3e,0x00,0x00,0x00,0x00,0x00,0x00}, // I
Anaesthetix 0:a8cfaf48d064 48 {0x20,0x20,0x20,0x20,0x30,0x3e,0x1e,0x00}, // J
Anaesthetix 0:a8cfaf48d064 49 {0x3e,0x3e,0x00,0x08,0x08,0x3e,0x36,0x00}, // K
Anaesthetix 0:a8cfaf48d064 50 {0x1e,0x3e,0x30,0x20,0x20,0x20,0x20,0x00}, // L
Anaesthetix 0:a8cfaf48d064 51 {0x3e,0x3e,0x02,0x3a,0x02,0x3e,0x3c,0x00}, // M
Anaesthetix 0:a8cfaf48d064 52 {0x3c,0x3e,0x02,0x02,0x02,0x3e,0x3c,0x00}, // N
Anaesthetix 0:a8cfaf48d064 53 {0x1c,0x3e,0x22,0x22,0x22,0x3e,0x1c,0x00}, // O
Anaesthetix 0:a8cfaf48d064 54 {0x3c,0x3e,0x02,0x0a,0x0a,0x0e,0x04,0x00}, // P
Anaesthetix 0:a8cfaf48d064 55 {0x1c,0x3e,0x22,0x22,0x32,0x3e,0x3c,0x00}, // Q
Anaesthetix 0:a8cfaf48d064 56 {0x3c,0x3e,0x02,0x0a,0x0a,0x3e,0x34,0x00}, // R
Anaesthetix 0:a8cfaf48d064 57 {0x24,0x2e,0x2a,0x2a,0x2a,0x3a,0x12,0x00}, // S
Anaesthetix 0:a8cfaf48d064 58 {0x02,0x02,0x3e,0x3e,0x02,0x02,0x00,0x00}, // T
Anaesthetix 0:a8cfaf48d064 59 {0x1e,0x3e,0x20,0x20,0x20,0x3e,0x1e,0x00}, // U
Anaesthetix 0:a8cfaf48d064 60 {0x0e,0x1e,0x30,0x20,0x30,0x1e,0x0e,0x00}, // V
Anaesthetix 0:a8cfaf48d064 61 {0x1e,0x3e,0x20,0x2e,0x20,0x3e,0x3e,0x00}, // W
Anaesthetix 0:a8cfaf48d064 62 {0x36,0x3e,0x08,0x08,0x3e,0x36,0x00,0x00}, // X
Anaesthetix 0:a8cfaf48d064 63 {0x06,0x0e,0x38,0x38,0x0e,0x06,0x00,0x00}, // Y
Anaesthetix 0:a8cfaf48d064 64 {0x32,0x32,0x3a,0x2a,0x2e,0x26,0x26,0x00}, // Z
Anaesthetix 0:a8cfaf48d064 65 {0x00,0x7f,0x7f,0x41,0x41,0x41,0x00,0x00}, // [
Anaesthetix 0:a8cfaf48d064 66 {0x02,0x06,0x0c,0x18,0x30,0x20,0x00,0x00}, // "\"
Anaesthetix 0:a8cfaf48d064 67 {0x00,0x41,0x41,0x41,0x7f,0x7f,0x00,0x00}, // ]
Anaesthetix 0:a8cfaf48d064 68 {0x01,0x01,0x00,0x01,0x01,0x00,0x00,0x00}, // ^
Anaesthetix 0:a8cfaf48d064 69 {0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x00}, // _
Anaesthetix 0:a8cfaf48d064 70 {0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00}, // `
Anaesthetix 0:a8cfaf48d064 71 {0x3c,0x3e,0x02,0x0a,0x0a,0x3e,0x3c,0x00}, // a
Anaesthetix 0:a8cfaf48d064 72 {0x3e,0x3e,0x22,0x2a,0x2a,0x3e,0x14,0x00}, // b
Anaesthetix 0:a8cfaf48d064 73 {0x1c,0x3e,0x22,0x22,0x22,0x22,0x22,0x00}, // c
Anaesthetix 0:a8cfaf48d064 74 {0x3e,0x3e,0x02,0x22,0x22,0x3e,0x1c,0x00}, // d
Anaesthetix 0:a8cfaf48d064 75 {0x1c,0x3e,0x22,0x2a,0x2a,0x2a,0x22,0x00}, // e
Anaesthetix 0:a8cfaf48d064 76 {0x3c,0x3e,0x02,0x0a,0x0a,0x0a,0x02,0x00}, // f
Anaesthetix 0:a8cfaf48d064 77 {0x1c,0x3e,0x22,0x22,0x22,0x3a,0x18,0x00}, // g
Anaesthetix 0:a8cfaf48d064 78 {0x3e,0x3e,0x00,0x08,0x08,0x3e,0x3e,0x00}, // h
Anaesthetix 0:a8cfaf48d064 79 {0x3e,0x3e,0x00,0x00,0x00,0x00,0x00,0x00}, // i
Anaesthetix 0:a8cfaf48d064 80 {0x20,0x20,0x20,0x20,0x30,0x3e,0x1e,0x00}, // j
Anaesthetix 0:a8cfaf48d064 81 {0x3e,0x3e,0x00,0x08,0x08,0x3e,0x36,0x00}, // k
Anaesthetix 0:a8cfaf48d064 82 {0x1e,0x3e,0x30,0x20,0x20,0x20,0x20,0x00}, // l
Anaesthetix 0:a8cfaf48d064 83 {0x3e,0x3e,0x02,0x3a,0x02,0x3e,0x3c,0x00}, // m
Anaesthetix 0:a8cfaf48d064 84 {0x3c,0x3e,0x02,0x02,0x02,0x3e,0x3c,0x00}, // n
Anaesthetix 0:a8cfaf48d064 85 {0x1c,0x3e,0x22,0x22,0x22,0x3e,0x1c,0x00}, // o
Anaesthetix 0:a8cfaf48d064 86 {0x3c,0x3e,0x02,0x0a,0x0a,0x0e,0x04,0x00}, // p
Anaesthetix 0:a8cfaf48d064 87 {0x1c,0x3e,0x22,0x22,0x32,0x3e,0x3c,0x00}, // q
Anaesthetix 0:a8cfaf48d064 88 {0x3c,0x3e,0x02,0x0a,0x0a,0x3e,0x34,0x00}, // r
Anaesthetix 0:a8cfaf48d064 89 {0x24,0x2e,0x2a,0x2a,0x2a,0x3a,0x12,0x00}, // s
Anaesthetix 0:a8cfaf48d064 90 {0x02,0x02,0x3e,0x3e,0x02,0x02,0x00,0x00}, // t
Anaesthetix 0:a8cfaf48d064 91 {0x1e,0x3e,0x20,0x20,0x20,0x3e,0x1e,0x00}, // u
Anaesthetix 0:a8cfaf48d064 92 {0x0e,0x1e,0x30,0x20,0x30,0x1e,0x0e,0x00}, // v
Anaesthetix 0:a8cfaf48d064 93 {0x1e,0x3e,0x20,0x2e,0x20,0x3e,0x3e,0x00}, // w
Anaesthetix 0:a8cfaf48d064 94 {0x36,0x3e,0x08,0x08,0x3e,0x36,0x00,0x00}, // x
Anaesthetix 0:a8cfaf48d064 95 {0x06,0x0e,0x38,0x38,0x0e,0x06,0x00,0x00}, // y
Anaesthetix 0:a8cfaf48d064 96 {0x32,0x32,0x3a,0x2a,0x2e,0x26,0x26,0x00}, // z
Anaesthetix 0:a8cfaf48d064 97 {0x00,0x08,0x7f,0x77,0x41,0x41,0x00,0x00}, // {
Anaesthetix 0:a8cfaf48d064 98 {0x7f,0x7f,0x00,0x00,0x00,0x00,0x00,0x00}, // |
Anaesthetix 0:a8cfaf48d064 99 {0x00,0x41,0x41,0x77,0x7f,0x08,0x00,0x00}, // }
Anaesthetix 0:a8cfaf48d064 100 {0x00,0x04,0x06,0x02,0x04,0x06,0x02,0x00}, // ~
Anaesthetix 0:a8cfaf48d064 101 {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}
Anaesthetix 0:a8cfaf48d064 102 };
Anaesthetix 0:a8cfaf48d064 103
Anaesthetix 0:a8cfaf48d064 104 #endif