aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/idb/idb_60/idb_60.c
blob: 18ce690431d4705edfd99c8e3639d2c35a18e329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "idb_60.h"

void keyboard_pre_init_kb(void) {
    setPinOutput(C4);
    setPinOutput(C5);
}

void led_set_kb(uint8_t usb_led) {

    if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
		_idb_60_caps_led_on();
		} else {
		_idb_60_caps_led_off();
    }

	led_set_user(usb_led);
}