hineybush/h88: update h88 LED stuff (#10101)

* update h88.c

* Update keyboards/hineybush/h88/h88.c
master
Josh Hinnebusch 2020-09-01 12:05:03 -04:00 committed by GitHub
parent 0bec817479
commit 744940bbd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 20 deletions

View File

@ -18,7 +18,8 @@
void matrix_init_kb(void) { void matrix_init_kb(void) {
// put your keyboard start-up code here // put your keyboard start-up code here
// runs once when the firmware starts up // runs once when the firmware starts up
setPinOutput(D5);
setPinOutput(E6);
matrix_init_user(); matrix_init_user();
} }
@ -42,26 +43,19 @@ void led_set_kb(uint8_t usb_led) {
led_set_user(usb_led); led_set_user(usb_led);
} }
void led_init_ports(void) { bool led_update_kb(led_t led_state) {
setPinOutput(D5); if(led_update_user(led_state)) {
setPinOutput(E6); writePin(D5, !led_state.caps_lock);
writePin(E6, !led_state.scroll_lock);
}
return true;
} }
void led_set_user(uint8_t usb_led) { void eeconfig_init_kb(void) { // EEPROM is getting reset!
rgblight_enable(); // Enable RGB by default
if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) { rgblight_sethsv(0, 255, 128); // Set default HSV - red hue, full saturation, medium brightness
setPinOutput(D5); rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL + 2); // set to RGB_RAINBOW_SWIRL by default
writePinLow(D5);
} else {
setPinInput(D5);
}
if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
setPinOutput(E6);
writePinLow(E6);
} else {
setPinInput(E6);
}
eeconfig_update_kb(0);
eeconfig_init_user();
} }