summaryrefslogtreecommitdiff
path: root/keyboard/Bantam44/Bantam44.h
diff options
context:
space:
mode:
authorJack Humbert2016-03-23 10:45:16 -0400
committerJack Humbert2016-03-23 10:45:16 -0400
commit95b00321420533a1ea34a046f4cb1acaac16bf46 (patch)
tree4ddbe4f05274c77eaf074173fc82d0105dac406a /keyboard/Bantam44/Bantam44.h
parent02096f78e5a08776002bdac6d1a468305ba87916 (diff)
parentd0c894cfae5b829774f7ddb6db8ac2d9b1643cc4 (diff)
Merge pull request #209 from n0bs/master
Added project folder for Bantam-44
Diffstat (limited to 'keyboard/Bantam44/Bantam44.h')
-rw-r--r--keyboard/Bantam44/Bantam44.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/keyboard/Bantam44/Bantam44.h b/keyboard/Bantam44/Bantam44.h
new file mode 100644
index 000000000..0170b871d
--- /dev/null
+++ b/keyboard/Bantam44/Bantam44.h
@@ -0,0 +1,29 @@
+#ifndef BANTAM44_H
+#define BANTAM44_H
+
+#include "matrix.h"
+#include "keymap_common.h"
+#include "backlight.h"
+#include <stddef.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, \
+ K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, \
+ K30, K31, K32, K33, K34, K35, K36, K37, K38 \
+) \
+{ \
+ { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B }, \
+ { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, KC_NO, K2A }, \
+ { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B }, \
+ { K30, K31, K32, KC_NO, K33, KC_NO, K34, KC_NO, K35, K36, K37, K38 }, \
+}
+
+void * matrix_init_user(void);
+void * matrix_scan_user(void);
+
+#endif