-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraphics.c
More file actions
321 lines (295 loc) · 12.6 KB
/
graphics.c
File metadata and controls
321 lines (295 loc) · 12.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/**
* @file graphics.c
* @brief ssd1306 OLED graphics display APIs implementation.
* @author Luyao Han (luyaohan1001@gmail.com)
* @date 12-21-2022
*/
#include "graphics.h"
#include "stdarg.h"
#define FONT_CHAR_WIDTH 6
#define ASCII_TABLE_LENGTH 128
/**
* @brief ASCII Font table defined in hex encoding.
* @note This table is accessed through numerical value of a char.
* Each single char is rendered on screen byte by byte (per slice).
* Non-Alphanumeric characters are encoded 0; they are meaningless for
* printing but including them avoids remapping when interpreting ascii numeric
* value as the access index to this table.
*/
static const unsigned char FONT_TABLE[ASCII_TABLE_LENGTH][FONT_CHAR_WIDTH] = {
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'NUL'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'SOH'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'STX'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'ETX'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'EOT'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'ENQ'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'ACK'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'BEL'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'BS'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'HT'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'LF'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'VT'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'FF'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'CR'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'SO'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'SI'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'DLE'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'DC1'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'DC2'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'DC3'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'DC4'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'NAK'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'SYN'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'ETB'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'CAN'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'EM'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'SUB'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'ESC'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'FS'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'GS'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'RS'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // 'US'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, // ' '
{0x00, 0x00, 0x2f, 0x00, 0x00, 0x00}, // '!'
{0x00, 0x07, 0x00, 0x07, 0x00, 0x00}, // '"'
{0x14, 0x7f, 0x14, 0x7f, 0x14, 0x00}, // '#'
{0x24, 0x2a, 0x7f, 0x2a, 0x12, 0x00}, // '$'
{0x23, 0x13, 0x08, 0x64, 0x62, 0x00}, // '%'
{0x36, 0x49, 0x55, 0x22, 0x50, 0x00}, // '&'
{0x00, 0x05, 0x03, 0x00, 0x00, 0x00}, // '''
{0x00, 0x1c, 0x22, 0x41, 0x00, 0x00}, // '('
{0x00, 0x41, 0x22, 0x1c, 0x00, 0x00}, // ')'
{0x14, 0x08, 0x3E, 0x08, 0x14, 0x00}, // '*'
{0x08, 0x08, 0x3E, 0x08, 0x08, 0x00}, // '+'
{0x00, 0x00, 0xA0, 0x60, 0x00, 0x00}, // ','
{0x08, 0x08, 0x08, 0x08, 0x08, 0x00}, // '-'
{0x00, 0x60, 0x60, 0x00, 0x00, 0x00}, // '.'
{0x20, 0x10, 0x08, 0x04, 0x02, 0x00}, // '/'
{0x3E, 0x51, 0x49, 0x45, 0x3E, 0x00}, // '0'
{0x00, 0x42, 0x7F, 0x40, 0x00, 0x00}, // '1'
{0x42, 0x61, 0x51, 0x49, 0x46, 0x00}, // '2'
{0x21, 0x41, 0x45, 0x4B, 0x31, 0x00}, // '3'
{0x18, 0x14, 0x12, 0x7F, 0x10, 0x00}, // '4'
{0x27, 0x45, 0x45, 0x45, 0x39, 0x00}, // '5'
{0x3C, 0x4A, 0x49, 0x49, 0x30, 0x00}, // '6'
{0x01, 0x71, 0x09, 0x05, 0x03, 0x00}, // '7'
{0x36, 0x49, 0x49, 0x49, 0x36, 0x00}, // '8'
{0x06, 0x49, 0x49, 0x29, 0x1E, 0x00}, // '9'
{0x00, 0x36, 0x36, 0x00, 0x00, 0x00}, // ':'
{0x00, 0x56, 0x36, 0x00, 0x00, 0x00}, // ';'
{0x08, 0x14, 0x22, 0x41, 0x00, 0x00}, // '<'
{0x14, 0x14, 0x14, 0x14, 0x14, 0x00}, // '='
{0x00, 0x41, 0x22, 0x14, 0x08, 0x00}, // '>'
{0x02, 0x01, 0x51, 0x09, 0x06, 0x00}, // '?'
{0x32, 0x49, 0x59, 0x51, 0x3E, 0x00}, // '@'
{0x7C, 0x12, 0x11, 0x12, 0x7C, 0x00}, // 'A'
{0x7F, 0x49, 0x49, 0x49, 0x36, 0x00}, // 'B'
{0x3E, 0x41, 0x41, 0x41, 0x22, 0x00}, // 'C'
{0x7F, 0x41, 0x41, 0x22, 0x1C, 0x00}, // 'D'
{0x7F, 0x49, 0x49, 0x49, 0x41, 0x00}, // 'E'
{0x7F, 0x09, 0x09, 0x09, 0x01, 0x00}, // 'F'
{0x3E, 0x41, 0x49, 0x49, 0x7A, 0x00}, // 'G'
{0x7F, 0x08, 0x08, 0x08, 0x7F, 0x00}, // 'H'
{0x00, 0x41, 0x7F, 0x41, 0x00, 0x00}, // 'I'
{0x20, 0x40, 0x41, 0x3F, 0x01, 0x00}, // 'J'
{0x7F, 0x08, 0x14, 0x22, 0x41, 0x00}, // 'K'
{0x7F, 0x40, 0x40, 0x40, 0x40, 0x00}, // 'L'
{0x7F, 0x02, 0x0C, 0x02, 0x7F, 0x00}, // 'M'
{0x7F, 0x04, 0x08, 0x10, 0x7F, 0x00}, // 'N'
{0x3E, 0x41, 0x41, 0x41, 0x3E, 0x00}, // 'O'
{0x7F, 0x09, 0x09, 0x09, 0x06, 0x00}, // 'P'
{0x3E, 0x41, 0x51, 0x21, 0x5E, 0x00}, // 'Q'
{0x7F, 0x09, 0x19, 0x29, 0x46, 0x00}, // 'R'
{0x46, 0x49, 0x49, 0x49, 0x31, 0x00}, // 'S'
{0x01, 0x01, 0x7F, 0x01, 0x01, 0x00}, // 'T'
{0x3F, 0x40, 0x40, 0x40, 0x3F, 0x00}, // 'U'
{0x1F, 0x20, 0x40, 0x20, 0x1F, 0x00}, // 'V'
{0x3F, 0x40, 0x38, 0x40, 0x3F, 0x00}, // 'W'
{0x63, 0x14, 0x08, 0x14, 0x63, 0x00}, // 'X'
{0x07, 0x08, 0x70, 0x08, 0x07, 0x00}, // 'Y'
{0x61, 0x51, 0x49, 0x45, 0x43, 0x00}, // 'Z'
{0x00, 0x7F, 0x41, 0x41, 0x00, 0x00}, // '['
{0x55, 0xAA, 0x55, 0xAA, 0x55, 0x00}, // '\'
{0x00, 0x41, 0x41, 0x7F, 0x00, 0x00}, // ']'
{0x04, 0x02, 0x01, 0x02, 0x04, 0x00}, // '^'
{0x40, 0x40, 0x40, 0x40, 0x40, 0x00}, // '_'
{0x00, 0x03, 0x05, 0x00, 0x00, 0x00}, // '`'
{0x20, 0x54, 0x54, 0x54, 0x78, 0x00}, // 'a'
{0x7F, 0x48, 0x44, 0x44, 0x38, 0x00}, // 'b'
{0x38, 0x44, 0x44, 0x44, 0x20, 0x00}, // 'c'
{0x38, 0x44, 0x44, 0x48, 0x7F, 0x00}, // 'd'
{0x38, 0x54, 0x54, 0x54, 0x18, 0x00}, // 'e'
{0x08, 0x7E, 0x09, 0x01, 0x02, 0x00}, // 'f'
{0x18, 0xA4, 0xA4, 0xA4, 0x7C, 0x00}, // 'g'
{0x7F, 0x08, 0x04, 0x04, 0x78, 0x00}, // 'h'
{0x00, 0x44, 0x7D, 0x40, 0x00, 0x00}, // 'i'
{0x40, 0x80, 0x84, 0x7D, 0x00, 0x00}, // 'j'
{0x7F, 0x10, 0x28, 0x44, 0x00, 0x00}, // 'k'
{0x00, 0x41, 0x7F, 0x40, 0x00, 0x00}, // 'l'
{0x7C, 0x04, 0x18, 0x04, 0x78, 0x00}, // 'm'
{0x7C, 0x08, 0x04, 0x04, 0x78, 0x00}, // 'n'
{0x38, 0x44, 0x44, 0x44, 0x38, 0x00}, // 'o'
{0xFC, 0x24, 0x24, 0x24, 0x18, 0x00}, // 'p'
{0x18, 0x24, 0x24, 0x18, 0xFC, 0x00}, // 'q'
{0x7C, 0x08, 0x04, 0x04, 0x08, 0x00}, // 'r'
{0x48, 0x54, 0x54, 0x54, 0x20, 0x00}, // 's'
{0x04, 0x3F, 0x44, 0x40, 0x20, 0x00}, // 't'
{0x3C, 0x40, 0x40, 0x20, 0x7C, 0x00}, // 'u'
{0x1C, 0x20, 0x40, 0x20, 0x1C, 0x00}, // 'v'
{0x3C, 0x40, 0x30, 0x40, 0x3C, 0x00}, // 'w'
{0x44, 0x28, 0x10, 0x28, 0x44, 0x00}, // 'x'
{0x1C, 0xA0, 0xA0, 0xA0, 0x7C, 0x00}, // 'y'
{0x44, 0x64, 0x54, 0x4C, 0x44, 0x00}, // 'z'
{0x00, 0x10, 0x7C, 0x82, 0x00, 0x00}, // '{'
{0x00, 0x00, 0xFF, 0x00, 0x00, 0x00}, // '|'
{0x00, 0x82, 0x7C, 0x10, 0x00, 0x00}, // '}'
{0x00, 0x06, 0x09, 0x09, 0x06, 0x00}, // '~'
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00} // 'DEL'
};
/**
* @brief Bitmap for a dinosaur.
* @note Bitmap code generated using https://javl.github.io/image2cpp/
*/
#define DINOSAUR_BITMAP_ROWS 4
#define DINOSAUR_BITMAP_COLUMNS 32
const unsigned char
DINOSAUR_BITMAP[DINOSAUR_BITMAP_ROWS][DINOSAUR_BITMAP_COLUMNS] = {
{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xf0, 0xf8, 0xe8, 0xf8, 0xf8, 0xf8, 0xf8,
0xf8, 0xf8, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
{0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xf0, 0xe0, 0xc0, 0xc0, 0xe0,
0xf0, 0xf0, 0xf8, 0xfc, 0xff, 0xff, 0xff, 0xff, 0x13, 0x32, 0x02,
0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
{0x00, 0x00, 0x00, 0x40, 0x40, 0x00, 0x01, 0x03, 0x07, 0x0f, 0xff,
0xbf, 0x1f, 0x0f, 0x1f, 0xff, 0x87, 0x03, 0x01, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
{0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0,
0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0,
0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0}};
/**
* @brief Book-keeps parameters for the oled graphics.
* @param cursor_coordinate Keeps track of the coordinate of current cursor.
* @param display_text Buffers/keeps track of the current text on the
* oled_screen.
*/
oled_graphics_params_t oled_graphics_params = {
.cursor_coordinate = {.line = 0, .position = 0}, .display_text = "\0"};
/**
* @brief Fill the entire screen with byte pattern.
* @param pattern Byte pattern to fill.
* @return None.
*/
void oled_fill_all(uint8_t pattern) {
oled_cursor_coordinate_t cursor_coordinate = {.line = 0, .position = 0};
static const int TOTAL_PIXELS = OLED_COLUMN_LENGTH * OLED_PAGE_LENGTH;
uint32_t pixel = 0;
oled_set_cursor(cursor_coordinate);
for (pixel = 0; pixel < TOTAL_PIXELS; ++pixel) {
ssd1306_write_address(DATA_CONTROL, DONT_CARE, 1, &pattern);
}
}
/**
* @brief Set the cursor position, i.e. the start location to print.
* @param cursor_coordinate The pixel coordinate to set the cursor to.
*/
void oled_set_cursor(oled_cursor_coordinate_t cursor_coordinate) {
uint8_t packet[2];
/* Move the Cursor to specified position only if it is in range */
if ((cursor_coordinate.line <= OLED_PAGE_MAX) &&
(cursor_coordinate.position < OLED_COLUMN_MAX)) {
memcpy(&oled_graphics_params.cursor_coordinate, &cursor_coordinate,
sizeof(oled_cursor_coordinate_t));
/* Specify page (rows) start and end address. */
memcpy(
packet,
(uint8_t[]){oled_graphics_params.cursor_coordinate.line, OLED_PAGE_MAX},
2);
ssd1306_write_address(COMMAND_CONTROL, SET_PAGE_ADDRESS, 2, packet);
/* Specify column start and end address. */
memcpy(packet,
(uint8_t[]){oled_graphics_params.cursor_coordinate.position,
OLED_COLUMN_MAX},
2);
ssd1306_write_address(COMMAND_CONTROL, SET_COLUMN_ADDRESS, 2, packet);
}
}
/**
* @brief Change to a new line on the OLED screen.
* @param oled_new_line_options
* START_OF_NEW_LINE to print to the start of the new line.
* SAME_CURSOR_POSITION to print the next line the same cursor position.
* @return None.
*/
void oled_new_line(oled_new_line_options new_line_option) {
/* Increment and wrap-around to avoid overrun. */
oled_graphics_params.cursor_coordinate.line += 1;
oled_graphics_params.cursor_coordinate.line &= OLED_PAGE_MAX;
if (new_line_option == START_OF_NEW_LINE) {
/* Set cursor to the beginning of the line, thus position 0. */
oled_graphics_params.cursor_coordinate.position = 0;
} else if (new_line_option == SAME_CURSOR_POSITION) {
/* No change to the cursor_position. */
}
oled_set_cursor(oled_graphics_params.cursor_coordinate);
}
/**
* @brief Put single char to the oled screen.
* @param ascii_char ASCII character to put.
* @return None.
*/
void oled_putc(unsigned char ascii_char) {
uint8_t font_char_slice;
uint8_t slice = 0;
/* Change-of-line detection. */
if (((oled_graphics_params.cursor_coordinate.position + FONT_CHAR_WIDTH) >=
OLED_COLUMN_LENGTH) ||
(ascii_char == '\n')) {
oled_new_line(START_OF_NEW_LINE);
}
/* Print the character from the hex font table, slice by slice. */
if (ascii_char != '\n') {
for (slice = 0; slice < FONT_CHAR_WIDTH; slice += 1) {
font_char_slice = FONT_TABLE[ascii_char][slice];
ssd1306_write_address(DATA_CONTROL, DONT_CARE, 1, &font_char_slice);
oled_graphics_params.cursor_coordinate.position += 1;
}
}
}
/**
* @brief printf on oled with variadic arguments to print on the oled screen.
* @param format Format supplied including string and/or parameters.
* @return None.
*/
void oled_printf(const char *format, ...) {
char message_buffer[DEFAULT_TEXT_LENGTH];
char *p_message_buffer = NULL;
va_list args;
memset(message_buffer, '\0', DEFAULT_TEXT_LENGTH);
/* Initialize pointer */
/* Append the variable argument lists. */
va_start(args, format);
vsprintf(message_buffer, format, args);
va_end(args);
p_message_buffer = (char *)message_buffer;
while (*p_message_buffer) {
oled_putc(*p_message_buffer++);
}
}
/**
* @brief Draw a dinosaur on the oled screen.
* @param cursor_coordinate Set to this coordinate as the start pixel and draw
* the dinosaur.
* @return None.
*/
void oled_draw_dino_map(oled_cursor_coordinate_t cursor_coordinate) {
uint8_t slice;
int row, column;
oled_set_cursor(cursor_coordinate);
for (row = 0; row < DINOSAUR_BITMAP_ROWS; row += 1) {
for (column = 0; column < DINOSAUR_BITMAP_COLUMNS; column += 1) {
slice = DINOSAUR_BITMAP[row][column];
ssd1306_write_address(DATA_CONTROL, DONT_CARE, 1, &slice);
}
oled_new_line(SAME_CURSOR_POSITION);
}
}