forked from forks/qmk_firmware
16 lines
224 B
C
16 lines
224 B
C
#include "lets_split.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();
|
|
};
|
|
|