aboutsummaryrefslogtreecommitdiff
path: root/keyboards/ut472/ut472.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/ut472/ut472.c')
-rw-r--r--keyboards/ut472/ut472.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/keyboards/ut472/ut472.c b/keyboards/ut472/ut472.c
new file mode 100644
index 000000000..c0686d661
--- /dev/null
+++ b/keyboards/ut472/ut472.c
@@ -0,0 +1,13 @@
1#include "ut472.h"
2
3void matrix_init_kb(void) {
4 // Keyboard start-up code goes here
5 // Runs once when the firmware starts up
6 matrix_init_user();
7};
8
9void matrix_scan_kb(void) {
10 // Looping keyboard code goes here
11 // This runs every cycle (a lot)
12 matrix_scan_user();
13};