aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/hardlineworks/otd_plus/otd_plus.c
blob: f7f96800d04917fe506ca557735319805ab0524d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "otd_plus.h"

void keyboard_pre_init_kb(void) {
    led_init_ports();
    keyboard_pre_init_user();
}
void led_init_ports(void) {
    setPinOutput(CAPS_LOCK_LED_PIN);
    setPinOutput(SCROLL_LOCK_LED_PIN);
}