summaryrefslogtreecommitdiffstats
path: root/keyboards/dz60/dz60.c
blob: fbe39248c79b4ac999ac9816a267999c5227372a (plain)
1
2
3
4
5
6
7
8
9
#include "dz60.h"

void led_set_kb(uint8_t usb_led) {
    if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
        DDRB |= (1 << 2); PORTB &= ~(1 << 2);
    } else {
        DDRB &= ~(1 << 2); PORTB &= ~(1 << 2);
    }
}