mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-12-02 05:37:00 +06:00
24 lines
407 B
C
24 lines
407 B
C
/**
|
|
* rev2.c
|
|
*/
|
|
|
|
#include "quantum.h"
|
|
|
|
void matrix_init_kb(void) {
|
|
setPinOutput(C6);
|
|
setPinOutput(B2);
|
|
setPinOutput(B1);
|
|
|
|
matrix_init_user();
|
|
}
|
|
|
|
bool led_update_kb(led_t led_state) {
|
|
bool res = led_update_user(led_state);
|
|
if (res) {
|
|
writePin(B1, !led_state.num_lock);
|
|
writePin(C6, !led_state.caps_lock);
|
|
writePin(B2, !led_state.scroll_lock);
|
|
}
|
|
return res;
|
|
}
|