aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/montsinger/rebound/rev4/rev4.h
diff options
context:
space:
mode:
authorRossman360 <53881724+Rossman360@users.noreply.github.com>2020-06-19 18:27:27 -0400
committerGitHub <noreply@github.com>2020-06-20 08:27:27 +1000
commitb43bdc1c69bb5a57976a159bfc00c4ac1c7c7f8f (patch)
treeb85b1f470b1be150ce6b81c86d4d444aad842353 /keyboards/montsinger/rebound/rev4/rev4.h
parent5a5ecd7dd9729280ef72c5133c4007ef15c3f300 (diff)
downloadfirmware-b43bdc1c69bb5a57976a159bfc00c4ac1c7c7f8f.tar.gz
firmware-b43bdc1c69bb5a57976a159bfc00c4ac1c7c7f8f.tar.bz2
firmware-b43bdc1c69bb5a57976a159bfc00c4ac1c7c7f8f.zip
rebound rev4, consolodated switch matrix from 5x12 to 7x8 (#9314)
Diffstat (limited to 'keyboards/montsinger/rebound/rev4/rev4.h')
-rw-r--r--keyboards/montsinger/rebound/rev4/rev4.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/keyboards/montsinger/rebound/rev4/rev4.h b/keyboards/montsinger/rebound/rev4/rev4.h
new file mode 100644
index 000000000..923f7d1a2
--- /dev/null
+++ b/keyboards/montsinger/rebound/rev4/rev4.h
@@ -0,0 +1,59 @@
+/* Copyright 2020 Ross Montsinger
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#pragma once
+
+#include "quantum.h"
+
+/* This is a shortcut to help you visually see your layout.
+ * The first section contains all of the arguments representing the
+ * layout of the board and position of the keys.
+ *
+ * The second converts the arguments into a two-dimensional array which
+ * represents the switch matrix.
+ */
+#define LAYOUT_ortho_4x12( \
+ K00, K70, K01, K71, K02, K72, K04, K84, K05, K75, K06, K76, \
+ K10, K60, K11, K61, K12, K62, K14, K74, K15, K65, K16, K66, \
+ K20, K50, K21, K51, K22, K52, K24, K64, K25, K55, K26, K56,\
+ K30, K40, K31, K41, K32, K42, K34, K54, K35, K45, K36, K46\
+ ) { \
+ { K00, K01, K02, K04, K05, K06, K07}, \
+ { K10, K11, K12, K14, K15, K16, K17 }, \
+ { K20, K21, K22, K24, K25, K26, K27 }, \
+ { K30, K31, K32, K34, K35, K36, K37 }, \
+ { K40, K41, K42, K44, K45, K46, K47 }, \
+ { K50, K51, K52, K54, K55, K56, K57 }, \
+ { K60, K61, K62, K64, K65, K66, K67 }, \
+ { K70, K71, K72, K74, K75, K76, K77 } \
+}
+
+#define LAYOUT_all( \
+ K00, K70, K01, K71, K02, K72, K04, K74, K05, K75, K06, K76, \
+ K10, K60, K11, K61, K12, K62, K13, K14, K64, K15, K65, K16, K66, \
+ K20, K50, K21, K51, K22, K52, K23, K24, K54, K25, K55, K26, K56,\
+ K30, K40, K31, K41, K32, K42, K33, K34, K44, K35, K45, K36, K46\
+ ) { \
+ { K00, K01, K02, KC_NO, K04, K05, K06}, \
+ { K10, K11, K12, K13, K14, K15, K16}, \
+ { K20, K21, K22, K23, K24, K25, K26}, \
+ { K30, K31, K32, K33, K34, K35, K36}, \
+ { K40, K41, K42, KC_NO, K44, K45, K46}, \
+ { K50, K51, K52, KC_NO, K54, K55, K56}, \
+ { K60, K61, K62, KC_NO, K64, K65, K66}, \
+ { K70, K71, K72, KC_NO, K74, K75, K76} \
+}
+