summaryrefslogtreecommitdiff
path: root/keyboards/handwired/gamenum/gamenum.h
diff options
context:
space:
mode:
authorDamien <Dbroqua@users.noreply.github.com>2016-10-07 22:27:36 +0200
committerGitHub <noreply@github.com>2016-10-07 22:27:36 +0200
commit811257a0c8a20a7bf5481f745a083f7e7f01342c (patch)
tree6d79874c5542148c27907511ecdb2e9e5e12b24b /keyboards/handwired/gamenum/gamenum.h
parent6a090c5df7e52df084de975f070841af1138b5a4 (diff)
parenta9df99b81c787862dc3fa11bd854fe39e704da81 (diff)
Merge pull request #8 from jackhumbert/master
Merge from jackhumbert
Diffstat (limited to 'keyboards/handwired/gamenum/gamenum.h')
-rw-r--r--keyboards/handwired/gamenum/gamenum.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/keyboards/handwired/gamenum/gamenum.h b/keyboards/handwired/gamenum/gamenum.h
new file mode 100644
index 0000000000..ea633b9bfa
--- /dev/null
+++ b/keyboards/handwired/gamenum/gamenum.h
@@ -0,0 +1,21 @@
+#ifndef GAMENUM_H
+#define GAMENUM_H
+
+#include "quantum.h"
+
+#define KEYMAP( \
+ k00, k01, k02, k03, \
+ k10, k11, k12, k13, \
+ k20, k21, k22, \
+ k30, k31, k32, \
+ k41, k42, k43 \
+) \
+{ \
+ { k00, k01, k02, k03}, \
+ { k10, k11, k12, k13}, \
+ { k20, k21, k22, KC_NO}, \
+ { k30, k31, k32, KC_NO}, \
+ { KC_NO, k41, k42, k43} \
+}
+
+#endif