summaryrefslogtreecommitdiffstats
path: root/keyboards/pk60/pk60.c
blob: 9cf2e1578d1ca02da3a26d5149c621404d3757e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
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);

}