mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 16:37:58 +06:00
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();
|
|
};
|
|
|