aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/cospad/cospad.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/keyboards/cospad/cospad.h b/keyboards/cospad/cospad.h
index f5ae8961f..1e3b6c427 100644
--- a/keyboards/cospad/cospad.h
+++ b/keyboards/cospad/cospad.h
@@ -125,6 +125,37 @@
125 { k50, ___, k52, ___ } \ 125 { k50, ___, k52, ___ } \
126} 126}
127 127
128/* 6x4 numpad layout with split Plus
129 * ,-------------------.
130 * | 00 | 01 | 02 | 03 |
131 * |----|----|----|----|
132 * | 10 | 11 | 12 | 13 |
133 * |----|----|----|----|
134 * | 20 | 21 | 22 | 23 |
135 * |----|----|----|----|
136 * | 30 | 31 | 32 | 33 |
137 * |----|----|----|----|
138 * | 40 | 41 | 42 | |
139 * |----|----|----| 43 |
140 * | 50 | 52 | |
141 * `-------------------'
142 */
143#define LAYOUT_numpad_6x4_split_plus( \
144 k00, k01, k02, k03, \
145 k10, k11, k12, k13, \
146 k20, k21, k22, k23, \
147 k30, k31, k32, k33, \
148 k40, k41, k42, \
149 k50, k52, k43 \
150) \
151{ \
152 { k00, k01, k02, k03 }, \
153 { k10, k11, k12, k13 }, \
154 { k20, k21, k22, k23 }, \
155 { k30, k31, k32, k33 }, \
156 { k40, k41, k42, k43 }, \
157 { k50, ___, k52, ___ } \
158}
128 159
129/* 6x4 numpad with split Plus and 0 keys 160/* 6x4 numpad with split Plus and 0 keys
130 * ,-------------------. 161 * ,-------------------.