2021-12-30 04:17:34 +00:00
|
|
|
// Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-10-17 18:46:57 +00:00
|
|
|
|
2018-12-04 21:27:41 +00:00
|
|
|
#pragma once
|
2018-06-01 05:11:06 +00:00
|
|
|
#include "quantum.h"
|
|
|
|
|
2020-03-31 23:26:43 +00:00
|
|
|
bool process_record_user_rgb_light(uint16_t keycode, keyrecord_t *record);
|
|
|
|
void keyboard_post_init_rgb_light(void);
|
|
|
|
void matrix_scan_rgb_light(void);
|
|
|
|
layer_state_t layer_state_set_rgb_light(layer_state_t state);
|
|
|
|
layer_state_t default_layer_state_set_rgb_light(layer_state_t state);
|
|
|
|
void rgblight_sethsv_default_helper(uint8_t index);
|
2023-05-31 18:44:06 +00:00
|
|
|
|
|
|
|
const char* rgblight_name(uint8_t effect);
|
|
|
|
bool is_rgblight_startup_running(void);
|