summaryrefslogtreecommitdiff
path: root/keyboards/splitkb/kyria/keymaps/john-ezra/oled.c
blob: 732cca8f7b8bb17c798b5dcdfc2027c587fdb866 (plain)
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
/* Copyright 2021 John Ezra
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

//Sets up what the OLED screens display.

#include QMK_KEYBOARD_H

int timer = 0;
char wpm_counter[5];
int x = 31;
int currwpm = 0;
int vert_count = 0;

//=============  USER CONFIG PARAMS  ===============
float max_wpm = 150.0f; //WPM value at the top of the graph window
int graph_refresh_interval = 100; //in milliseconds
int graph_area_fill_interval = 3; //determines how dense the horizontal lines under the graph line are; lower = more dense
int vert_interval = 3; //determines frequency of vertical lines under the graph line
bool vert_line = false; //determines whether to draw vertical lines
int graph_line_thickness = 2; //determines thickness of graph line in pixels
//=============  END USER PARAMS  ===============

#ifdef OLED_ENABLE
	oled_rotation_t oled_init_user(oled_rotation_t rotation) {
		return OLED_ROTATION_180;
}

static void render_qmk_logo(void) {
	static const char PROGMEM qmk_logo[] = {
		0x00, 0x00, 0x00, 0x00, 0xc0, 0xe0, 0xf0, 0x70, 0x70, 0x7e, 0xf0, 0xf0, 0xfe, 0xf0, 0x70, 0x7e,
		0x70, 0xf0, 0xfe, 0xf0, 0xf0, 0x7e, 0x70, 0x70, 0xf0, 0xe0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x92, 0x92, 0x92, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,
		0x00, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x92, 0x92, 0x92, 0x00, 0x00,
		0xf8, 0xfc, 0x0e, 0x06, 0x06, 0x06, 0x0e, 0xfc, 0xf8, 0x00, 0xfe, 0xfe, 0x1c, 0x38, 0x70, 0xe0,
		0x70, 0x38, 0x1c, 0xfe, 0xfe, 0x00, 0xfe, 0xfe, 0xe0, 0xf0, 0xb8, 0x1c, 0x0e, 0x06, 0x00, 0x00,
		0x00, 0xfe, 0xfe, 0xc6, 0xc6, 0xc6, 0x06, 0x00, 0xe6, 0xe6, 0x00, 0xf0, 0xf0, 0x60, 0x30, 0x30,
		0x60, 0x00, 0xf0, 0xf0, 0x30, 0x30, 0xe0, 0xc0, 0x30, 0x30, 0x30, 0xe0, 0xc0, 0x00, 0xf0, 0xf0,
		0x00, 0xc0, 0xe0, 0x70, 0xe0, 0xc0, 0x00, 0xf0, 0xf0, 0x00, 0x20, 0xb0, 0x90, 0xb0, 0xf0, 0xe0,
		0x00, 0xf0, 0xf0, 0x60, 0x30, 0x30, 0x60, 0x00, 0xc0, 0xe0, 0x30, 0x30, 0x30, 0xe0, 0xc0, 0x00,
		0x00, 0x24, 0x24, 0x24, 0xff, 0xff, 0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xf1, 0xe3, 0xe3, 0x00, 0x00,
		0x00, 0xe3, 0xe3, 0xf1, 0xf0, 0xf8, 0xfc, 0xfe, 0xff, 0xff, 0xff, 0x24, 0x24, 0x24, 0x00, 0x00,
		0x03, 0x07, 0x0e, 0x0c, 0x0c, 0x1c, 0x1e, 0x17, 0x13, 0x00, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x0f, 0x0f, 0x00, 0x0f, 0x0f, 0x00, 0x01, 0x03, 0x07, 0x0e, 0x0c, 0x00, 0x00,
		0x00, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x00, 0x0f, 0x0f, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x0f, 0x0f, 0x00, 0x00, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x0f, 0x0f, 0x00, 0x01, 0x0f,
		0x0f, 0x07, 0x01, 0x00, 0x01, 0x07, 0x0f, 0x0f, 0x01, 0x00, 0x07, 0x0f, 0x0c, 0x04, 0x0f, 0x0f,
		0x00, 0x0f, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x0d, 0x09, 0x09, 0x0d, 0x04, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x07, 0x07, 0x07, 0x3f, 0x07, 0x07, 0x3f, 0x07, 0x07, 0x3f,
		0x07, 0x07, 0x3f, 0x07, 0x07, 0x3f, 0x07, 0x07, 0x07, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
		};
		oled_write_raw_P(qmk_logo, sizeof(qmk_logo));
}

// Loop to create line by line rendering for Horizontal display
// Input is oled_render_image(how many rows tall, how many pixels wide, what to render, X pos, Y pos, Frame offset)
void oled_render_image(int lines, int px, const char render_line[][px], int X_pos, int Y_pos, int frame) {
	for (uint8_t i = 0; i < lines; i++){
		oled_set_cursor(X_pos, Y_pos + i);
		oled_write_raw_P(render_line[i + frame], px);
	}
}

static void render_layers(void) {
	static const char PROGMEM layer_background_r1[1][38] = {
		{0x00, 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x02, 0x02, 0x02, 0x02, 0x82, 0x82, 0x82, 0x42,
		0x42, 0x42, 0x22, 0x22, 0x22, 0x42, 0x42, 0x42, 0x82, 0x82, 0x82, 0x02, 0x02, 0x02, 0x02, 0x02,
		0x02, 0x02, 0x02, 0x02, 0x02, 0xfe}
		};
	static const char PROGMEM layer_background_r2[1][38] = {
		{0x00, 0xff, 0x00, 0x44, 0x44, 0x44, 0xaa, 0xaa, 0xaa, 0x11, 0x11, 0x11, 0x20, 0x20, 0x20, 0x40,
		0x40, 0x40, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x11, 0x11, 0x11, 0xaa, 0xaa,
		0xaa, 0x44, 0x44, 0x44, 0x00, 0xff}
		};
	static const char PROGMEM layer_background_r3[1][38] = {
		{0x00, 0xff, 0x00, 0x44, 0x44, 0x44, 0xaa, 0xaa, 0xaa, 0x11, 0x11, 0x11, 0x22, 0x22, 0x22, 0x44,
		0x44, 0x44, 0x88, 0x88, 0x88, 0x44, 0x44, 0x44, 0x22, 0x22, 0x22, 0x11, 0x11, 0x11, 0xaa, 0xaa,
		0xaa, 0x44, 0x44, 0x44, 0x00, 0xff}
		};
	static const char PROGMEM layer_background_r4[1][38] = {
		{0x00, 0x7f, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x41, 0x41, 0x41, 0x42, 0x42, 0x42, 0x44,
		0x44, 0x44, 0x48, 0x48, 0x48, 0x44, 0x44, 0x44, 0x42, 0x42, 0x42, 0x41, 0x41, 0x41, 0x40, 0x40,
		0x40, 0x40, 0x40, 0x40, 0x40, 0x7f}
		};
	static const char PROGMEM base[1][38] = {
		{0x00, 0xff, 0x00, 0x44, 0x44, 0x44, 0xae, 0xae, 0xae, 0x1f, 0x1f, 0x1f, 0x3e, 0x3e, 0x3e, 0x7c,
		0x7c, 0x7c, 0xf8, 0xf8, 0xf8, 0x7c, 0x7c, 0x7c, 0x3e, 0x3e, 0x3e, 0x1f, 0x1f, 0x1f, 0xae, 0xae,
		0xae, 0x44, 0x44, 0x44, 0x00, 0xff}
		};
	static const char PROGMEM lower[2][38] = {
		{0x00, 0xff, 0x00, 0x44, 0x44, 0x44, 0xea, 0xea, 0xea, 0xf1, 0xf1, 0xf1, 0xe2, 0xe2, 0xe2, 0xc4,
		0xc4, 0xc4, 0x88, 0x88, 0x88, 0xc4, 0xc4, 0xc4, 0xe2, 0xe2, 0xe2, 0xf1, 0xf1, 0xf1, 0xea, 0xea,
		0xea, 0x44, 0x44, 0x44, 0x00, 0xff},
		{0x00, 0x7f, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x41, 0x41, 0x41, 0x43, 0x43, 0x43, 0x47,
		0x47, 0x47, 0x4f, 0x4f, 0x4f, 0x47, 0x47, 0x47, 0x43, 0x43, 0x43, 0x41, 0x41, 0x41, 0x40, 0x40,
		0x40, 0x40, 0x40, 0x40, 0x40, 0x7f}
		};
	static const char PROGMEM raise[][38] = {
		{0x00, 0xff, 0x00, 0x44, 0x44, 0x44, 0xea, 0xea, 0xea, 0xf1, 0xf1, 0xf1, 0xe0, 0xe0, 0xe0, 0xc0,
		0xc0, 0xc0, 0x80, 0x80, 0x80, 0xc0, 0xc0, 0xc0, 0xe0, 0xe0, 0xe0, 0xf1, 0xf1, 0xf1, 0xea, 0xea,
		0xea, 0x44, 0x44, 0x44, 0x00, 0xff},
		{0x00, 0xff, 0x00, 0x44, 0x44, 0x44, 0xaa, 0xaa, 0xaa, 0x11, 0x11, 0x11, 0x23, 0x23, 0x23, 0x47,
		0x47, 0x47, 0x8f, 0x8f, 0x8f, 0x47, 0x47, 0x47, 0x23, 0x23, 0x23, 0x11, 0x11, 0x11, 0xaa, 0xaa,
		0xaa, 0x44, 0x44, 0x44, 0x00, 0xff}
		};
	static const char PROGMEM adjust[][38] = {
		{0x00, 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x02, 0x02, 0x02, 0x02, 0x82, 0x82, 0x82, 0xc2,
		0xc2, 0xc2, 0xe2, 0xe2, 0xe2, 0xc2, 0xc2, 0xc2, 0x82, 0x82, 0x82, 0x02, 0x02, 0x02, 0x02, 0x02,
		0x02, 0x02, 0x02, 0x02, 0x02, 0xfe},
		{0x00, 0xff, 0x00, 0x44, 0x44, 0x44, 0xae, 0xae, 0xae, 0x1f, 0x1f, 0x1f, 0x3f, 0x3f, 0x3f, 0x7f,
		0x7f, 0x7f, 0xff, 0xff, 0xff, 0x7f, 0x7f, 0x7f, 0x3f, 0x3f, 0x3f, 0x1f, 0x1f, 0x1f, 0xae, 0xae,
		0xae, 0x44, 0x44, 0x44, 0x00, 0xff}
		};
	static const char PROGMEM custom[][38] = {
		{0x00, 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x02, 0x02, 0x02, 0x02, 0x82, 0x82, 0x82, 0x42,
		0xc2, 0x42, 0xa2, 0x62, 0xa2, 0x42, 0xc2, 0x42, 0x82, 0x82, 0x82, 0x02, 0x02, 0x02, 0x02, 0x02,
		0x02, 0x02, 0x02, 0x02, 0x02, 0xfe},
		{0x00, 0xff, 0x00, 0x44, 0x44, 0x44, 0xaa, 0xee, 0xaa, 0x55, 0xbb, 0x55, 0xaa, 0x75, 0xaa, 0x55,
		0xea, 0x55, 0xaa, 0xd5, 0xaa, 0x55, 0xea, 0x55, 0xaa, 0x75, 0xaa, 0x55, 0xbb, 0x55, 0xaa, 0xee,
		0xaa, 0x44, 0x44, 0x44, 0x00, 0xff},
		{0x00, 0xff, 0x00, 0x44, 0x44, 0x44, 0xaa, 0xee, 0xaa, 0x55, 0xbb, 0x55, 0xaa, 0x77, 0xaa, 0x55,
		0xee, 0x55, 0xaa, 0xdd, 0xaa, 0x55, 0xee, 0x55, 0xaa, 0x77, 0xaa, 0x55, 0xbb, 0x55, 0xaa, 0xee,
		0xaa, 0x44, 0x44, 0x44, 0x00, 0xff},
		{0x00, 0x7f, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x41, 0x41, 0x41, 0x42, 0x43, 0x42, 0x45,
		0x46, 0x45, 0x4a, 0x4d, 0x4a, 0x45, 0x46, 0x45, 0x42, 0x43, 0x42, 0x41, 0x41, 0x41, 0x40, 0x40,
		0x40, 0x40, 0x40, 0x40, 0x40, 0x7f}
		};

	switch (get_highest_layer(layer_state)) {
		case 0:
			oled_render_image(1, 38, layer_background_r1, 15, 4, 0);
			oled_render_image(1, 38, layer_background_r2, 15, 5, 0);
			oled_render_image(1, 38, base, 15, 6, 0);
			oled_render_image(1, 38, layer_background_r4, 15, 7, 0);
		break;
		case 3:
			oled_render_image(2, 38, lower, 15, 6, 0);
		break;
		case 4:
			oled_render_image(1, 38, layer_background_r1, 15, 4, 0);
			oled_render_image(2, 38, raise, 15, 5, 0);
			oled_render_image(1, 38, layer_background_r4, 15, 7, 0);
		break;
		case 5:
			oled_render_image(2, 38, adjust, 15, 4, 0);
			oled_render_image(1, 38, layer_background_r3, 15, 6, 0);
			oled_render_image(1, 38, layer_background_r4, 15, 7, 0);
		break;
		default:
			oled_render_image(4, 38, custom, 15, 4, 0);
		break;
	}
}

void render_mod_state(uint8_t modifiers) {
	static const char PROGMEM gui_off [][3]= {{0x80, 0x81, 0}, {0xa0, 0xa1, 0}};
	static const char PROGMEM gui_on [][3]= {{0xc0, 0xc1, 0}, {0xe0, 0xe1, 0}};
	static const char PROGMEM alt_off [][3]= {{0x82, 0x83, 0}, {0xa2, 0xa3, 0}};
	static const char PROGMEM alt_on [][3]= {{0xc2, 0xc3, 0}, {0xe2, 0xe3, 0}};
	static const char PROGMEM ctrl_off [][3]= {{0x84, 0x85, 0}, {0xa4, 0xa5, 0}};
	static const char PROGMEM ctrl_on [][3]= {{0xc4, 0xc5, 0}, {0xe4, 0xe5, 0}};
	static const char PROGMEM shift_off [][3]= {{0x86, 0x87, 0}, {0xa6, 0xa7, 0}};
	static const char PROGMEM shift_on [][3]= {{0xc6, 0xc7, 0}, {0xe6, 0xe7, 0}};

	// fillers between the modifier icons bleed into the icon frames

	static const char PROGMEM off_off [][2]= {{0x9e, 0}, {0xbe, 0}};
	static const char PROGMEM on_on [][2]= {{0xdf, 0}, {0xff, 0}};
	static const char PROGMEM on_off [][2]= {{0xde, 0}, {0xfe, 0}};
	static const char PROGMEM off_on [][2]= {{0x9f, 0}, {0xbf, 0}};

	// render icons

	if(modifiers & MOD_MASK_GUI) {
		oled_set_cursor(0, 4);
		oled_write_P(gui_on[0], false);
		oled_set_cursor(0, 5);
		oled_write_P(gui_on[1], false);
	} else {
		oled_set_cursor(0, 4);
		oled_write_P(gui_off[0], false);
		oled_set_cursor(0, 5);
		oled_write_P(gui_off[1], false);
	}
	if(modifiers & MOD_MASK_ALT) {
		oled_set_cursor(3, 4);
		oled_write_P(alt_on[0], false);
		oled_set_cursor(3, 5);
		oled_write_P(alt_on[1], false);
	} else {
		oled_set_cursor(3, 4);
		oled_write_P(alt_off[0], false);
		oled_set_cursor(3, 5);
		oled_write_P(alt_off[1], false);
	}
	if(modifiers & MOD_MASK_CTRL) {
		oled_set_cursor(0, 6);
		oled_write_P(ctrl_on[0], false);
		oled_set_cursor(0, 7);
		oled_write_P(ctrl_on[1], false);
	} else {
		oled_set_cursor(0, 6);
		oled_write_P(ctrl_off[0], false);
		oled_set_cursor(0, 7);
		oled_write_P(ctrl_off[1], false);
	}
	if(modifiers & MOD_MASK_SHIFT) {
		oled_set_cursor(3, 6);
		oled_write_P(shift_on[0], false);
		oled_set_cursor(3, 7);
		oled_write_P(shift_on[1], false);
	} else {
		oled_set_cursor(3, 6);
		oled_write_P(shift_off[0], false);
		oled_set_cursor(3, 7);
		oled_write_P(shift_off[1], false);
	}

	// render fillers

	if ((modifiers & MOD_MASK_GUI) && (modifiers & MOD_MASK_ALT)) {
		oled_set_cursor(2, 4);
		oled_write_P(on_on[0], false);
		oled_set_cursor(2, 5);
		oled_write_P(on_on[1], false);
	} else if(modifiers & MOD_MASK_GUI) {
		oled_set_cursor(2, 4);
		oled_write_P(on_off[0], false);
		oled_set_cursor(2, 5);
		oled_write_P(on_off[1], false);
	} else if(modifiers & MOD_MASK_ALT) {
		oled_set_cursor(2, 4);
		oled_write_P(off_on[0], false);
		oled_set_cursor(2, 5);
		oled_write_P(off_on[1], false);
	} else {
		oled_set_cursor(2, 4);
		oled_write_P(off_off[0], false);
		oled_set_cursor(2, 5);
		oled_write_P(off_off[1], false);
	}

	if ((modifiers & MOD_MASK_CTRL) && (modifiers & MOD_MASK_SHIFT)) {
		oled_set_cursor(2, 6);
		oled_write_P(on_on[0], false);
		oled_set_cursor(2, 7);
		oled_write_P(on_on[1], false);
	} else if(modifiers & MOD_MASK_CTRL) {
		oled_set_cursor(2, 6);
		oled_write_P(on_off[0], false);
		oled_set_cursor(2, 7);
		oled_write_P(on_off[1], false);
	} else if(modifiers & MOD_MASK_SHIFT) {
		oled_set_cursor(2, 6);
		oled_write_P(off_on[0], false);
		oled_set_cursor(2, 7);
		oled_write_P(off_on[1], false);
	} else {
		oled_set_cursor(2, 6);
		oled_write_P(off_off[0], false);
		oled_set_cursor(2, 7);
		oled_write_P(off_off[1], false);
	}
}

void render_bootmagic_status(void) {
	static const char PROGMEM nkro_off [][3]= {{0x88, 0x89, 0}, {0xa8, 0xa9, 0}};
	static const char PROGMEM nkro_on [][3]= {{0xc8, 0xc9, 0}, {0xe8, 0xe9, 0}};
	static const char PROGMEM mac_os_off [][6]= {{0x90, 0x91, 0x92, 0x93, 0x94, 0}, {0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0}};
	static const char PROGMEM mac_os_on [][6]= {{0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0}, {0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0}};
	static const char PROGMEM windows_off [][6]= {{0x95, 0x96, 0x97, 0x98, 0x99, 0}, {0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0}};
	static const char PROGMEM windows_on [][6]= {{0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0}, {0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0}};

	if (keymap_config.nkro) {
		oled_set_cursor(5, 4);
		oled_write_P(nkro_on[0], false);
		oled_set_cursor(5, 5);
		oled_write_P(nkro_on[1], false);
	}	else {
		oled_set_cursor(5, 4);
		oled_write_P(nkro_off[0], false);
		oled_set_cursor(5, 5);
		oled_write_P(nkro_off[1], false);
	}
	if (keymap_config.swap_lctl_lgui) {
		oled_set_cursor(10, 6);
		oled_write_P(windows_on[0], false);
		oled_set_cursor(10, 7);
		oled_write_P(windows_on[1], false);
		oled_set_cursor(10, 4);
		oled_write_P(mac_os_off[0], false);
		oled_set_cursor(10, 5);
		oled_write_P(mac_os_off[1], false);
	}	else {
		oled_set_cursor(10, 4);
		oled_write_P(mac_os_on[0], false);
		oled_set_cursor(10, 5);
		oled_write_P(mac_os_on[1], false);
		oled_set_cursor(10, 6);
		oled_write_P(windows_off[0], false);
		oled_set_cursor(10, 7);
		oled_write_P(windows_off[1], false);
	}
}

void render_lock_status(void) {
	static const char PROGMEM caps_off [][3]= {{0x8a, 0x8b, 0}, {0xaa, 0xab, 0}};
	static const char PROGMEM caps_on [][3]= {{0xca, 0xcb, 0}, {0xea, 0xeb, 0}};
	static const char PROGMEM num_off [][3]= {{0x8c, 0x8d, 0}, {0xac, 0xad, 0}};
	static const char PROGMEM num_on [][3]= {{0xcc, 0xcd, 0}, {0xec, 0xed, 0}};
	static const char PROGMEM scrl_off [][3]= {{0x8e, 0x8f, 0}, {0xae, 0xaf, 0}};
	static const char PROGMEM scrl_on [][3]= {{0xce, 0xcf, 0}, {0xee, 0xef, 0}};

	static const char PROGMEM off_off [][2]= {{0x9e, 0}, {0xbe, 0}};
	static const char PROGMEM on_on [][2]= {{0xdf, 0}, {0xff, 0}};
	static const char PROGMEM on_off [][2]= {{0xde, 0}, {0xfe, 0}};
	static const char PROGMEM off_on [][2]= {{0x9f, 0}, {0xbf, 0}};

	led_t led_usb_state = host_keyboard_led_state();
	if (led_usb_state.caps_lock) {
	oled_set_cursor(8, 4);
	oled_write_P(caps_on[0], false);
	oled_set_cursor(8, 5);
	oled_write_P(caps_on[1], false);
	}	else {
	oled_set_cursor(8, 4);
	oled_write_P(caps_off[0], false);
	oled_set_cursor(8, 5);
	oled_write_P(caps_off[1], false);
	}
	if (led_usb_state.num_lock) {
	oled_set_cursor(5, 6);
	oled_write_P(num_on[0], false);
	oled_set_cursor(5, 7);
	oled_write_P(num_on[1], false);
	}	else {
	oled_set_cursor(5, 6);
	oled_write_P(num_off[0], false);
	oled_set_cursor(5, 7);
	oled_write_P(num_off[1], false);
	}
	if (led_usb_state.scroll_lock) {
	oled_set_cursor(8, 6);
	oled_write_P(scrl_on[0], false);
	oled_set_cursor(8, 7);
	oled_write_P(scrl_on[1], false);
	}	else {
	oled_set_cursor(8, 6);
	oled_write_P(scrl_off[0], false);
	oled_set_cursor(8, 7);
	oled_write_P(scrl_off[1], false);
	}

	// render fillers

	if ((led_usb_state.caps_lock) && (keymap_config.nkro)) {
		oled_set_cursor(7, 4);
		oled_write_P(on_on[0], false);
		oled_set_cursor(7, 5);
		oled_write_P(on_on[1], false);
	} else if(keymap_config.nkro) {
		oled_set_cursor(7, 4);
		oled_write_P(on_off[0], false);
		oled_set_cursor(7, 5);
		oled_write_P(on_off[1], false);
	} else if(led_usb_state.caps_lock) {
		oled_set_cursor(7, 4);
		oled_write_P(off_on[0], false);
		oled_set_cursor(7, 5);
		oled_write_P(off_on[1], false);
	} else {
		oled_set_cursor(7, 4);
		oled_write_P(off_off[0], false);
		oled_set_cursor(7, 5);
		oled_write_P(off_off[1], false);
	}
	if ((led_usb_state.num_lock) && (led_usb_state.scroll_lock)) {
		oled_set_cursor(7, 6);
		oled_write_P(on_on[0], false);
		oled_set_cursor(7, 7);
		oled_write_P(on_on[1], false);
	} else if(led_usb_state.num_lock) {
		oled_set_cursor(7, 6);
		oled_write_P(on_off[0], false);
		oled_set_cursor(7, 7);
		oled_write_P(on_off[1], false);
	} else if(led_usb_state.scroll_lock) {
		oled_set_cursor(7, 6);
		oled_write_P(off_on[0], false);
		oled_set_cursor(7, 7);
		oled_write_P(off_on[1], false);
	} else {
		oled_set_cursor(7, 6);
		oled_write_P(off_off[0], false);
		oled_set_cursor(7, 7);
		oled_write_P(off_off[1], false);
	}
}



void render_wpm_graph(void) {
	currwpm = get_current_wpm();  //get current WPM value
	if(timer_elapsed(timer) > graph_refresh_interval){  //check if it's been long enough before refreshing graph
			x = 63 - ((currwpm / max_wpm) * 63);  // main calculation to plot graph line
			for(int i = 0; i <= graph_line_thickness - 1; i++){  //first draw actual value line
			oled_write_pixel(1, x + i, true);
			}
		if(vert_line){  //then fill in area below the value line
			if(vert_count == vert_interval){
				vert_count = 0;
				while(x <= 63){
					oled_write_pixel(1, x, true);
					x++;
					}
			} else {
				for(int i = 63; i > x; i--){
					if(i % graph_area_fill_interval == 0){
						oled_write_pixel(1, i, true);
					}
				}
			vert_count++;
			}
		} else {
			for(int i = 63; i > x; i--){
				if(i % graph_area_fill_interval == 0){
					oled_write_pixel(1, i, true);
				}
			}
		}
		oled_pan(false);  //then move the entire graph one pixel to the right
		timer = timer_read();  //refresh the timer for the next iteration
	}
	char buf[4];  //format current WPM value into a printable string
	oled_set_cursor(14, 0);
	oled_write("WPM:", false);
	buf[0] = currwpm >= 100 ? ((currwpm/100) + '0') : ' ';
	buf[1] = currwpm >= 10 ? (((currwpm/10) % 10) + '0') : ' ';
	buf[2] = (currwpm % 10) + '0';
	buf[3] = 0;
	oled_write(buf, false);
}

void render_status_main(void) {
	render_qmk_logo();
	render_layers();
	render_mod_state(get_mods());
	render_bootmagic_status();
	render_lock_status();

}

void render_status_secondary(void) {
	render_wpm_graph();
}

bool oled_task_user(void) {
	if (is_keyboard_master()) {
		render_status_main();  // Renders the current keyboard state (layer, lock, caps, scroll, etc)
	} else {
		render_status_secondary();
	}
    return false;
}

#endif