From: Ethan Durrant <5387347+emdarcher@users.noreply.github.com> Date: Mon, 7 Oct 2019 18:42:12 +0000 (-0600) Subject: [Keymap] MF68 keymap LED pins fixed (#6946) X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b5b057ad95951c6bc343705a4b9d05161e464b92;p=qmk_firmware.git [Keymap] MF68 keymap LED pins fixed (#6946) * fixing LED pins to accurately use the Pro Micro LEDs * fixing trailing whitespace --- diff --git a/keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c b/keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c index d35025f11..546f862a6 100644 --- a/keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c +++ b/keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c @@ -43,13 +43,13 @@ void led_set_user(uint8_t usb_led){ //set led pins to low setPinOutput(B0); writePinLow(B0); - setPinOutput(B5); - writePinLow(B5); + setPinOutput(D5); + writePinLow(D5); } else { //set to Hi-Z setPinInput(B0); writePinLow(B0); - setPinInput(B5); - writePinLow(B5); + setPinInput(D5); + writePinLow(D5); } }