aboutsummaryrefslogtreecommitdiff
path: root/keyboards/kbdfans/kbd75/rev1/rev1.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/kbdfans/kbd75/rev1/rev1.c')
-rw-r--r--keyboards/kbdfans/kbd75/rev1/rev1.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/keyboards/kbdfans/kbd75/rev1/rev1.c b/keyboards/kbdfans/kbd75/rev1/rev1.c
index 151e395e3..520a869e5 100644
--- a/keyboards/kbdfans/kbd75/rev1/rev1.c
+++ b/keyboards/kbdfans/kbd75/rev1/rev1.c
@@ -1,17 +1 @@
1#include "rev1.h" #include "rev1.h"
2
3void led_set_kb(uint8_t usb_led) {
4 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
5 if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
6 writePinLow(B2);
7 } else {
8 writePinHigh(B2);
9 }
10
11 led_set_user(usb_led);
12}
13
14void matrix_init_kb(void) {
15 setPinOutput(B2);
16 matrix_init_user();
17}