qmk-firmware/keyboards/atomic/atomic.c

13 lines
233 B
C
Raw Permalink Normal View History

2015-10-30 04:49:11 +00:00
#include "atomic.h"
void matrix_init_kb(void) {
// put your keyboard start-up code here
// runs once when the firmware starts up
2015-10-30 04:49:11 +00:00
// Turn status LED on
DDRE |= (1<<6);
PORTE |= (1<<6);
matrix_init_user();
}