summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--keyboards/pk60/pk60.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/keyboards/pk60/pk60.c b/keyboards/pk60/pk60.c
index 909230def..9cf2e1578 100644
--- a/keyboards/pk60/pk60.c
+++ b/keyboards/pk60/pk60.c
@@ -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);
+
+} \ No newline at end of file