This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
443 B
C
Raw Normal View History

#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
uint32_t layer_state_set_rgb(uint32_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);