mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-14 20:44:38 +00:00
17 lines
288 B
C
17 lines
288 B
C
|
#include "chimera_ls.h"
|
||
|
|
||
|
void led_init(void) {
|
||
|
DDRD |= (1<<1);
|
||
|
PORTD |= (1<<1);
|
||
|
DDRF |= (1<<4) | (1<<5);
|
||
|
PORTF |= (1<<4) | (1<<5);
|
||
|
}
|
||
|
|
||
|
|
||
|
void matrix_init_kb(void) {
|
||
|
// put your keyboard start-up code here
|
||
|
// runs once when the firmware starts up
|
||
|
matrix_init_user();
|
||
|
led_init();
|
||
|
}
|