-
Notifications
You must be signed in to change notification settings - Fork 13
/
keymap.c
552 lines (521 loc) · 29.2 KB
/
keymap.c
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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
/* Copyright 2021 Andrew Rae [email protected] @andrewjrae
*
* 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/>.
*/
#include QMK_KEYBOARD_H
#include <string.h>
#include "features/casemodes.h"
#include "features/leader.h"
#ifdef USE_VIM
#include "qmk-vim/src/vim.h"
#include "qmk-vim/src/modes.h"
#endif
enum layers {
_RSTHD = 0,
_QWERTY,
_GAMING,
_NUM,
_SYM,
_NAV,
_FUN,
};
enum custom_keycodes {
CAPSWRD = SAFE_RANGE,
LEADER,
};
// clang-format off
#define MY_HOMEROW_LAYOUT( \
L00, L01, L02, L03, L04, L05, R06, R07, R08, R09, R10, R11, \
L12, L13, L14, L15, L16, L17, R18, R19, R20, R21, R22, R23, \
L24, L25, L26, L27, L28, L29, L30, L31, R32, R33, R34, R35, R36, R37, R38, R39, \
L40, L41, L42, L43, L44, R45, R46, R47, R48, R49 \
) \
LAYOUT( \
L00, L01, L02, L03, L04, L05, R06, R07, R08, R09, R10, R11, \
L12, LALT_T(L13), LGUI_T(L14), LCTL_T(L15), LSFT_T(L16), L17, \
R18, LSFT_T(R19), LCTL_T(R20), LGUI_T(R21), LALT_T(R22), R23, \
L24, L25, L26, L27, L28, L29, L30, L31, R32, R33, R34, R35, R36, R37, R38, R39, \
L40, L41, L42, L43, L44, R45, R46, R47, R48, R49 \
)
#define MY_ALPHA_LAYOUT( \
K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, \
K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, KQUOT, \
K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, \
KTHMB \
) \
LAYOUT( \
KC_TAB, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, KC_PIPE, \
MY_ESC, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, KQUOT, \
KC_SLSH, K21, K22, K23, K24, K25, LEADER, _______, _______, LEADER, K26, K27, K28, K29, K2A, KC_MINS, \
_______, KC_LGUI, MY_LALT, KTHMB, MY_ENT, MY_BSPC, MY_SPC, MY_RCTL, KC_RGUI, _______ \
)
// clang-format on
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
* Alpha Layer: RSTHD - modified for better vim usage and personal comfort
*
* ,-------------------------------------------. ,-------------------------------------------.
* | Tab | Z | C | Y | F | P | | X | M | ' " | U | Q | | \ |
* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
* | / ? | R | S | T | H | D | | L | N | A | I | O | ; : |
* |--------+------+------+------+------+------+-------------. ,-------------+------+------+------+------+------+--------|
* | CAPS | OSS | V | G | K | B |Leader| | | |Leader| W | J | , < | . > | OSS | - _ |
* `----------------------+------+------+------+------+ Enter| | Bksp +------+------+------+------+----------------------'
* | ??? | GUI | Esc | Space| SYM | | SYM | E | Tab | GUI | ??? |
* | | | | NAV | | | | NUM | FUN | | |
* `----------------------------------' `----------------------------------'
*/
#define RST_E LT(_NUM, KC_E)
#define RST_SPC LT(_NAV, KC_SPC)
#define RST_ENT LT(_SYM, KC_ENT)
#define RST_TAB LT(_FUN, KC_TAB)
[_RSTHD] = MY_HOMEROW_LAYOUT(
KC_TAB, KC_Z, KC_C, KC_Y, KC_F, KC_P, KC_X, KC_M, KC_QUOT, KC_U, KC_Q, KC_PIPE,
KC_SLSH, KC_R, KC_S, KC_T, KC_H, KC_D, KC_L, KC_N, KC_A, KC_I, KC_O, KC_SCLN,
KC_UNDS, MY_LSFT, KC_V, KC_G, KC_K, KC_B, LEADER, _______, _______, LEADER, KC_W, KC_J, KC_COMM, KC_DOT, MY_LSFT, KC_MINS,
_______, KC_LGUI, KC_ESC, RST_SPC, RST_ENT, MY_BSPC, RST_E, RST_TAB, KC_RGUI, _______
),
/*
* Alpha Layer: QWERTY
*
* ,-------------------------------------------. ,-------------------------------------------.
* | Tab | Q | W | E | R | T | | Y | U | I | O | P | | \ |
* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
* |NAV/Esc | A | S | D | F | G | | H | J | K | L | ; : | ' " |
* |--------+------+------+------+------+------+-------------. ,-------------+------+------+------+------+------+--------|
* | LShift | Z | X | C | V | B |Leader| | | |Leader| N | M | , < | . > | / ? | RShift |
* `----------------------+------+------+------+------+ Enter| | Bksp +------+------+------+------+----------------------'
* | ??? | GUI | Esc | OSM | SYM | | NUM | Space| Tab | GUI | ??? |
* | | | Alt | Shift| | | | NAV | Ctrl | | |
* `----------------------------------' `----------------------------------'
*/
[_QWERTY] = MY_ALPHA_LAYOUT(
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
MY_LSFT
),
/*
* Alpha Layer: GAMING
*
* ,-------------------------------------------. ,-------------------------------------------.
* | Esc | Z | Q | W | E | R | | Y | U | I | O | P | | \ |
* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
* | Tab |Shift | A | S | D | F | | H | J | K | L | ; : | ' " |
* |--------+------+------+------+------+------+-------------. ,-------------+------+------+------+------+------+--------|
* | LShift | CTRL | Z | X | C | V |Leader| | | |Leader| N | M | , < | . > | / ? | RShift |
* `----------------------+------+------+------+------+ Enter| | Bksp +------+------+------+------+----------------------'
* | ??? | GUI | X | SPC | SYM | | NUM | Space| Tab | GUI | ??? |
* | | | | | | | | NAV | Ctrl | | |
* `----------------------------------' `----------------------------------'
*/
[_GAMING] = LAYOUT(
KC_ESC, KC_Z, KC_Q, KC_W, KC_E, KC_R, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_PIPE,
KC_TAB, KC_LSFT, KC_A, KC_S, KC_D, KC_F, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
KC_LCTL, KC_LCTL, KC_Z, KC_X, KC_X, KC_C, LEADER, _______, _______, LEADER, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_MINS,
_______, KC_LGUI, KC_Z, KC_SPC, KC_ENT, MY_BSPC, MY_SPC, MY_RCTL, KC_RGUI, _______
),
/*
* Number Layer: Numbers and function keys
*
* ,-------------------------------------------. ,-------------------------------------------.
* | | | < | - | > | | | | | = | | | |
* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
* | / | 3 | 2 | 1 | 0 | | | 5 | 6 | 7 | 8 | 9 | |
* |--------+------+------+------+------+------+-------------. ,-------------+------+------+------+------+------+--------|
* | | | + | ^ | * | | | | | | | | | , | . | | |
* `----------------------+------+------+------+------+------| |------+------+------+------+------+----------------------'
* | | | | | | | | | | | |
* | | | | | | | | | | | |
* `----------------------------------' `----------------------------------'
*/
[_NUM] = MY_HOMEROW_LAYOUT(
_______, _______, KC_LABK, KC_MINS, KC_RABK, _______, _______, _______, KC_EQL, _______, _______, _______,
KC_SLSH, KC_3, KC_2, KC_1, KC_0, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, _______,
_______, _______, KC_PLUS, KC_CIRC, KC_ASTR, _______, _______, _______, _______, _______, _______, _______, KC_COMM, KC_DOT, _______, _______,
_______, _______, TO(0), _______, _______, _______, _______, _______, _______, _______
),
/*
* Symbols Layer: Symbols with C style coding in mind
*
* ,-------------------------------------------. ,-------------------------------------------.
* | | | ! | @ | $ | | | | ~ | = | \ | | |
* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
* | | # | < | - | > | ` | | & | { | ( | ) | | | |
* |--------+------+------+------+------+------+-------------. ,-------------+------+------+------+------+------+--------|
* | | | + | ^ | * | _ | | | | | | % | } | [ | ] | | |
* `----------------------+------+------+------+------+------| |------+------+------+------+------+----------------------'
* | | | | | | | | | | | |
* | | | | | | | | | | | |
* `----------------------------------' `----------------------------------'
*/
[_SYM] = LAYOUT(
_______, _______, KC_EXLM, KC_AT, KC_DLR, _______, _______, KC_TILD, KC_EQL, KC_BSLS, _______, _______,
_______, KC_HASH, KC_LABK, KC_MINS, KC_RABK, KC_GRV, KC_AMPR, KC_LCBR, KC_LPRN, KC_RPRN, KC_PIPE, _______,
_______, _______, KC_PLUS, KC_CIRC, KC_ASTR, KC_UNDS, _______, _______, _______, _______, KC_PERC, KC_RCBR, KC_LBRC, KC_RBRC, _______, _______,
_______, _______, TO(0), _______, _______, _______, _______, _______, _______, _______
),
/*
* Nav Layer: Navigation keys, copy paste, and media keys
*
* ,-------------------------------------------. ,-------------------------------------------.
* | | | | Copy | End | Paste| | | | | | | |
* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
* | | End | Next | Play | VolUp| Del | | Left | Down | Up | Right| Home | |
* |--------+------+------+------+------+------+-------------. ,-------------+------+------+------+------+------+--------|
* | | | Prev | Mute | VolDn| VolDn| | | | | | vi B | PgDn | PgUp | vi W | | |
* `----------------------+------+------+------+------+------| |------+------+------+------+------+----------------------'
* | | | | | | | | | | | |
* | | | | | | | | | | | |
* `----------------------------------' `----------------------------------'
*/
#define LCSPSCR LSFT(LCTL(KC_PSCR))
[_NAV] = LAYOUT(
_______, _______, KC_PSCR, MY_COPY, LCSPSCR, MY_PASTE, _______, _______, _______, VI_U, _______, _______,
_______, KC_END, KC_MNXT, KC_MPLY, KC_VOLU, KC_DEL, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_HOME, _______,
_______, _______, KC_MPRV, KC_MUTE, KC_VOLD, _______, _______, _______, _______, _______, VI_B, KC_PGDN, KC_PGUP, VI_W, _______, _______,
_______, _______, TO(0), _______, _______, _______, _______, _______, _______, _______
),
/*
* Function Layer
*
* ,-------------------------------------------. ,-------------------------------------------.
* | | | F7 | F8 | F9 | | | | | | | | |
* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
* | | F1 | F2 | F3 | F10 | F11 | | | | | | | |
* |--------+------+------+------+------+------+-------------. ,-------------+------+------+------+------+------+--------|
* | | | F4 | F5 | F6 | F12 | | | | | | | | | | | |
* `----------------------+------+------+------+------+------| |------+------+------+------+------+----------------------'
* | | | | | | | | | | | |
* | | | | | | | | | | | |
* `----------------------------------' `----------------------------------'
*/
[_FUN] = LAYOUT(
_______, _______, KC_F7, KC_F8, KC_F9, _______, _______, _______, _______, _______, _______, _______,
_______, KC_F1, KC_F2, KC_F3, KC_F10, KC_F11, _______, KC_LSFT, KC_LCTL, KC_LGUI, KC_LALT, _______,
_______, _______, KC_F4, KC_F5, KC_F6, KC_F12, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, TO(0), _______, _______, _______, _______, _______, _______, _______
),
// /*
// * Layer template
// *
// * ,-------------------------------------------. ,-------------------------------------------.
// * | | | | | | | | | | | | | |
// * |--------+------+------+------+------+------| |------+------+------+------+------+--------|
// * | | | | | | | | | | | | | |
// * |--------+------+------+------+------+------+-------------. ,-------------+------+------+------+------+------+--------|
// * | | | | | | | | | | | | | | | | | |
// * `----------------------+------+------+------+------+------| |------+------+------+------+------+----------------------'
// * | | | | | | | | | | | |
// * | | | | | | | | | | | |
// * `----------------------------------' `----------------------------------'
// */
// [_LAYERINDEX] = LAYOUT(
// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
// _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
// ),
};
/* --------------- PROCESS RECORD --------------- */
bool use_default_xcase_separator(uint16_t keycode, const keyrecord_t *record) {
switch (keycode) {
case KC_A ... KC_Z:
case KC_1 ... KC_0:
return true;
}
return false;
}
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
// Process case modes
if (!process_case_modes(keycode, record)) {
return false;
}
// Process leader key sequences
if (!process_leader(keycode, record)) {
return false;
}
#ifdef USE_VIM
// Process vim mode
if (!process_vim_mode(keycode, record)) {
return false;
}
#endif
// Regular user keycode case statement
switch (keycode) {
case CAPSWRD:
if (record->event.pressed) {
toggle_caps_word();
}
return false;
case LEADER:
if (record->event.pressed) {
start_leading();
}
return false;
case LCTL_T(KC_PLUS):
if (record->event.pressed && record->tap.count > 0) {
tap_code16(KC_PLUS);
return false;
}
return true;
case LGUI_T(KC_RABK):
if (record->event.pressed && record->tap.count > 0) {
tap_code16(KC_RABK);
return false;
}
return true;
default:
return true; // Process all other keycodes normally
}
}
/* --------------- COMBOS --------------- */
#ifdef COMBO_ENABLE
enum combo_events {
PD_COMBO,
XL_COMBO,
LEFT_LEAD,
RIGHT_LEAD,
YF_COMBO,
GK_COMBO,
JCOMM_COMBO,
THSPC_COMBO,
JA_COMBO,
};
const uint16_t PROGMEM pd_combo[] = {KC_P, KC_D, COMBO_END};
const uint16_t PROGMEM xl_combo[] = {KC_X, KC_L, COMBO_END};
const uint16_t PROGMEM left_thumb_combo[] = {RST_E, LEADER, COMBO_END};
const uint16_t PROGMEM right_thumb_combo[] = {RST_SPC, LEADER, COMBO_END};
const uint16_t PROGMEM yf_combo[] = {KC_Y, KC_F, COMBO_END};
const uint16_t PROGMEM gk_combo[] = {KC_G, KC_K, COMBO_END};
const uint16_t PROGMEM jcomma_combo[] = {KC_J, KC_COMM, COMBO_END};
const uint16_t PROGMEM thspc_combo[] = {LCTL_T(KC_T), LSFT_T(KC_H), RST_SPC, COMBO_END};
const uint16_t PROGMEM ja_combo[] = {KC_J, LCTL_T(KC_A), COMBO_END};
combo_t key_combos[COMBO_COUNT] = {
[ PD_COMBO ] = COMBO_ACTION(pd_combo),
[ XL_COMBO ] = COMBO_ACTION(xl_combo),
[ LEFT_LEAD ] = COMBO_ACTION(left_thumb_combo),
[ RIGHT_LEAD ] = COMBO_ACTION(right_thumb_combo),
[ YF_COMBO ] = COMBO_ACTION(yf_combo),
[ GK_COMBO ] = COMBO_ACTION(gk_combo),
[ JCOMM_COMBO ] = COMBO_ACTION(jcomma_combo),
[ THSPC_COMBO ] = COMBO_ACTION(thspc_combo),
[ JA_COMBO ] = COMBO_ACTION(ja_combo),
};
void process_combo_event(uint16_t combo_index, bool pressed) {
switch (combo_index) {
case LEFT_LEAD:
case RIGHT_LEAD:
if (pressed) {
start_leading();
}
break;
case YF_COMBO:
if (pressed) {
toggle_caps_word();
enable_xcase();
}
break;
case PD_COMBO:
case XL_COMBO:
if (pressed) {
enable_xcase();
}
break;
case GK_COMBO:
case JCOMM_COMBO:
if (pressed) {
toggle_caps_word();
}
break;
case THSPC_COMBO:
if (pressed) {
tap_code(KC_MINS);
tap_code16(KC_RABK);
}
break;
case JA_COMBO:
if (pressed) {
tap_code16(KC_COLON);
}
break;
}
}
# endif
/* --------------- LEADER SEQUENCES --------------- */
void *leader_layers_func(uint16_t keycode) {
switch (keycode) {
// swap to the different layers, non-persisently, cause RTSHD is life
case KC_R:
layer_move(_RSTHD);
break;
case KC_Q:
layer_move(_QWERTY);
break;
case KC_G:
layer_move(_GAMING);
break;
default:
break;
}
return NULL;
}
void *leader_toggles_func(uint16_t keycode) {
switch (keycode) {
case KC_V:
#ifdef USE_VIM
toggle_vim_mode();
#endif
break;
case KC_N:
layer_invert(_NUM);
break;
default:
break;
}
return NULL;
}
void *leader_start_func(uint16_t keycode) {
switch (keycode) {
case KC_L:
return leader_layers_func; // function to swap between my layers
case KC_T:
return leader_toggles_func; // function to swap between my layers
case KC_R:
reset_keyboard(); // here LDR r will reset the keyboard
return NULL; // signal that we're done
case KC_V:
#ifdef USE_VIM
start_oneshot_vim();
#endif
return NULL; // signal that we're done
default:
return NULL;
}
return NULL;
}
#ifdef USE_VIM
bool process_insert_mode_user(uint16_t keycode, const keyrecord_t *record) {
if (record->event.pressed && keycode == LCTL(KC_S)) {
normal_mode();
tap_code16(keycode);
return false;
}
return true;
}
bool process_visual_line_mode_user(uint16_t keycode, const keyrecord_t *record) {
if (record->event.pressed && ((keycode & 0xFF) == KC_TAB)) {
tap_code16(keycode);
return false;
}
return true;
}
#endif
#ifdef OLED_ENABLE
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
return OLED_ROTATION_180;
}
static void render_kyria_logo(void) {
static const char PROGMEM kyria_logo[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,128,128,192,224,240,112,120, 56, 60, 28, 30, 14, 14, 14, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 14, 14, 14, 30, 28, 60, 56,120,112,240,224,192,128,128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0,192,224,240,124, 62, 31, 15, 7, 3, 1,128,192,224,240,120, 56, 60, 28, 30, 14, 14, 7, 7,135,231,127, 31,255,255, 31,127,231,135, 7, 7, 14, 14, 30, 28, 60, 56,120,240,224,192,128, 1, 3, 7, 15, 31, 62,124,240,224,192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0,240,252,255, 31, 7, 1, 0, 0,192,240,252,254,255,247,243,177,176, 48, 48, 48, 48, 48, 48, 48,120,254,135, 1, 0, 0,255,255, 0, 0, 1,135,254,120, 48, 48, 48, 48, 48, 48, 48,176,177,243,247,255,254,252,240,192, 0, 0, 1, 7, 31,255,252,240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0,255,255,255, 0, 0, 0, 0, 0,254,255,255, 1, 1, 7, 30,120,225,129,131,131,134,134,140,140,152,152,177,183,254,248,224,255,255,224,248,254,183,177,152,152,140,140,134,134,131,131,129,225,120, 30, 7, 1, 1,255,255,254, 0, 0, 0, 0, 0,255,255,255, 0, 0, 0, 0,255,255, 0, 0,192,192, 48, 48, 0, 0,240,240, 0, 0, 0, 0, 0, 0,240,240, 0, 0,240,240,192,192, 48, 48, 48, 48,192,192, 0, 0, 48, 48,243,243, 0, 0, 0, 0, 0, 0, 48, 48, 48, 48, 48, 48,192,192, 0, 0, 0, 0, 0,
0, 0, 0,255,255,255, 0, 0, 0, 0, 0,127,255,255,128,128,224,120, 30,135,129,193,193, 97, 97, 49, 49, 25, 25,141,237,127, 31, 7,255,255, 7, 31,127,237,141, 25, 25, 49, 49, 97, 97,193,193,129,135, 30,120,224,128,128,255,255,127, 0, 0, 0, 0, 0,255,255,255, 0, 0, 0, 0, 63, 63, 3, 3, 12, 12, 48, 48, 0, 0, 0, 0, 51, 51, 51, 51, 51, 51, 15, 15, 0, 0, 63, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 48, 63, 63, 48, 48, 0, 0, 12, 12, 51, 51, 51, 51, 51, 51, 63, 63, 0, 0, 0, 0, 0,
0, 0, 0, 0, 15, 63,255,248,224,128, 0, 0, 3, 15, 63,127,255,239,207,141, 13, 12, 12, 12, 12, 12, 12, 12, 30,127,225,128, 0, 0,255,255, 0, 0,128,225,127, 30, 12, 12, 12, 12, 12, 12, 12, 13,141,207,239,255,127, 63, 15, 3, 0, 0,128,224,248,255, 63, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 3, 7, 15, 62,124,248,240,224,192,128, 1, 3, 7, 15, 30, 28, 60, 56,120,112,112,224,224,225,231,254,248,255,255,248,254,231,225,224,224,112,112,120, 56, 60, 28, 30, 15, 7, 3, 1,128,192,224,240,248,124, 62, 15, 7, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 7, 15, 14, 30, 28, 60, 56,120,112,112,112,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,224,112,112,112,120, 56, 60, 28, 30, 14, 15, 7, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
};
oled_write_raw_P(kyria_logo, sizeof(kyria_logo));
}
static void render_qmk_logo(void) {
static const char PROGMEM qmk_logo[] = {
0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8a,0x8b,0x8c,0x8d,0x8e,0x8f,0x90,0x91,0x92,0x93,0x94,
0xa0,0xa1,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xab,0xac,0xad,0xae,0xaf,0xb0,0xb1,0xb2,0xb3,0xb4,
0xc0,0xc1,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xcb,0xcc,0xcd,0xce,0xcf,0xd0,0xd1,0xd2,0xd3,0xd4,0};
oled_write_P(qmk_logo, false);
}
static void render_status(void) {
// QMK Logo and version information
render_qmk_logo();
oled_write_P(PSTR("Kyria - ajrae\n\n"), false);
// Host Keyboard Layer Status
oled_write_P(PSTR("Layer: "), false);
switch (get_highest_layer(layer_state)) {
case _RSTHD:
oled_write_P(PSTR("RSTHD"), false);
break;
case _QWERTY:
oled_write_P(PSTR("QWERTY"), false);
break;
case _GAMING:
oled_write_P(PSTR("GAMING"), false);
break;
case _NAV:
oled_write_P(PSTR("Navigation"), false);
break;
case _NUM:
oled_write_P(PSTR("Numbers"), false);
break;
case _SYM:
oled_write_P(PSTR("Symbols"), false);
break;
case _FUN:
oled_write_P(PSTR("Function Keys"), false);
break;
default:
oled_write_P(PSTR("Undefined"), false);
}
oled_write_P(PSTR("\n\n"), false);
#ifdef LEADER_DISPLAY_STR
static uint16_t timer = 0;
if (is_leading()) {
oled_write_ln(leader_display_str(), false);
timer = timer_read();
}
else if (vim_mode_enabled()) {
switch (get_vim_mode()) {
case NORMAL_MODE:
oled_write_P(PSTR("-- NORMAL --\n"), false);
break;
case INSERT_MODE:
oled_write_P(PSTR("-- INSERT --\n"), false);
break;
case VISUAL_MODE:
oled_write_P(PSTR("-- VISUAL --\n"), false);
break;
case VISUAL_LINE_MODE:
oled_write_P(PSTR("-- VISUAL LINE --\n"), false);
break;
default:
oled_write_P(PSTR("?????\n"), false);
break;
}
}
else if (timer_elapsed(timer) < 175){
oled_write_ln(leader_display_str(), false);
} else {
timer = timer_read() - 200; // prevent it from ever looping around
oled_write_ln("", false);
}
#endif
}
void oled_task_user(void) {
if (is_keyboard_master()) {
render_status();
} else {
render_kyria_logo();
}
}
#endif // end oled enable