summaryrefslogtreecommitdiffstats
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 0000000000..c0686d661a
--- /dev/null
+++ b/keyboards/ut472/ut472.c
@@ -0,0 +1,13 @@
+#include "ut472.h"
+
+void matrix_init_kb(void) {
+ // Keyboard start-up code goes here
+ // Runs once when the firmware starts up
+ matrix_init_user();
+};
+
+void matrix_scan_kb(void) {
+ // Looping keyboard code goes here
+ // This runs every cycle (a lot)
+ matrix_scan_user();
+};