aboutsummaryrefslogtreecommitdiff
path: root/keyboards/kbdfans/kbd75/rev2/rev2.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/kbdfans/kbd75/rev2/rev2.c')
-rw-r--r--keyboards/kbdfans/kbd75/rev2/rev2.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/keyboards/kbdfans/kbd75/rev2/rev2.c b/keyboards/kbdfans/kbd75/rev2/rev2.c
index bf91d4009..b1af81707 100644
--- a/keyboards/kbdfans/kbd75/rev2/rev2.c
+++ b/keyboards/kbdfans/kbd75/rev2/rev2.c
@@ -1,17 +1 @@
1#include "rev2.h" #include "rev2.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}