Keyboard: LED fixes for Kinesis Stapelberg controller, and keymap changes (#3564)
* Rules for vitamins_included Added a section to disable RGB underglow for the Let's Split Vitamins Included board. * fixing ortho_4x12 configs * Using upstream/master version instead * Additions and Corrections Corrected the Kinesis/Stapelberg's .c file to allow LEDs to work Removed excess cruft from my Kinesis keymap to reflect this change Other minor tweaks and adjustments to my ortho_4x12 and 5x12 layouts * Updated readme
This commit is contained in:
parent
f8a915a2db
commit
3e8f272873
6 changed files with 49 additions and 114 deletions
|
@ -299,58 +299,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
return true;
|
||||
};
|
||||
|
||||
// getting the LEDs working...
|
||||
void led_set_user(uint8_t usb_led) {
|
||||
|
||||
DDRF |= (1<<0); // Keypad LED
|
||||
if (usb_led & (1<<USB_LED_COMPOSE)) {
|
||||
PORTF |= (1<<0);
|
||||
} else {
|
||||
PORTF &= ~(1<<0);
|
||||
}
|
||||
|
||||
DDRF |= (1<<1); // ScrLock LED
|
||||
if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
|
||||
PORTF |= (1<<1);
|
||||
} else {
|
||||
PORTF &= ~(1<<1);
|
||||
}
|
||||
|
||||
DDRF |= (1<<2); // NumLock LED
|
||||
if (usb_led & (1<<USB_LED_NUM_LOCK)) {
|
||||
PORTF |= (1<<2);
|
||||
} else {
|
||||
PORTF &= ~(1<<2);
|
||||
}
|
||||
|
||||
DDRF |= (1<<3); // CapsLock LED
|
||||
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
||||
PORTF |= (1<<3);
|
||||
} else {
|
||||
PORTF &= ~(1<<3);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Runs just one time when the keyboard initializes.
|
||||
void matrix_init_user(void) {
|
||||
|
||||
};
|
||||
|
||||
void led_set_user(uint8_t usb_led) {
|
||||
if (usb_led & (1<<USB_LED_NUM_LOCK)) {
|
||||
PORTF |= (1<<2);
|
||||
} else {
|
||||
PORTF &= ~(1<<2);
|
||||
}
|
||||
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
||||
PORTF |= (1<<3);
|
||||
} else {
|
||||
PORTF &= ~(1<<3);
|
||||
}
|
||||
if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
|
||||
PORTF |= (1<<1);
|
||||
} else {
|
||||
PORTF &= ~(1<<1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue