qmk_firmware/keyboards/kc60/kc60.c

10 lines
163 B
C
Raw Normal View History

#include "kc60.h"
void led_update_ports(led_t led_state) {
if (led_state.caps_lock) {
setPinOutput(B2);
} else {
setPinInput(B2);
}
2020-11-03 01:55:22 +01:00
}