]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/planck/planck.c
Backlight abstraction and other changes (#439)
[qmk_firmware.git] / keyboards / planck / planck.c
1 #include "planck.h"
2
3 void matrix_init_kb(void) {
4         // Turn status LED on
5         DDRE |= (1<<6);
6         PORTE |= (1<<6);
7
8         matrix_init_user();
9 }