forked from mirrors/qmk_firmware
Capslock indicator add (#3007)
* Capslock indicator add * edit * name correction * led_set_user(usb_led); delete
This commit is contained in:
parent
068b80383f
commit
f698bbcd65
1 changed files with 11 additions and 0 deletions
|
@ -1 +1,12 @@
|
|||
#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);
|
||||
|
||||
}
|
Loading…
Reference in a new issue