summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/maartenwut/maartenwut.c
blob: 6a7c5cee6291747e2fce411530e39af0548f2841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "maartenwut.h"

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

	matrix_init_user();
}
void matrix_scan_kb(void) {
	// put your looping keyboard code here
	// runs every cycle (a lot)
	matrix_scan_user();
};