19 lines
338 B
C
19 lines
338 B
C
#include "chimera_ortho_plus.h"
|
|
|
|
void led_init(void) {
|
|
setPinOutput(D1);
|
|
setPinOutput(F4);
|
|
setPinOutput(F5);
|
|
writePinHigh(D1);
|
|
writePinHigh(F4);
|
|
writePinHigh(F5);
|
|
}
|
|
|
|
|
|
void matrix_init_kb(void) {
|
|
// put your keyboard start-up code here
|
|
// runs once when the firmware starts up
|
|
matrix_init_user();
|
|
led_init();
|
|
}
|