diff options
| author | Ethan Durrant <5387347+emdarcher@users.noreply.github.com> | 2019-10-07 12:42:12 -0600 |
|---|---|---|
| committer | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2019-10-07 11:42:12 -0700 |
| commit | b5b057ad95951c6bc343705a4b9d05161e464b92 (patch) | |
| tree | 562e8adc3f9747557dd62f4bd6079fd32115728d | |
| parent | f04e58dad6f56cdbd5d369c9e00405dcdb47c8ea (diff) | |
| download | qmk_firmware-b5b057ad95951c6bc343705a4b9d05161e464b92.tar.gz qmk_firmware-b5b057ad95951c6bc343705a4b9d05161e464b92.zip | |
[Keymap] MF68 keymap LED pins fixed (#6946)
* fixing LED pins to accurately use the Pro Micro LEDs
* fixing trailing whitespace
| -rw-r--r-- | keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c | 8 |
1 files changed, 4 insertions, 4 deletions
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){ | |||
| 43 | //set led pins to low | 43 | //set led pins to low |
| 44 | setPinOutput(B0); | 44 | setPinOutput(B0); |
| 45 | writePinLow(B0); | 45 | writePinLow(B0); |
| 46 | setPinOutput(B5); | 46 | setPinOutput(D5); |
| 47 | writePinLow(B5); | 47 | writePinLow(D5); |
| 48 | } else { | 48 | } else { |
| 49 | //set to Hi-Z | 49 | //set to Hi-Z |
| 50 | setPinInput(B0); | 50 | setPinInput(B0); |
| 51 | writePinLow(B0); | 51 | writePinLow(B0); |
| 52 | setPinInput(B5); | 52 | setPinInput(D5); |
| 53 | writePinLow(B5); | 53 | writePinLow(D5); |
| 54 | } | 54 | } |
| 55 | } | 55 | } |
