qmk_firmware/keyboards/kc60/kc60.c
Jouke Witteveen 2ee573fc5f
led_update_kb -> led_update_ports where appropriate (#18716)
Following #14452, less boilerplate is needed to customize indicator led
control.
2022-10-15 15:09:03 -04:00

9 lines
163 B
C

#include "kc60.h"
void led_update_ports(led_t led_state) {
if (led_state.caps_lock) {
setPinOutput(B2);
} else {
setPinInput(B2);
}
}