Add indicator LEDs for GHS.RAR (#10028)

* Add indicator LEDs for GHS.RAR

* Update keyboards/ghs/rar/rar.c

Co-authored-by: Joel Challis <git@zvecr.com>

Co-authored-by: Joel Challis <git@zvecr.com>
This commit is contained in:
Ramon Imbao 2020-08-14 21:56:27 +08:00 committed by GitHub
parent 517f6d2c22
commit c02666c4cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

View File

@ -15,3 +15,22 @@
*/
#include "rar.h"
void keyboard_pre_init_kb(void) {
// Set our LED pins as output.
setPinOutput(B1);
setPinOutput(B3);
keyboard_pre_init_user();
}
bool led_update_kb(led_t led_state) {
bool res = led_update_user(led_state);
if (res) {
writePin(B1, led_state.caps_lock);
writePin(B3, led_state.scroll_lock);
}
return res;
}