mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-23 11:52:59 +00:00
26 lines
395 B
C
26 lines
395 B
C
#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);
|