rgb.h 443 B

123456789101112131415
  1. #pragma once
  2. #include "quantum.h"
  3. #include "issmirnov.h"
  4. // Welcome animation when keyboard boots
  5. void keyboard_post_init_rgb(void);
  6. // If rgb enabled, set underglow for layer
  7. uint32_t layer_state_set_rgb(uint32_t state);
  8. // Enhance matrix scan code. Note: keep this light, since it runs every 100ms
  9. void matrix_scan_rgb(void);
  10. // Light up SHIFT and GUI indicator when pressed.
  11. void set_rgb_indicators(uint8_t this_mod, uint8_t this_osm);