summaryrefslogtreecommitdiffstats
path: root/keyboards/hineybush/h87a/keymaps/wkl/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/hineybush/h87a/keymaps/wkl/keymap.c')
-rw-r--r--keyboards/hineybush/h87a/keymaps/wkl/keymap.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/keyboards/hineybush/h87a/keymaps/wkl/keymap.c b/keyboards/hineybush/h87a/keymaps/wkl/keymap.c
index e3e4108233..208cd3b347 100644
--- a/keyboards/hineybush/h87a/keymaps/wkl/keymap.c
+++ b/keyboards/hineybush/h87a/keymaps/wkl/keymap.c
@@ -46,26 +46,3 @@ void matrix_scan_user(void) {
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true;
}
-
-void led_init_ports(void) {
- setPinOutput(D5);
- setPinOutput(E6);
-}
-
-void led_set_user(uint8_t usb_led) {
-
- if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
- setPinOutput(D5);
- writePinLow(D5);
- } else {
- setPinInput(D5);
- }
-
- if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
- setPinOutput(E6);
- writePinLow(E6);
- } else {
- setPinInput(E6);
- }
-
-}