summaryrefslogtreecommitdiff
path: root/keyboards/minivan44/minivan44.h
diff options
context:
space:
mode:
authorIan Sterling <xyverz@gmail.com>2016-08-12 23:45:40 -0700
committerIan Sterling <xyverz@gmail.com>2016-08-12 23:45:40 -0700
commitc07fe96581f02d0ea14c50cda7565aa52406c122 (patch)
treeb4a115e7b7630c72ff59c16f0a48d23085511d0b /keyboards/minivan44/minivan44.h
parent3bae791372e2090b30647d431c70c233caaef26f (diff)
Adding the MiniVan44 aka TheVan 44 by u/evangs to the repo.
Initial Commit.
Diffstat (limited to 'keyboards/minivan44/minivan44.h')
-rw-r--r--keyboards/minivan44/minivan44.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/minivan44/minivan44.h b/keyboards/minivan44/minivan44.h
new file mode 100644
index 0000000000..c6119c2e16
--- /dev/null
+++ b/keyboards/minivan44/minivan44.h
@@ -0,0 +1,22 @@
+#ifndef MINIVAN44_H
+#define MINIVAN44_H
+
+#include "quantum.h"
+
+// This a shortcut to help you visually see your layout.
+// The following is an example using the Planck MIT layout
+// The first section contains all of the arguements
+// The second converts the arguments into a two-dimensional array
+#define KEYMAP( \
+ K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, \
+ K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, \
+ K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, \
+ K30, K31, K32, K33, K37, K38, K39, K3B \
+) \
+{ \
+ { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B }, \
+ { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B }, \
+ { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B }, \
+ { K30, K31, K32, K33, KC_NO, KC_NO, KC_NO, K37, K38, K39, K3A, K3B } \
+
+#endif