summaryrefslogtreecommitdiffstats
path: root/keyboards/deltasplit75/v2/v2.c
blob: a7ee1fa8a51e5a507bad04209d90c71c1794cd62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "deltasplit75.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();
};