summaryrefslogtreecommitdiff
path: root/keyboards/chimera_ortho_plus/chimera_ortho_plus.c
blob: 6d87ed7053f7ec78aad08967bfacdff47f5476b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "chimera_ortho_plus.h"

void led_init(void) {
    setPinOutput(D1);
    setPinOutput(F4);
    setPinOutput(F5);
    writePinHigh(D1);
    writePinHigh(F4);
    writePinHigh(F5);
}


void matrix_init_kb(void) {
	// put your keyboard start-up code here
	// runs once when the firmware starts up
	matrix_init_user();
	led_init();
}