diff options
| author | Drashna Jaelre <drashna@live.com> | 2021-07-25 18:18:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-25 18:18:39 -0700 |
| commit | 4bb595f94b5c77e7a961ff69d2b4d9c53a9094fc (patch) | |
| tree | aef7208a8afee7f2f33c5a91b4613537c7ccb8ea /keyboards/splitkb/kyria/keymaps/gotham/oled_utils.h | |
| parent | d90897052243808863bcab3b07e16d5b6a0b08f0 (diff) | |
| download | qmk_firmware-4bb595f94b5c77e7a961ff69d2b4d9c53a9094fc.tar.gz qmk_firmware-4bb595f94b5c77e7a961ff69d2b4d9c53a9094fc.zip | |
[Keyboard] Fix up SplitKB keyboards (#13511)
Diffstat (limited to 'keyboards/splitkb/kyria/keymaps/gotham/oled_utils.h')
| -rw-r--r-- | keyboards/splitkb/kyria/keymaps/gotham/oled_utils.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/keyboards/splitkb/kyria/keymaps/gotham/oled_utils.h b/keyboards/splitkb/kyria/keymaps/gotham/oled_utils.h new file mode 100644 index 000000000..7e3bf44c8 --- /dev/null +++ b/keyboards/splitkb/kyria/keymaps/gotham/oled_utils.h | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "keycodes.h" | ||
| 4 | |||
| 5 | #ifdef ENCODER_ENABLE | ||
| 6 | # include "encoder_utils.h" | ||
| 7 | #endif | ||
| 8 | |||
| 9 | #ifdef THUMBSTICK_ENABLE | ||
| 10 | # include "thumbstick.h" | ||
| 11 | #endif | ||
| 12 | |||
| 13 | void render_kyria_logo(void); | ||
| 14 | |||
| 15 | void render_layer(void); | ||
| 16 | |||
| 17 | #ifdef ENCODER_ENABLE | ||
| 18 | void render_encoder(encoder_mode_t mode); | ||
| 19 | #endif | ||
| 20 | |||
| 21 | #ifdef THUMBSTICK_ENABLE | ||
| 22 | void render_thumbstick(thumbstick_mode_t mode); | ||
| 23 | #endif | ||
| 24 | |||
| 25 | void render_status(void); | ||
