CapsLock LED on pro micro

This commit is contained in:
Paul Warren 2020-08-07 20:58:31 +10:00
parent 19a1eec6a9
commit f4e621ff30
1 changed files with 17 additions and 0 deletions

View File

@ -62,3 +62,20 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
_______, _______, _______, _______, _______, _______, KC_MS_BTN1, KC_MS_LEFT, KC_MS_DOWN, KC_MS_RIGHT
),
};
void led_set_user(uint8_t usb_led){
//turn on the Pro Micro's on board LEDs for CAPS LOCK
if(IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)){
//set led pins to low
setPinOutput(B0);
writePinLow(B0);
setPinOutput(D5);
writePinLow(D5);
} else {
//set to Hi-Z
setPinInput(B0);
setPinInput(D5);
}
}