~ruther/qmk_firmware

ref: c667da019078442ff0fd9a4ca33ad09b627672f2 qmk_firmware/keyboards/splitkb/kyria/keymaps/gotham/oled_utils.h -rw-r--r-- 395 bytes
c667da01 — David Hoelscher QP getters correction (#22357) 2 years ago
                                                                                
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
#pragma once

#include "keycodes.h"

#ifdef ENCODER_ENABLE
#    include "encoder_utils.h"
#endif

#ifdef THUMBSTICK_ENABLE
#    include "thumbstick.h"
#endif

void render_kyria_logo(void);

void render_layer(void);

#ifdef ENCODER_ENABLE
void render_encoder(encoder_mode_t mode);
#endif

#ifdef THUMBSTICK_ENABLE
void render_thumbstick(thumbstick_mode_t mode);
#endif

void render_status(void);