blob: 7e3bf44c82cde864215dc2d767f26d2b65d8ef06 (
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
|
#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);
|