aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/yd60mq/yd60mq.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/yd60mq/yd60mq.c')
-rw-r--r--keyboards/yd60mq/yd60mq.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/keyboards/yd60mq/yd60mq.c b/keyboards/yd60mq/yd60mq.c
new file mode 100644
index 000000000..96306d6a6
--- /dev/null
+++ b/keyboards/yd60mq/yd60mq.c
@@ -0,0 +1,13 @@
+#include "yd60mq.h"
+
+void led_set_kb(uint8_t usb_led) {
+ if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
+ setPinOutput(F4);
+ writePinLow(F4);
+ } else {
+ setPinInput(F4);
+ writePinLow(F4);
+ }
+
+ led_set_user(usb_led);
+}