summaryrefslogtreecommitdiff
path: root/keyboards/handwired/atreus50/atreus50.c
blob: 7b4e6f95868f269b4736e12613832d0619540491 (plain)
1
2
3
4
5
6
7
8
9
10
#include "quantum.h"

void matrix_init_kb(void) {

    // Turn status LED on
    //DDRE |= (1<<6);
    PORTE |= (1<<6);

	matrix_init_user();
};