12 lines
214 B
C
12 lines
214 B
C
|
#include "obelus.h"
|
||
|
|
||
|
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();
|
||
|
}
|