2018-12-04 22:27:41 +01:00
|
|
|
#pragma once
|
2018-06-01 07:11:06 +02:00
|
|
|
#include "quantum.h"
|
|
|
|
|
2020-04-01 01:26:43 +02:00
|
|
|
#if defined(RGBLIGHT_TWINKLE)
|
2018-06-01 07:11:06 +02:00
|
|
|
typedef struct {
|
2019-07-23 05:22:33 +02:00
|
|
|
bool enabled;
|
|
|
|
uint8_t hue;
|
2018-06-01 07:11:06 +02:00
|
|
|
uint16_t timer;
|
2019-07-23 05:22:33 +02:00
|
|
|
uint8_t life;
|
2018-06-01 07:11:06 +02:00
|
|
|
} rgblight_fadeout;
|
2019-09-07 17:57:30 +02:00
|
|
|
#endif
|
2018-06-01 07:11:06 +02:00
|
|
|
|
2020-04-01 01:26:43 +02: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);
|
2019-09-07 17:57:30 +02:00
|
|
|
|
2020-04-01 01:26:43 +02:00
|
|
|
#if defined(RGBLIGHT_TWINKLE)
|
2019-11-20 21:37:24 +01:00
|
|
|
void scan_rgblight_fadeout(void);
|
2019-09-07 17:57:30 +02:00
|
|
|
#endif
|