summaryrefslogtreecommitdiffstats
path: root/keyboards/gherkin/gherkin.h
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-06-02 10:23:54 -0400
committerGitHub <noreply@github.com>2017-06-02 10:23:54 -0400
commitaaa67f69305c5c78e15a1090ba7058adea59ff36 (patch)
tree549ea9a650ba56f17599ac7f20d6bbe99d7fee78 /keyboards/gherkin/gherkin.h
parenteefec19ad993a17d2dd88d8cddc51dc23fe8b49b (diff)
parent7cbd16c9021fb287c826e501aebe32844d4bc32b (diff)
Merge pull request #1357 from shieldsd/gherkin
Initial commit for gherkin keyboard support. Compiles but untested.
Diffstat (limited to 'keyboards/gherkin/gherkin.h')
-rw-r--r--keyboards/gherkin/gherkin.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/keyboards/gherkin/gherkin.h b/keyboards/gherkin/gherkin.h
new file mode 100644
index 0000000000..ebb2303ac8
--- /dev/null
+++ b/keyboards/gherkin/gherkin.h
@@ -0,0 +1,18 @@
+#ifndef GHERKIN_H
+#define GHERKIN_H
+
+#include "quantum.h"
+
+#define KEYMAP( \
+ K00, K01, K02, K03, K04, K05, K10, K11, K12, K13 , \
+ K14, K15, K20, K21, K22, K23, K24, K25, K30, K31 , \
+ K32, K33, K34, K35, K40, K41, K42, K43, K44, K45 \
+) { \
+ { K00, K01, K02, K03, K04, K05 }, \
+ { K10, K11, K12, K13, K14, K15 }, \
+ { K20, K21, K22, K23, K24, K25 }, \
+ { K30, K31, K32, K33, K34, K35 }, \
+ { K40, K41, K42, K43, K44, K45 } \
+}
+
+#endif