summaryrefslogtreecommitdiffstats
path: root/keyboards/boston_meetup/boston_meetup.h
diff options
context:
space:
mode:
authorishtob <ishtob@gmail.com>2019-04-22 23:26:51 -0400
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-04-22 20:26:51 -0700
commitce8fb1eab923a8ce37022a898597048e5893b078 (patch)
treeeaf6e163d0ac625ed5fb333ce27f6aaed840e390 /keyboards/boston_meetup/boston_meetup.h
parenta2cec0594b15dc667adf7f1b0e35cb698dc1758d (diff)
Boston meetup 2019 (#5611)
* Add boston_meetup folder for community meetup macropads * Modify OLED indicators to match macropad * PR cleanup * Spelling fix Co-Authored-By: ishtob <ishtob@gmail.com> * convert custom matrix to standard matrix defines * refactor layer define with enum * Remove un-used files * remove "\" in keymap
Diffstat (limited to 'keyboards/boston_meetup/boston_meetup.h')
-rw-r--r--keyboards/boston_meetup/boston_meetup.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/keyboards/boston_meetup/boston_meetup.h b/keyboards/boston_meetup/boston_meetup.h
new file mode 100644
index 0000000000..e1d9d92060
--- /dev/null
+++ b/keyboards/boston_meetup/boston_meetup.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#ifdef KEYBOARD_boston_meetup_2019
+ #include "2019.h"
+#define LAYOUT( \
+ K00, \
+ K10, K11, K12, K13, \
+ K20, K21, K22, K23, \
+ K30, K31, K32, K33 \
+ ) \
+{ \
+ { K00, KC_NO, KC_NO, KC_NO }, \
+ { K10, K11, K12, K13 }, \
+ { K20, K21, K22, K23 }, \
+ { K30, K31, K32, K33 } \
+}
+#endif
+
+#include "quantum.h" \ No newline at end of file