You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
626 B

  1. // Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include "quantum.h"
  5. bool process_record_user_rgb_light(uint16_t keycode, keyrecord_t *record);
  6. void keyboard_post_init_rgb_light(void);
  7. void matrix_scan_rgb_light(void);
  8. layer_state_t layer_state_set_rgb_light(layer_state_t state);
  9. layer_state_t default_layer_state_set_rgb_light(layer_state_t state);
  10. void rgblight_sethsv_default_helper(uint8_t index);
  11. const char* rgblight_name(uint8_t effect);
  12. bool is_rgblight_startup_running(void);