mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-17 17:35:30 +00:00
0da6562c4d
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
15 lines
453 B
C
15 lines
453 B
C
#pragma once
|
|
#include "quantum.h"
|
|
#include "issmirnov.h"
|
|
|
|
// Welcome animation when keyboard boots
|
|
void keyboard_post_init_rgb(void);
|
|
|
|
// If rgb enabled, set underglow for layer
|
|
layer_state_t layer_state_set_rgb(layer_state_t state);
|
|
|
|
// Enhance matrix scan code. Note: keep this light, since it runs every 100ms
|
|
void matrix_scan_rgb(void);
|
|
|
|
// Light up SHIFT and GUI indicator when pressed.
|
|
void set_rgb_indicators(uint8_t this_mod, uint8_t this_osm);
|