diff --git a/keyboard/staryu/backlight.c b/keyboard/staryu/backlight.c index d1f3e71e..578ebc0b 100644 --- a/keyboard/staryu/backlight.c +++ b/keyboard/staryu/backlight.c @@ -20,7 +20,7 @@ along with this program. If not, see . #include #include "backlight.h" #include "softpwm_led.h" -#include "keymap_common.h" +#include "action.h" #ifdef BACKLIGHT_ENABLE @@ -125,4 +125,18 @@ void softpwm_led_off(uint8_t index) } #endif +void action_keyevent(keyevent_t event) +{ + if (backlight_mode == 7) { + if (event.pressed) { + softpwm_led_decrease_all(32); + } + } + if (backlight_mode == 8) { + if (event.pressed) { + softpwm_led_increase_all(32); + } + } +} + #endif