qmk_firmware/keyboards/pk60/pk60.c
Barry Huang f698bbcd65 Capslock indicator add (#3007)
* Capslock indicator add

* edit

* name correction

* led_set_user(usb_led); delete
2018-05-20 10:28:33 -07:00

12 lines
No EOL
202 B
C

#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);
}