~ruther/qmk_firmware

ref: 032b039d0bf96e4fea0b87e0d2f6cd0fb34b7298 qmk_firmware/keyboards/splitkb/kyria/keymaps/gotham/oled_utils.h -rw-r--r-- 395 bytes
032b039d — Duncan Sutherland amend alice* community_layouts in keyboards (#21846) 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);