2023-03-28 21:54:34 -07:00
|
|
|
#include "quantum.h"
|
2017-06-08 13:24:37 -07:00
|
|
|
|
|
|
|
void matrix_init_kb(void) {
|
|
|
|
// put your keyboard start-up code here
|
|
|
|
// runs once when the firmware starts up
|
|
|
|
// Turn status LED on
|
|
|
|
DDRD |= (1<<6);
|
|
|
|
PORTD |= (1<<6);
|
|
|
|
|
|
|
|
matrix_init_user();
|
|
|
|
}
|