aboutsummaryrefslogtreecommitdiff
path: root/keyboards/gh60/gh60.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/gh60/gh60.c')
-rw-r--r--keyboards/gh60/gh60.c50
1 files changed, 25 insertions, 25 deletions
diff --git a/keyboards/gh60/gh60.c b/keyboards/gh60/gh60.c
index 255d87de9..f5a158e12 100644
--- a/keyboards/gh60/gh60.c
+++ b/keyboards/gh60/gh60.c
@@ -1,25 +1,25 @@
1#include "gh60.h" 1#include "gh60.h"
2 2
3void led_set_kb(uint8_t usb_led) { 3void led_set_kb(uint8_t usb_led) {
4 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here 4 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
5 5
6 if (usb_led & (1<<USB_LED_CAPS_LOCK)) { 6 if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
7 gh60_caps_led_on(); 7 gh60_caps_led_on();
8 } else { 8 } else {
9 gh60_caps_led_off(); 9 gh60_caps_led_off();
10 } 10 }
11 11
12 // if (usb_led & (1<<USB_LED_NUM_LOCK)) { 12 // if (usb_led & (1<<USB_LED_NUM_LOCK)) {
13 // gh60_esc_led_on(); 13 // gh60_esc_led_on();
14 // } else { 14 // } else {
15 // gh60_esc_led_off(); 15 // gh60_esc_led_off();
16 // } 16 // }
17 17
18 // if (usb_led & (1<<USB_LED_SCROLL_LOCK)) { 18 // if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
19 // gh60_fn_led_on(); 19 // gh60_fn_led_on();
20 // } else { 20 // } else {
21 // gh60_fn_led_off(); 21 // gh60_fn_led_off();
22 // } 22 // }
23 23
24 led_set_user(usb_led); 24 led_set_user(usb_led);
25} 25}