oled_utils.h 395 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include "keycodes.h"
  3. #ifdef ENCODER_ENABLE
  4. # include "encoder_utils.h"
  5. #endif
  6. #ifdef THUMBSTICK_ENABLE
  7. # include "thumbstick.h"
  8. #endif
  9. void render_kyria_logo(void);
  10. void render_layer(void);
  11. #ifdef ENCODER_ENABLE
  12. void render_encoder(encoder_mode_t mode);
  13. #endif
  14. #ifdef THUMBSTICK_ENABLE
  15. void render_thumbstick(thumbstick_mode_t mode);
  16. #endif
  17. void render_status(void);