summaryrefslogtreecommitdiff
path: root/hhkb/matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'hhkb/matrix.h')
-rw-r--r--hhkb/matrix.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/hhkb/matrix.h b/hhkb/matrix.h
new file mode 100644
index 000000000..5efffea5f
--- /dev/null
+++ b/hhkb/matrix.h
@@ -0,0 +1,15 @@
+#ifndef MATRIX_H
+#define MATRIX_H 1
+
+#include <stdbool.h>
+#include "matrix_skel.h"
+
+
+#define MATRIX_ROWS 8
+#define MATRIX_COLS 8
+
+
+extern uint8_t *matrix;
+extern uint8_t *matrix_prev;
+
+#endif