summaryrefslogtreecommitdiffstats
path: root/keyboards/m10a/m10a.h
diff options
context:
space:
mode:
authorNick Choi <nikchi@users.noreply.github.com>2017-05-23 19:08:44 +0200
committerGitHub <noreply@github.com>2017-05-23 19:08:44 +0200
commitec86fac6eee6e5148bc491497aadf2abed09a8ea (patch)
tree11da5a0a76838c5517ef7ecf50340432d7b7c8ef /keyboards/m10a/m10a.h
parenteb660ef2184565c6bb69f1f67f7af8918d15688f (diff)
parentc7e9e643fa411266dfb9b08831967d29426b29bc (diff)
downloadqmk_firmware-ec86fac6eee6e5148bc491497aadf2abed09a8ea.tar.gz
qmk_firmware-ec86fac6eee6e5148bc491497aadf2abed09a8ea.tar.xz
Merge pull request #1 from qmk/master
pull new to mine
Diffstat (limited to 'keyboards/m10a/m10a.h')
-rw-r--r--keyboards/m10a/m10a.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/keyboards/m10a/m10a.h b/keyboards/m10a/m10a.h
new file mode 100644
index 000000000..6ec334fb3
--- /dev/null
+++ b/keyboards/m10a/m10a.h
@@ -0,0 +1,19 @@
+#ifndef M10A_H
+#define M10A_H
+
+#include "quantum.h"
+
+#define M10A( \
+ k00, k01, k02, \
+ k10, k11, k12, \
+ k20, k21, k22, \
+ k30, k31, k32 \
+) \
+{ \
+ { k00, k01, k02 }, \
+ { k10, k11, k12 }, \
+ { k20, k21, k22 }, \
+ { k30, k31, k32 } \
+}
+
+#endif