summaryrefslogtreecommitdiffstats
path: root/keyboards/lily58/rev1/rev1.c
blob: 4c54d7717c385f41ea72bf0fd1ce950caf0587b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "lily58.h"

void matrix_init_kb(void) {

    // // green led on
    // DDRD |= (1<<5);
    // PORTD &= ~(1<<5);

    // // orange led on
    // DDRB |= (1<<0);
    // PORTB &= ~(1<<0);

	matrix_init_user();
};