You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qmk_firmware/keyboards/pk60/pk60.c

12 lines
202 B

#include "pk60.h"
void led_set_kb(uint8_t usb_led) {
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
PORTF |= (1<<4);
} else {
PORTF &= ~(1<<4);
}
led_set_user(usb_led);
}