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

* fixing LED pins to accurately use the Pro Micro LEDs

* fixing trailing whitespace
This commit is contained in:
Ethan Durrant 2019-10-07 12:42:12 -06:00 committed by noroadsleft
parent f04e58dad6
commit b5b057ad95
1 changed files with 4 additions and 4 deletions

View File

@ -43,13 +43,13 @@ void led_set_user(uint8_t usb_led){
//set led pins to low //set led pins to low
setPinOutput(B0); setPinOutput(B0);
writePinLow(B0); writePinLow(B0);
setPinOutput(B5); setPinOutput(D5);
writePinLow(B5); writePinLow(D5);
} else { } else {
//set to Hi-Z //set to Hi-Z
setPinInput(B0); setPinInput(B0);
writePinLow(B0); writePinLow(B0);
setPinInput(B5); setPinInput(D5);
writePinLow(B5); writePinLow(D5);
} }
} }