2020-01-03 23:12:53 +01:00
|
|
|
#include "csc027.h"
|
|
|
|
#include "usb_led.h"
|
|
|
|
#include "led.h"
|
|
|
|
|
|
|
|
#if defined(RGBLIGHT_ENABLE)
|
|
|
|
# include "custom_rgb.h"
|
|
|
|
#elif defined(AUDIO_ENABLE)
|
|
|
|
# include "custom_audio.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIO_ENABLE) || defined(RGBLIGHT_ENABLE)
|
|
|
|
|
2020-06-15 12:48:21 +02:00
|
|
|
bool led_update_user(led_t new_led) {
|
|
|
|
static led_t old_led = {
|
2020-01-03 23:12:53 +01:00
|
|
|
.num_lock = false,
|
|
|
|
.caps_lock = false,
|
|
|
|
.scroll_lock = false
|
|
|
|
};
|
|
|
|
|
2020-06-15 12:48:21 +02:00
|
|
|
if(old_led.caps_lock != new_led.caps_lock) {
|
|
|
|
new_led.caps_lock ? on_usb_led_on() : on_usb_led_off();
|
|
|
|
} else if(old_led.num_lock != new_led.num_lock) {
|
|
|
|
new_led.num_lock ? on_usb_led_on() : on_usb_led_off();
|
|
|
|
} else if(old_led.scroll_lock != new_led.scroll_lock) {
|
|
|
|
new_led.scroll_lock ? on_usb_led_on() : on_usb_led_off();
|
2020-01-03 23:12:53 +01:00
|
|
|
}
|
2020-06-15 12:48:21 +02:00
|
|
|
old_led = new_led;
|
2020-01-03 23:12:53 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|