summaryrefslogtreecommitdiffstats
path: root/keyboards/qck75/v1/v1.c
blob: 5e512b292c7aa6a4727618f794a591da04401404 (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
// Copyright 2023 Andrian (@PoringH)
// SPDX-License-Identifier: GPL-2.0-or-later

#include QMK_KEYBOARD_H

enum { MAIN = 0, SECOND = 1, THIRD = 2, FOURTH = 3 };

#ifdef ENCODER_ENABLE
bool encoder_update_kb(uint8_t index, bool clockwise) {
    if (!encoder_update_user(index, clockwise)) {
        return false;
    }
    switch (get_highest_layer(layer_state)) {
        default:
            if (clockwise) {
                tap_code(KC_VOLU);
            } else {
                tap_code(KC_VOLD);
            }
        case SECOND:
            if (clockwise) {
                tap_code(KC_MNXT);
            } else {
                tap_code(KC_MPRV);
            }
            break;
        case THIRD:
            if (clockwise) {
                tap_code(KC_MS_R);
            } else {
                tap_code(KC_MS_L);
            }
            break;
        case FOURTH:
            if (clockwise) {
                tap_code(KC_MS_U);
            } else {
                tap_code(KC_MS_D);
            }
            break;
    }
    return true;
}
#endif

#ifdef OLED_ENABLE
#    define KB_STAT_SIZE 18
#    define WIN_STAT_SIZE 12
#    define MIN_WALK_SPEED 10
#    define MIN_RUN_SPEED 40
#    define ANIM_FRAME_DURATION 200
#    define ANIM_SIZE 96

uint32_t anim_timer    = 0;
uint8_t  current_frame = 0;
int      current_wpm   = 0;
led_t    led_usb_state;

bool isguiDisabled = false;
bool isSneaking    = false;
bool isJumping     = false;
bool showedJump    = true;

#    ifdef OLED_ENABLE

static void render_animation(int ANIM_X, int ANIM_Y) {
    // sit animation 32 X 22
    static const char PROGMEM sit[2][3][ANIM_SIZE] = {{
                                                          {
                                                              0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x1c, 0x02, 0x05, 0x02, 0x24, 0x04, 0x04, 0x02, 0xa9, 0x1e, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                          },
                                                          {
                                                              0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x10, 0x08, 0x68, 0x10, 0x08, 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x06, 0x82, 0x7c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                          },
                                                          {
                                                              0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x0c, 0x10, 0x10, 0x20, 0x20, 0x20, 0x28, 0x3e, 0x1c, 0x20, 0x20, 0x3e, 0x0f, 0x11, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                          },
                                                      },

                                                      {{
                                                           0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x1c, 0x02, 0x05, 0x02, 0x24, 0x04, 0x04, 0x02, 0xa9, 0x1e, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                       },
                                                       {0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x90, 0x08, 0x18, 0x60, 0x10, 0x08, 0x04, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0e, 0x82, 0x7c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
                                                       {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x0c, 0x10, 0x10, 0x20, 0x20, 0x20, 0x28, 0x3e, 0x1c, 0x20, 0x20, 0x3e, 0x0f, 0x11, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}

                                                      }};

    // walk animation 32 X 22
    static const char PROGMEM walk[2][3][ANIM_SIZE] = {{{
                                                            0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x90, 0x90, 0x90, 0xa0, 0xc0, 0x80, 0x80, 0x80, 0x70, 0x08, 0x14, 0x08, 0x90, 0x10, 0x10, 0x08, 0xa4, 0x78, 0x80, 0x00, 0x00, 0x00, 0x00,
                                                        },
                                                        {
                                                            0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x08, 0xfc, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x18, 0xea, 0x10, 0x0f, 0x00, 0x00, 0x00, 0x00,
                                                        },
                                                        {
                                                            0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x1c, 0x20, 0x20, 0x3c, 0x0f, 0x11, 0x1f, 0x03, 0x06, 0x18, 0x20, 0x20, 0x3c, 0x0c, 0x12, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                        }},

                                                       {{
                                                            0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x20, 0x20, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x10, 0x28, 0x10, 0x20, 0x20, 0x20, 0x10, 0x48, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                        },
                                                        {
                                                            0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x20, 0xf8, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x10, 0x30, 0xd5, 0x20, 0x1f, 0x00, 0x00, 0x00, 0x00,
                                                        },
                                                        {
                                                            0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x20, 0x30, 0x0c, 0x02, 0x05, 0x09, 0x12, 0x1e, 0x02, 0x1c, 0x14, 0x08, 0x10, 0x20, 0x2c, 0x32, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                        }

                                                       }};

    // run animation 32 X 22
    static const char PROGMEM run[2][3][ANIM_SIZE] = {{{
                                                           0x00, 0x00, 0x00, 0x00, 0xe0, 0x10, 0x08, 0x08, 0xc8, 0xb0, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x3c, 0x14, 0x04, 0x08, 0x90, 0x18, 0x04, 0x08, 0xb0, 0x40, 0x80, 0x00, 0x00,
                                                       },
                                                       {
                                                           0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0xc4, 0xa4, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc8, 0x58, 0x28, 0x2a, 0x10, 0x0f, 0x00, 0x00,
                                                       },
                                                       {
                                                           0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x09, 0x04, 0x04, 0x04, 0x04, 0x02, 0x03, 0x02, 0x01, 0x01, 0x02, 0x02, 0x04, 0x08, 0x10, 0x26, 0x2b, 0x32, 0x04, 0x05, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                       }},

                                                      {{
                                                           0x00, 0x00, 0x00, 0xe0, 0x10, 0x10, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x78, 0x28, 0x08, 0x10, 0x20, 0x30, 0x08, 0x10, 0x20, 0x40, 0x80, 0x00, 0x00, 0x00,
                                                       },
                                                       {
                                                           0x00, 0x00, 0x00, 0x03, 0x04, 0x08, 0x10, 0x11, 0xf9, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x10, 0xb0, 0x50, 0x55, 0x20, 0x1f, 0x00, 0x00,
                                                       },
                                                       {
                                                           0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x0c, 0x10, 0x20, 0x28, 0x37, 0x02, 0x1e, 0x20, 0x20, 0x18, 0x0c, 0x14, 0x1e, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                       }

                                                      }};

    // bark animation 32 X 22
    static const char PROGMEM bark[2][3][ANIM_SIZE] = {{
                                                           {
                                                               0x00, 0xc0, 0x20, 0x10, 0xd0, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x40, 0x3c, 0x14, 0x04, 0x08, 0x90, 0x18, 0x04, 0x08, 0xb0, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                           },
                                                           {
                                                               0x00, 0x03, 0x04, 0x08, 0x10, 0x11, 0xf9, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc8, 0x48, 0x28, 0x2a, 0x10, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                           },
                                                           {
                                                               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x0c, 0x10, 0x20, 0x28, 0x37, 0x02, 0x02, 0x04, 0x08, 0x10, 0x26, 0x2b, 0x32, 0x04, 0x05, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                           },
                                                       },

                                                       {{
                                                            0x00, 0xe0, 0x10, 0x10, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x40, 0x40, 0x2c, 0x14, 0x04, 0x08, 0x90, 0x18, 0x04, 0x08, 0xb0, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00,
                                                        },
                                                        {
                                                            0x00, 0x03, 0x04, 0x08, 0x10, 0x11, 0xf9, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc0, 0x48, 0x28, 0x2a, 0x10, 0x0f, 0x20, 0x4a, 0x09, 0x10,
                                                        },
                                                        {
                                                            0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x0c, 0x10, 0x20, 0x28, 0x37, 0x02, 0x02, 0x04, 0x08, 0x10, 0x26, 0x2b, 0x32, 0x04, 0x05, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                        }

                                                       }};

    // sneak animation 32 X 22
    static const char PROGMEM sneak[2][3][ANIM_SIZE] = {{
                                                            {
                                                                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x40, 0x40, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x40, 0x40, 0x80, 0x00, 0x80, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                            },
                                                            {
                                                                0x00, 0x00, 0x00, 0x00, 0x1e, 0x21, 0xf0, 0x04, 0x02, 0x02, 0x02, 0x02, 0x03, 0x02, 0x02, 0x04, 0x04, 0x04, 0x03, 0x01, 0x00, 0x00, 0x09, 0x01, 0x80, 0x80, 0xab, 0x04, 0xf8, 0x00, 0x00, 0x00,
                                                            },
                                                            {
                                                                0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x1c, 0x20, 0x20, 0x3c, 0x0f, 0x11, 0x1f, 0x02, 0x06, 0x18, 0x20, 0x20, 0x38, 0x08, 0x10, 0x18, 0x04, 0x04, 0x02, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00,
                                                            },
                                                        },

                                                        {{
                                                             0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x40, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xa0, 0x20, 0x40, 0x80, 0xc0, 0x20, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                         },
                                                         {
                                                             0x00, 0x00, 0x00, 0x00, 0x3e, 0x41, 0xf0, 0x04, 0x02, 0x02, 0x02, 0x03, 0x02, 0x02, 0x02, 0x04, 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x40, 0x40, 0x55, 0x82, 0x7c, 0x00, 0x00, 0x00,
                                                         },
                                                         {
                                                             0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x20, 0x30, 0x0c, 0x02, 0x05, 0x09, 0x12, 0x1e, 0x04, 0x18, 0x10, 0x08, 0x10, 0x20, 0x28, 0x34, 0x06, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
                                                         }

                                                        }};

    void animate_luna(void) {
        int anim_x;
        int anim_y;

        if (isJumping || !showedJump) {
            oled_set_cursor(ANIM_X, ANIM_Y + 2);
            oled_write("     ", false);
            anim_x     = ANIM_X;
            anim_y     = ANIM_Y - 1;
            showedJump = true;
        } else {
            oled_set_cursor(ANIM_X, ANIM_Y - 1);
            oled_write("     ", false);

            anim_x = ANIM_X;
            anim_y = ANIM_Y;
        }

        if (led_usb_state.caps_lock) {
            oled_set_cursor(anim_x, anim_y);
            oled_write_raw_P(bark[current_frame][0], ANIM_SIZE);
            oled_set_cursor(anim_x, anim_y + 1);
            oled_write_raw_P(bark[current_frame][1], ANIM_SIZE);
            oled_set_cursor(anim_x, anim_y + 2);
            oled_write_raw_P(bark[current_frame][2], ANIM_SIZE);
        } else if (get_mods() & MOD_MASK_CS) {
            oled_set_cursor(anim_x, anim_y);
            oled_write_raw_P(sneak[current_frame][0], ANIM_SIZE);
            oled_set_cursor(anim_x, anim_y + 1);
            oled_write_raw_P(sneak[current_frame][1], ANIM_SIZE);
            oled_set_cursor(anim_x, anim_y + 2);
            oled_write_raw_P(sneak[current_frame][2], ANIM_SIZE);
        } else if (current_wpm <= MIN_WALK_SPEED) {
            oled_set_cursor(anim_x, anim_y);
            oled_write_raw_P(sit[current_frame][0], ANIM_SIZE);
            oled_set_cursor(anim_x, anim_y + 1);
            oled_write_raw_P(sit[current_frame][1], ANIM_SIZE);
            oled_set_cursor(anim_x, anim_y + 2);
            oled_write_raw_P(sit[current_frame][2], ANIM_SIZE);
        } else if (current_wpm <= MIN_RUN_SPEED) {
            oled_set_cursor(anim_x, anim_y);
            oled_write_raw_P(walk[current_frame][0], ANIM_SIZE);
            oled_set_cursor(anim_x, anim_y + 1);
            oled_write_raw_P(walk[current_frame][1], ANIM_SIZE);
            oled_set_cursor(anim_x, anim_y + 2);
            oled_write_raw_P(walk[current_frame][2], ANIM_SIZE);
        } else {
            oled_set_cursor(anim_x, anim_y);
            oled_write_raw_P(run[current_frame][0], ANIM_SIZE);
            oled_set_cursor(anim_x, anim_y + 1);
            oled_write_raw_P(run[current_frame][1], ANIM_SIZE);
            oled_set_cursor(anim_x, anim_y + 2);
            oled_write_raw_P(run[current_frame][2], ANIM_SIZE);
        }
    }

#        if OLED_TIMEOUT > 0

    if (last_input_activity_elapsed() > OLED_TIMEOUT && last_led_activity_elapsed() > OLED_TIMEOUT) {
        oled_off();
        return;
    } else {
        oled_on();
    }
#        endif

    if (timer_elapsed32(anim_timer) > ANIM_FRAME_DURATION) {
        anim_timer    = timer_read32();
        current_frame = (current_frame + 1) % 2;
        animate_luna();
    }
};

static void render_caps(int CAP_X, int CAP_Y) {
    if (led_usb_state.caps_lock == true) {
        static const char PROGMEM caps[KB_STAT_SIZE] = {
            0x00, 0xfe, 0xff, 0x07, 0xfb, 0xfb, 0x3b, 0xdb, 0xeb, 0xdb, 0x3b, 0xfb, 0xfb, 0x07, 0xff, 0xfe, 0x00, 0x00,
        };
        static const char PROGMEM caps2[KB_STAT_SIZE] = {0x00, 0x3f, 0x7f, 0x70, 0x6f, 0x6f, 0x68, 0x6e, 0x6e, 0x6e, 0x68, 0x6f, 0x6f, 0x70, 0x7f, 0x3f, 0x00, 0x00};
        oled_set_cursor(CAP_X, CAP_Y);
        oled_write_raw_P(caps, KB_STAT_SIZE);
        oled_set_cursor(CAP_X, CAP_Y + 1);
        oled_write_raw_P(caps2, KB_STAT_SIZE);
    } else {
        static const char PROGMEM caps[KB_STAT_SIZE] = {
            0x00, 0x00, 0x00, 0xf8, 0x04, 0x04, 0xc4, 0x24, 0x14, 0x24, 0xc4, 0x04, 0x04, 0xf8, 0x00, 0x00, 0x00, 0x00,
        };
        static const char PROGMEM caps2[KB_STAT_SIZE] = {0x00, 0x00, 0x00, 0x0f, 0x10, 0x10, 0x17, 0x11, 0x11, 0x11, 0x17, 0x10, 0x10, 0x0f, 0x00, 0x00, 0x00, 0x00};
        oled_set_cursor(CAP_X, CAP_Y);
        oled_write_raw_P(caps, KB_STAT_SIZE);
        oled_set_cursor(CAP_X, CAP_Y + 1);
        oled_write_raw_P(caps2, KB_STAT_SIZE);
    }
}

static void render_num(int NUM_X, int NUM_Y) {
    if (led_usb_state.num_lock == true) {
        static const char PROGMEM num[KB_STAT_SIZE] = {
            0x00, 0xfe, 0xff, 0x07, 0xfb, 0xfb, 0xfb, 0xdb, 0x0b, 0xfb, 0xfb, 0xfb, 0xfb, 0x07, 0xff, 0xfe, 0x00, 0x00,
        };
        static const char PROGMEM num2[KB_STAT_SIZE] = {0x00, 0x3f, 0x7f, 0x70, 0x6f, 0x6f, 0x6f, 0x6b, 0x68, 0x6b, 0x6f, 0x6f, 0x6f, 0x70, 0x7f, 0x3f, 0x00, 0x00};
        oled_set_cursor(NUM_X, NUM_Y);
        oled_write_raw_P(num, KB_STAT_SIZE);
        oled_set_cursor(NUM_X, NUM_Y + 1);
        oled_write_raw_P(num2, KB_STAT_SIZE);
    } else {
        static const char PROGMEM num[KB_STAT_SIZE] = {
            0x00, 0x00, 0x00, 0xf8, 0x04, 0x04, 0x04, 0x24, 0xf4, 0x04, 0x04, 0x04, 0x04, 0xf8, 0x00, 0x00, 0x00, 0x00,
        };
        static const char PROGMEM num2[KB_STAT_SIZE] = {0x00, 0x00, 0x00, 0x0f, 0x10, 0x10, 0x10, 0x14, 0x17, 0x14, 0x10, 0x10, 0x10, 0x0f, 0x00, 0x00, 0x00, 0x00};
        oled_set_cursor(NUM_X, NUM_Y);
        oled_write_raw_P(num, KB_STAT_SIZE);
        oled_set_cursor(NUM_X, NUM_Y + 1);
        oled_write_raw_P(num2, KB_STAT_SIZE);
    }
}

static void render_scroll(int SCROLL_X, int SCROLL_Y) {
    if (led_usb_state.scroll_lock == true) {
        static const char PROGMEM scroll[KB_STAT_SIZE] = {
            0x00, 0xfe, 0xff, 0x07, 0xfb, 0xfb, 0x7b, 0xfb, 0x0b, 0xfb, 0x7b, 0xfb, 0xfb, 0x07, 0xff, 0xfe, 0x00, 0x00,
        };
        static const char PROGMEM scroll2[KB_STAT_SIZE] = {0x00, 0x3f, 0x7f, 0x70, 0x6f, 0x6b, 0x6b, 0x6a, 0x68, 0x6a, 0x6b, 0x6b, 0x6f, 0x70, 0x7f, 0x3f, 0x00, 0x00};
        oled_set_cursor(SCROLL_X, SCROLL_Y);
        oled_write_raw_P(scroll, KB_STAT_SIZE);
        oled_set_cursor(SCROLL_X, SCROLL_Y + 1);
        oled_write_raw_P(scroll2, KB_STAT_SIZE);
    } else {
        static const char PROGMEM scroll[KB_STAT_SIZE] = {
            0x00, 0x00, 0x00, 0xf8, 0x04, 0x04, 0x84, 0x04, 0xf4, 0x04, 0x84, 0x04, 0x04, 0xf8, 0x00, 0x00, 0x00, 0x00,
        };
        static const char PROGMEM scroll2[KB_STAT_SIZE] = {0x00, 0x00, 0x00, 0x0f, 0x10, 0x14, 0x14, 0x15, 0x17, 0x15, 0x14, 0x14, 0x10, 0x0f, 0x00, 0x00, 0x00, 0x00};
        oled_set_cursor(SCROLL_X, SCROLL_Y);
        oled_write_raw_P(scroll, KB_STAT_SIZE);
        oled_set_cursor(SCROLL_X, SCROLL_Y + 1);
        oled_write_raw_P(scroll2, KB_STAT_SIZE);
    }
}

static void render_winstat(int WIN_X, int WIN_Y) {
    static const char PROGMEM winlogo[WIN_STAT_SIZE] = {
        0x7C, 0x7C, 0x7C, 0x7E, 0x00, 0x7E, 0x7E, 0x7E, 0x7F, 0x7F, 0x7F, 0x00,
    };
    static const char PROGMEM winlogo2[WIN_STAT_SIZE] = {
        0x1F, 0x1F, 0x1F, 0x3F, 0x00, 0x3F, 0x3F, 0x3F, 0x7F, 0x7F, 0x7F, 0x00,
    };

    oled_set_cursor(WIN_X, WIN_Y);
    oled_write_raw_P(winlogo, WIN_STAT_SIZE);
    oled_set_cursor(WIN_X, WIN_Y + 1);
    oled_write_raw_P(winlogo2, WIN_STAT_SIZE);

    oled_set_cursor(WIN_X + 2, WIN_Y);
    oled_write("WINKEY", false);

    oled_set_cursor(WIN_X + 2, WIN_Y + 1);
    if (keymap_config.no_gui) {
        oled_write("DISABLED", false);
    } else {
        oled_write("ENABLED  ", false);
    }
}

bool oled_task_kb(void) {
    if (!oled_task_user()) {
        return false;
    }
    current_wpm   = get_current_wpm();
    led_usb_state = host_keyboard_led_state();
    render_animation(13, 3);
    oled_set_cursor(0, 0);
    // Host Keyboard Layer Status
    switch (get_highest_layer(layer_state)) {
        case MAIN:
            oled_write("MAIN  ", false);
            break;
        case SECOND:
            oled_write("SECOND", false);
            break;
        case THIRD:
            oled_write("THIRD ", false);
            break;
        default:
            oled_write("FOURTH", false);
    }
    render_caps(0, 2);
    render_num(3, 2);
    render_scroll(6, 2);
    render_winstat(1, 5);

    oled_set_cursor(12, 0);
    oled_write("WPM: ", false);
    oled_write(get_u8_str(current_wpm, '0'), false);
    return false;
}

#    endif

bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
    switch (keycode) {
        case KC_SPC:
            if (record->event.pressed) {
                isJumping  = true;
                showedJump = false;
            } else {
                isJumping = false;
            }
            break;
    }
    return process_record_user(keycode, record);
}
#endif