Browse Source

[Keymap] MF68 keymap LED pins fixed (#6946)

* fixing LED pins to accurately use the Pro Micro LEDs

* fixing trailing whitespace
pull/6965/head
Ethan Durrant 4 years ago
committed by noroadsleft
parent
commit
b5b057ad95
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c

+ 4
- 4
keyboards/40percentclub/mf68/keymaps/emdarcher/keymap.c View File

@ -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);
}
}

Loading…
Cancel
Save