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