Working Renard prototype with eInk display, dummy data.

Dependencies:   DebouncedInterrupt SharpLCD_LucidaFont mbed-src

Fork of Renard_UI_Only by Eric Gowland

Committer:
awatt196
Date:
Tue Sep 02 09:42:41 2014 +0000
Revision:
4:b131ff1e047c
Parent:
3:e73cbdf58f5b
Updated to smaller font

Who changed what in which revision?

UserRevisionLine numberNew contents of line
awatt196 3:e73cbdf58f5b 1 const uint8_t Alarm [] = {
awatt196 3:e73cbdf58f5b 2 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 3 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 4 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 5 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 6 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 7 0xff, 0x8f, 0xf1, 0xff,
awatt196 3:e73cbdf58f5b 8 0xff, 0xf, 0xf0, 0xff,
awatt196 3:e73cbdf58f5b 9 0xfe, 0x30, 0xc, 0x7f,
awatt196 3:e73cbdf58f5b 10 0xfc, 0x60, 0x6, 0x3f,
awatt196 3:e73cbdf58f5b 11 0xf8, 0xc7, 0xe3, 0x1f,
awatt196 3:e73cbdf58f5b 12 0xf1, 0x8f, 0xf1, 0x8f,
awatt196 3:e73cbdf58f5b 13 0xf3, 0x1e, 0x78, 0xcf,
awatt196 3:e73cbdf58f5b 14 0xf2, 0x3e, 0x7c, 0x4f,
awatt196 3:e73cbdf58f5b 15 0xfc, 0x7e, 0x7e, 0x3f,
awatt196 3:e73cbdf58f5b 16 0xfc, 0xfe, 0x7f, 0x3f,
awatt196 3:e73cbdf58f5b 17 0xfc, 0xfe, 0x7f, 0x3f,
awatt196 3:e73cbdf58f5b 18 0xfc, 0xfe, 0x7f, 0x3f,
awatt196 3:e73cbdf58f5b 19 0xfc, 0xfe, 0x7f, 0x3f,
awatt196 3:e73cbdf58f5b 20 0xfc, 0xfe, 0x3f, 0x3f,
awatt196 3:e73cbdf58f5b 21 0xfc, 0xff, 0x1f, 0x3f,
awatt196 3:e73cbdf58f5b 22 0xfc, 0x7f, 0x8e, 0x3f,
awatt196 3:e73cbdf58f5b 23 0xfe, 0x3f, 0xcc, 0x7f,
awatt196 3:e73cbdf58f5b 24 0xff, 0x1f, 0xf8, 0xff,
awatt196 3:e73cbdf58f5b 25 0xff, 0x8f, 0xf1, 0xff,
awatt196 3:e73cbdf58f5b 26 0xff, 0xc7, 0xe3, 0xff,
awatt196 3:e73cbdf58f5b 27 0xff, 0xe0, 0x7, 0xff,
awatt196 3:e73cbdf58f5b 28 0xff, 0xf0, 0xf, 0xff,
awatt196 3:e73cbdf58f5b 29 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 30 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 31 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 32 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 33 0xff, 0xff, 0xff, 0xff,
erigow01 1:f0635f12df8c 34 };
erigow01 1:f0635f12df8c 35
awatt196 3:e73cbdf58f5b 36 const uint8_t Call[] = {
awatt196 3:e73cbdf58f5b 37 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 38 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 39 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 40 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 41 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 42 0xfc, 0xf, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 43 0xf8, 0x7, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 44 0xf8, 0x3, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 45 0xf8, 0x3, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 46 0xf8, 0x3, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 47 0xf8, 0x3, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 48 0xfc, 0x3, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 49 0xfc, 0x7, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 50 0xfe, 0xf, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 51 0xfe, 0xf, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 52 0xff, 0xf, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 53 0xff, 0x7, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 54 0xff, 0x83, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 55 0xff, 0xc1, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 56 0xff, 0xe0, 0xe0, 0x3f,
awatt196 3:e73cbdf58f5b 57 0xff, 0xf0, 0x40, 0x1f,
awatt196 3:e73cbdf58f5b 58 0xff, 0xf8, 0x0, 0x1f,
awatt196 3:e73cbdf58f5b 59 0xff, 0xfc, 0x0, 0x1f,
awatt196 3:e73cbdf58f5b 60 0xff, 0xfe, 0x0, 0x1f,
awatt196 3:e73cbdf58f5b 61 0xff, 0xff, 0x80, 0x1f,
awatt196 3:e73cbdf58f5b 62 0xff, 0xff, 0xe0, 0x3f,
awatt196 3:e73cbdf58f5b 63 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 64 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 65 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 66 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 67 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 68 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 69 };
awatt196 3:e73cbdf58f5b 70
awatt196 3:e73cbdf58f5b 71 const uint8_t SMS[] = {
awatt196 3:e73cbdf58f5b 72 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 73 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 74 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 75 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 76 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 77 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 78 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 79 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 80 0xe0, 0x0, 0x0, 0x7,
awatt196 3:e73cbdf58f5b 81 0xe0, 0x0, 0x0, 0x7,
awatt196 3:e73cbdf58f5b 82 0xe0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 83 0xe0, 0x0, 0x0, 0x1f,
awatt196 3:e73cbdf58f5b 84 0xe0, 0x0, 0x0, 0x3f,
awatt196 3:e73cbdf58f5b 85 0xe0, 0x0, 0x0, 0x7f,
awatt196 3:e73cbdf58f5b 86 0xe3, 0xff, 0x80, 0x7f,
awatt196 3:e73cbdf58f5b 87 0xe0, 0x0, 0x0, 0x7f,
awatt196 3:e73cbdf58f5b 88 0xe0, 0x0, 0x0, 0x7f,
awatt196 3:e73cbdf58f5b 89 0xe3, 0xff, 0xfc, 0x7f,
awatt196 3:e73cbdf58f5b 90 0xe0, 0x0, 0x0, 0x7f,
awatt196 3:e73cbdf58f5b 91 0xe0, 0x0, 0x0, 0x7f,
awatt196 3:e73cbdf58f5b 92 0xe0, 0x0, 0x0, 0x7f,
awatt196 3:e73cbdf58f5b 93 0xe0, 0x0, 0x0, 0x7f,
awatt196 3:e73cbdf58f5b 94 0xe0, 0x0, 0x0, 0x7f,
awatt196 3:e73cbdf58f5b 95 0xe0, 0x0, 0x0, 0x7f,
awatt196 3:e73cbdf58f5b 96 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 97 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 98 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 99 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 100 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 101 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 102 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 103 0xff, 0xff, 0xff, 0xff,
erigow01 1:f0635f12df8c 104 };
erigow01 1:f0635f12df8c 105
awatt196 3:e73cbdf58f5b 106 const uint8_t Email[] = {
awatt196 3:e73cbdf58f5b 107 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 108 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 109 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 110 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 111 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 112 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 113 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 114 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 115 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 116 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 117 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 118 0xf8, 0x0, 0x0, 0x1f,
awatt196 3:e73cbdf58f5b 119 0xf6, 0x0, 0x0, 0x6f,
awatt196 3:e73cbdf58f5b 120 0xf1, 0x80, 0x1, 0x8f,
awatt196 3:e73cbdf58f5b 121 0xf0, 0x60, 0x6, 0xf,
awatt196 3:e73cbdf58f5b 122 0xf0, 0x18, 0x18, 0xf,
awatt196 3:e73cbdf58f5b 123 0xf0, 0x6, 0x60, 0xf,
awatt196 3:e73cbdf58f5b 124 0xf0, 0x1, 0x80, 0xf,
awatt196 3:e73cbdf58f5b 125 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 126 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 127 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 128 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 129 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 130 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 131 0xf0, 0x0, 0x0, 0xf,
awatt196 3:e73cbdf58f5b 132 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 133 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 134 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 135 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 136 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 137 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 138 0xff, 0xff, 0xff, 0xff,
erigow01 1:f0635f12df8c 139 };
erigow01 1:f0635f12df8c 140
awatt196 3:e73cbdf58f5b 141 const uint8_t Calendar[] = {
awatt196 3:e73cbdf58f5b 142 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 143 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 144 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 145 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 146 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 147 0xff, 0xe3, 0xc7, 0xff,
awatt196 3:e73cbdf58f5b 148 0xff, 0xe3, 0xc7, 0xff,
awatt196 3:e73cbdf58f5b 149 0xff, 0xe3, 0xc7, 0xff,
awatt196 3:e73cbdf58f5b 150 0xfc, 0x0, 0x0, 0x3f,
awatt196 3:e73cbdf58f5b 151 0xfc, 0x0, 0x0, 0x3f,
awatt196 3:e73cbdf58f5b 152 0xfc, 0x0, 0x0, 0x3f,
awatt196 3:e73cbdf58f5b 153 0xfc, 0x0, 0x0, 0x3f,
awatt196 3:e73cbdf58f5b 154 0xfe, 0x7f, 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 155 0xfe, 0x7f, 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 156 0xfe, 0x7f, 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 157 0xfe, 0x7f, 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 158 0xfe, 0x7f, 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 159 0xfe, 0x7f, 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 160 0xfe, 0x7f, 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 161 0xfe, 0x7f, 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 162 0xfe, 0x7f, 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 163 0xfe, 0x7f, 0xe0, 0x7f,
awatt196 3:e73cbdf58f5b 164 0xfe, 0x7f, 0xe0, 0x7f,
awatt196 3:e73cbdf58f5b 165 0xfe, 0x7f, 0xe0, 0xff,
awatt196 3:e73cbdf58f5b 166 0xfe, 0x7f, 0xe1, 0xff,
awatt196 3:e73cbdf58f5b 167 0xfe, 0x0, 0x3, 0xff,
awatt196 3:e73cbdf58f5b 168 0xfe, 0x0, 0x7, 0xff,
awatt196 3:e73cbdf58f5b 169 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 170 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 171 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 172 0xff, 0xff, 0xff, 0xff,
awatt196 3:e73cbdf58f5b 173 0xff, 0xff, 0xff, 0xff,
erigow01 1:f0635f12df8c 174 };
erigow01 1:f0635f12df8c 175
awatt196 3:e73cbdf58f5b 176 const uint8_t Unread[] = {
awatt196 3:e73cbdf58f5b 177 0xff, 0xff,
awatt196 3:e73cbdf58f5b 178 0xff, 0xff,
awatt196 3:e73cbdf58f5b 179 0xff, 0xff,
awatt196 3:e73cbdf58f5b 180 0xff, 0xff,
awatt196 3:e73cbdf58f5b 181 0xfc, 0x3f,
awatt196 3:e73cbdf58f5b 182 0xf8, 0x1f,
awatt196 3:e73cbdf58f5b 183 0xf0, 0xf,
awatt196 3:e73cbdf58f5b 184 0xf0, 0xf,
awatt196 3:e73cbdf58f5b 185 0xf0, 0xf,
awatt196 3:e73cbdf58f5b 186 0xf8, 0x1f,
awatt196 3:e73cbdf58f5b 187 0xf8, 0x1f,
awatt196 3:e73cbdf58f5b 188 0xfc, 0x3f,
awatt196 3:e73cbdf58f5b 189 0xfc, 0x3f,
awatt196 3:e73cbdf58f5b 190 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 191 0xff, 0xff,
awatt196 3:e73cbdf58f5b 192 0xff, 0xff,
awatt196 3:e73cbdf58f5b 193 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 194 0xfc, 0x3f,
awatt196 3:e73cbdf58f5b 195 0xfc, 0x3f,
awatt196 3:e73cbdf58f5b 196 0xfe, 0x7f,
awatt196 3:e73cbdf58f5b 197 0xff, 0xff,
awatt196 3:e73cbdf58f5b 198 0xff, 0xff,
awatt196 3:e73cbdf58f5b 199 0xff, 0xff,
awatt196 3:e73cbdf58f5b 200 0xff, 0xff,
awatt196 3:e73cbdf58f5b 201 0xff, 0xff,
awatt196 3:e73cbdf58f5b 202 0xff, 0xff,
awatt196 3:e73cbdf58f5b 203 0xff, 0xff,
awatt196 3:e73cbdf58f5b 204 0xff, 0xff,
awatt196 3:e73cbdf58f5b 205 0x4f, 0xf6,
awatt196 3:e73cbdf58f5b 206 0xbf, 0xff,
awatt196 3:e73cbdf58f5b 207 0x0,
erigow01 1:f0635f12df8c 208 };
erigow01 1:f0635f12df8c 209
awatt196 3:e73cbdf58f5b 210 /*Bitmap bitmUnread = {
erigow01 1:f0635f12df8c 211 16, // XSize
erigow01 1:f0635f12df8c 212 24, // YSize
erigow01 1:f0635f12df8c 213 2, // Bytes in Line
erigow01 1:f0635f12df8c 214 Unread, // Pointer to picture data
erigow01 1:f0635f12df8c 215 };
erigow01 1:f0635f12df8c 216
erigow01 1:f0635f12df8c 217 Bitmap bitmAlarm = {
erigow01 1:f0635f12df8c 218 32, // XSize
erigow01 1:f0635f12df8c 219 32, // YSize
erigow01 1:f0635f12df8c 220 4, // Bytes in Line
erigow01 1:f0635f12df8c 221 Alarm, // Pointer to picture data
erigow01 1:f0635f12df8c 222 };
erigow01 1:f0635f12df8c 223
erigow01 1:f0635f12df8c 224 Bitmap bitmCall = {
erigow01 1:f0635f12df8c 225 32, // XSize
erigow01 1:f0635f12df8c 226 32, // YSize
erigow01 1:f0635f12df8c 227 4, // Bytes in Line
erigow01 1:f0635f12df8c 228 Call, // Pointer to picture data
erigow01 1:f0635f12df8c 229 };
erigow01 1:f0635f12df8c 230
erigow01 1:f0635f12df8c 231 Bitmap bitmSMS = {
erigow01 1:f0635f12df8c 232 32, // XSize
erigow01 1:f0635f12df8c 233 32, // YSize
erigow01 1:f0635f12df8c 234 4, // Bytes in Line
erigow01 1:f0635f12df8c 235 SMS, // Pointer to picture data
erigow01 1:f0635f12df8c 236 };
erigow01 1:f0635f12df8c 237
erigow01 1:f0635f12df8c 238 Bitmap bitmEmail = {
erigow01 1:f0635f12df8c 239 32, // XSize
erigow01 1:f0635f12df8c 240 32, // YSize
erigow01 1:f0635f12df8c 241 4, // Bytes in Line
erigow01 1:f0635f12df8c 242 Email, // Pointer to picture data
erigow01 1:f0635f12df8c 243 };
erigow01 1:f0635f12df8c 244
erigow01 1:f0635f12df8c 245 Bitmap bitmCalendar = {
erigow01 1:f0635f12df8c 246 32, // XSize
erigow01 1:f0635f12df8c 247 32, // YSize
erigow01 1:f0635f12df8c 248 4, // Bytes in Line
erigow01 1:f0635f12df8c 249 Calendar, // Pointer to picture data
awatt196 3:e73cbdf58f5b 250 };*/