diff options
Diffstat (limited to 'keyboards/preonic/preonic.c')
-rw-r--r-- | keyboards/preonic/preonic.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/keyboards/preonic/preonic.c b/keyboards/preonic/preonic.c new file mode 100644 index 0000000000..889c3fc8fd --- /dev/null +++ b/keyboards/preonic/preonic.c @@ -0,0 +1,10 @@ +#include "preonic.h" + +void matrix_init_kb(void) { + + // Turn status LED on + DDRE |= (1<<6); + PORTE |= (1<<6); + + matrix_init_user(); +};
\ No newline at end of file |