summaryrefslogtreecommitdiffstats
path: root/keyboards/jd40/jd40.c
diff options
context:
space:
mode:
authorMajor Koos <MajorKoos@users.noreply.github.com>2016-09-03 01:14:40 +0200
committerMajor Koos <MajorKoos@users.noreply.github.com>2016-09-03 01:14:40 +0200
commit295ef0d9649b7482c380f38dd6157879df4af91d (patch)
tree9263d0c4ee25e8bc2a63f8493f8ecd07975a00a3 /keyboards/jd40/jd40.c
parente28d151a8a1d458f3c18897c6095decc17b0c3a1 (diff)
downloadqmk_firmware-295ef0d9649b7482c380f38dd6157879df4af91d.tar.gz
qmk_firmware-295ef0d9649b7482c380f38dd6157879df4af91d.tar.xz
Add support for JD40 MKII PCB
RGB Included.
Diffstat (limited to 'keyboards/jd40/jd40.c')
-rw-r--r--keyboards/jd40/jd40.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/keyboards/jd40/jd40.c b/keyboards/jd40/jd40.c
new file mode 100644
index 000000000..fa06356d9
--- /dev/null
+++ b/keyboards/jd40/jd40.c
@@ -0,0 +1,26 @@
+#include "jd40.h"
+
+void led_set_kb(uint8_t usb_led) {
+ // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
+
+
+ // if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
+ // gh60_caps_led_on();
+ // } else {
+ // gh60_caps_led_off();
+ // }
+
+ // if (usb_led & (1<<USB_LED_NUM_LOCK)) {
+ // gh60_esc_led_on();
+ // } else {
+ // gh60_esc_led_off();
+ // }
+
+ // if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
+ // gh60_fn_led_on();
+ // } else {
+ // gh60_fn_led_off();
+ // }
+
+ led_set_user(usb_led);
+}