Get rid of USB_LED_SCROLL_LOCK (#21405)
This commit is contained in:
@@ -57,24 +57,18 @@ void matrix_init_user(void) {
|
||||
writePinLow(B3);
|
||||
}
|
||||
|
||||
void led_set_user(uint8_t usb_led) {
|
||||
if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) {
|
||||
bool led_update_user(led_t led_state) {
|
||||
if (led_state.num_lock) {
|
||||
writePinHigh(B2);
|
||||
} else {
|
||||
writePinLow(B2);
|
||||
}
|
||||
if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
|
||||
if (led_state.caps_lock) {
|
||||
writePinHigh(B1);
|
||||
} else {
|
||||
writePinLow(B1);
|
||||
}
|
||||
/*
|
||||
if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
|
||||
writePinHigh(B3);
|
||||
} else {
|
||||
writePinLow(B3);
|
||||
}*/
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
//function for layer indicator LED
|
||||
|
||||
@@ -85,24 +85,18 @@ void matrix_init_user(void) {
|
||||
writePinLow(B3);
|
||||
}
|
||||
|
||||
void led_set_user(uint8_t usb_led) {
|
||||
if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) {
|
||||
bool led_update_user(led_t led_state) {
|
||||
if (led_state.num_lock) {
|
||||
writePinHigh(B2);
|
||||
} else {
|
||||
writePinLow(B2);
|
||||
}
|
||||
if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
|
||||
if (led_state.caps_lock) {
|
||||
writePinHigh(B1);
|
||||
} else {
|
||||
writePinLow(B1);
|
||||
}
|
||||
/*
|
||||
if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
|
||||
writePinHigh(B3);
|
||||
} else {
|
||||
writePinLow(B3);
|
||||
}*/
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
//function for layer indicator LED
|
||||
|
||||
Reference in New Issue
Block a user