diff options
-rw-r--r-- | keyboards/handwired/split89/config.h | 163 | ||||
-rw-r--r-- | keyboards/handwired/split89/info.json | 12 | ||||
-rw-r--r-- | keyboards/handwired/split89/keymaps/default/keymap.c | 42 | ||||
-rw-r--r-- | keyboards/handwired/split89/keymaps/default/readme.md | 6 | ||||
-rw-r--r-- | keyboards/handwired/split89/readme.md | 18 | ||||
-rw-r--r-- | keyboards/handwired/split89/rules.mk | 24 | ||||
-rw-r--r-- | keyboards/handwired/split89/split89.c | 17 | ||||
-rw-r--r-- | keyboards/handwired/split89/split89.h | 50 |
8 files changed, 332 insertions, 0 deletions
diff --git a/keyboards/handwired/split89/config.h b/keyboards/handwired/split89/config.h new file mode 100644 index 000000000..0151822fa --- /dev/null +++ b/keyboards/handwired/split89/config.h | |||
@@ -0,0 +1,163 @@ | |||
1 | /* Copyright 2021 jurassic73 | ||
2 | |||
3 | This program is free software: you can redistribute it and/or modify | ||
4 | it under the terms of the GNU General Public License as published by | ||
5 | the Free Software Foundation, either version 2 of the License, or | ||
6 | (at your option) any later version. | ||
7 | |||
8 | This program is distributed in the hope that it will be useful, | ||
9 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | GNU General Public License for more details. | ||
12 | |||
13 | You should have received a copy of the GNU General Public License | ||
14 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #include "config_common.h" | ||
20 | |||
21 | /* USB Device descriptor parameter */ | ||
22 | #define VENDOR_ID 0xFEED | ||
23 | #define PRODUCT_ID 0x0000 | ||
24 | #define DEVICE_VER 0x0001 | ||
25 | #define MANUFACTURER jurassic73 | ||
26 | #define PRODUCT split89 | ||
27 | |||
28 | /* | ||
29 | * Keyboard Matrix Assignments | ||
30 | * | ||
31 | * Change this to how you wired your keyboard | ||
32 | * COLS: AVR pins used for columns, left to right | ||
33 | * ROWS: AVR pins used for rows, top to bottom | ||
34 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
35 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
36 | * | ||
37 | */ | ||
38 | |||
39 | /* key matrix size | ||
40 | ROWS = total count of rows for both sides - this is broken out accordingly in split.h | ||
41 | COLS = number of cols per side which curently needs to be equal so there are blank columns for the left side in the split89.h file | ||
42 | */ | ||
43 | #define MATRIX_ROWS 12 | ||
44 | #define MATRIX_COLS 10 | ||
45 | |||
46 | /* Left side matrix */ | ||
47 | #define MATRIX_ROW_PINS { F6, F7, B1, B3, B2, B6 } | ||
48 | #define MATRIX_COL_PINS { F5, F4, B5, B4, E6, D7, C6, D4, D2, D3 } | ||
49 | /* Right side matrix */ | ||
50 | #define MATRIX_ROW_PINS_RIGHT { F6, F7, B1, B3, B2, B6 } | ||
51 | #define MATRIX_COL_PINS_RIGHT { F5, F4, B5, B4, E6, D7, C6, D4, D2, D3 } | ||
52 | |||
53 | /* this will be tied to high (VCC with a 2k to 10k resistor) on the left keyboard half and tied to low (GND using a wire jumper only) on the right keyboard half. This allows a user to plug in a USB cable to either side and function correctly with or without a TRS/TRRS cable with a single hex file. | ||
54 | #define SPLIT_HAND_PIN D1 | ||
55 | |||
56 | /* COL2ROW, ROW2COL */ | ||
57 | #define DIODE_DIRECTION COL2ROW | ||
58 | |||
59 | /* handedness */ | ||
60 | /* | ||
61 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. | ||
62 | */ | ||
63 | #define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
64 | #define USE_SERIAL | ||
65 | |||
66 | //#define LED_NUM_LOCK_PIN B0 | ||
67 | //#define LED_CAPS_LOCK_PIN B1 | ||
68 | //#define LED_SCROLL_LOCK_PIN B2 | ||
69 | //#define LED_COMPOSE_PIN B3 | ||
70 | //#define LED_KANA_PIN B4 | ||
71 | |||
72 | //#define BACKLIGHT_PIN B7 | ||
73 | //#define BACKLIGHT_LEVELS 3 | ||
74 | //#define BACKLIGHT_BREATHING | ||
75 | |||
76 | //#define RGB_DI_PIN E2 | ||
77 | //#ifdef RGB_DI_PIN | ||
78 | //# define RGBLED_NUM 16 | ||
79 | //# define RGBLIGHT_HUE_STEP 8 | ||
80 | //# define RGBLIGHT_SAT_STEP 8 | ||
81 | //# define RGBLIGHT_VAL_STEP 8 | ||
82 | //# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
83 | //# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
84 | /*== all animations enable ==*/ | ||
85 | //# define RGBLIGHT_ANIMATIONS | ||
86 | /*== or choose animations ==*/ | ||
87 | //# define RGBLIGHT_EFFECT_BREATHING | ||
88 | //# define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
89 | //# define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
90 | //# define RGBLIGHT_EFFECT_SNAKE | ||
91 | //# define RGBLIGHT_EFFECT_KNIGHT | ||
92 | //# define RGBLIGHT_EFFECT_CHRISTMAS | ||
93 | //# define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
94 | //# define RGBLIGHT_EFFECT_RGB_TEST | ||
95 | //# define RGBLIGHT_EFFECT_ALTERNATING | ||
96 | /*== customize breathing effect ==*/ | ||
97 | /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ | ||
98 | //# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 | ||
99 | /*==== use exp() and sin() ====*/ | ||
100 | //# define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 | ||
101 | //# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 | ||
102 | //#endif | ||
103 | |||
104 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
105 | #define DEBOUNCE 5 | ||
106 | |||
107 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
108 | //#define MATRIX_HAS_GHOST | ||
109 | |||
110 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
111 | #define LOCKING_SUPPORT_ENABLE | ||
112 | /* Locking resynchronize hack */ | ||
113 | #define LOCKING_RESYNC_ENABLE | ||
114 | |||
115 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
116 | * This is useful for the Windows task manager shortcut (ctrl+shift+esc). | ||
117 | */ | ||
118 | //#define GRAVE_ESC_CTRL_OVERRIDE | ||
119 | |||
120 | /* | ||
121 | * Force NKRO | ||
122 | * | ||
123 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
124 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
125 | * makefile for this to work.) | ||
126 | * | ||
127 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
128 | * until the next keyboard reset. | ||
129 | * | ||
130 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
131 | * fully operational during normal computer usage. | ||
132 | * | ||
133 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
134 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
135 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
136 | * power-up. | ||
137 | * | ||
138 | */ | ||
139 | //#define FORCE_NKRO | ||
140 | |||
141 | /* | ||
142 | * Feature disable options | ||
143 | * These options are also useful to firmware size reduction. | ||
144 | */ | ||
145 | |||
146 | /* disable debug print */ | ||
147 | //#define NO_DEBUG | ||
148 | |||
149 | /* disable print */ | ||
150 | //#define NO_PRINT | ||
151 | |||
152 | /* disable action features */ | ||
153 | //#define NO_ACTION_LAYER | ||
154 | //#define NO_ACTION_TAPPING | ||
155 | //#define NO_ACTION_ONESHOT | ||
156 | |||
157 | /* disable these deprecated features by default */ | ||
158 | #define NO_ACTION_MACRO | ||
159 | #define NO_ACTION_FUNCTION | ||
160 | |||
161 | /* Bootmagic Lite key configuration */ | ||
162 | //#define BOOTMAGIC_LITE_ROW 0 | ||
163 | //#define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/handwired/split89/info.json b/keyboards/handwired/split89/info.json new file mode 100644 index 000000000..bbdf48966 --- /dev/null +++ b/keyboards/handwired/split89/info.json | |||
@@ -0,0 +1,12 @@ | |||
1 | { | ||
2 | "keyboard_name": "split89", | ||
3 | "maintainer": "jurassic73", | ||
4 | "url": "https://github.com/jurassic73/split89", | ||
5 | "width": 21, | ||
6 | "height": 6.5, | ||
7 | "layouts": { | ||
8 | "LAYOUT": { | ||
9 | "layout": [{"label":"Esc", "x":0, "y":0}, {"label":"F1", "x":2, "y":0}, {"label":"F2", "x":3, "y":0}, {"label":"F3", "x":4, "y":0}, {"label":"F4", "x":5, "y":0}, {"label":"F5", "x":6, "y":0}, {"label":"F6", "x":10.25, "y":0}, {"label":"F7", "x":11.25, "y":0}, {"label":"F8", "x":12.25, "y":0}, {"label":"F9", "x":13.75, "y":0}, {"label":"F10", "x":14.75, "y":0}, {"label":"F11", "x":15.75, "y":0}, {"label":"F12", "x":16.75, "y":0}, {"label":"PrtSc", "x":18, "y":0}, {"label":"Scroll Lock", "x":19, "y":0}, {"label":"Pause", "x":20, "y":0}, {"label":"~", "x":0, "y":1.5}, {"label":"!", "x":1, "y":1.5}, {"label":"@", "x":2, "y":1.5}, {"label":"#", "x":3, "y":1.5}, {"label":"$", "x":4, "y":1.5}, {"label":"%", "x":5, "y":1.5}, {"label":"^", "x":6, "y":1.5}, {"label":"&", "x":9.75, "y":1.5}, {"label":"*", "x":10.75, "y":1.5}, {"label":"(", "x":11.75, "y":1.5}, {"label":")", "x":12.75, "y":1.5}, {"label":"_", "x":13.75, "y":1.5}, {"label":"+", "x":14.75, "y":1.5}, {"label":"Backspace", "x":15.75, "y":1.5, "w":2}, {"label":"Insert", "x":18, "y":1.5}, {"label":"Home", "x":19, "y":1.5}, {"label":"PgUp", "x":20, "y":1.5}, {"label":"Tab", "x":0, "y":2.5, "w":1.5}, {"label":"Q", "x":1.5, "y":2.5}, {"label":"W", "x":2.5, "y":2.5}, {"label":"E", "x":3.5, "y":2.5}, {"label":"R", "x":4.5, "y":2.5}, {"label":"T", "x":5.5, "y":2.5}, {"label":"Y", "x":9.25, "y":2.5}, {"label":"U", "x":10.25, "y":2.5}, {"label":"I", "x":11.25, "y":2.5}, {"label":"O", "x":12.25, "y":2.5}, {"label":"P", "x":13.25, "y":2.5}, {"label":"{", "x":14.25, "y":2.5}, {"label":"}", "x":15.25, "y":2.5}, {"label":"|", "x":16.25, "y":2.5, "w":1.5}, {"label":"Delete", "x":18, "y":2.5}, {"label":"End", "x":19, "y":2.5}, {"label":"PgDn", "x":20, "y":2.5}, {"label":"Caps Lock", "x":0, "y":3.5, "w":1.75}, {"label":"A", "x":1.75, "y":3.5}, {"label":"S", "x":2.75, "y":3.5}, {"label":"D", "x":3.75, "y":3.5}, {"label":"F", "x":4.75, "y":3.5}, {"label":"G", "x":5.75, "y":3.5}, {"label":"H", "x":9.5, "y":3.5}, {"label":"J", "x":10.5, "y":3.5}, {"label":"K", "x":11.5, "y":3.5}, {"label":"L", "x":12.5, "y":3.5}, {"label":":", "x":13.5, "y":3.5}, {"label":"\"", "x":14.5, "y":3.5}, {"label":"Enter", "x":15.5, "y":3.5, "w":2.25}, {"label":"Shift", "x":0, "y":4.5, "w":2.25}, {"label":"Z", "x":2.25, "y":4.5}, {"label":"X", "x":3.25, "y":4.5}, {"label":"C", "x":4.25, "y":4.5}, {"label":"V", "x":5.25, "y":4.5}, {"label":"B", "x":6.25, "y":4.5}, {"label":"N", "x":10, "y":4.5}, {"label":"M", "x":11, "y":4.5}, {"label":"<", "x":12, "y":4.5}, {"label":">", "x":13, "y":4.5}, {"label":"?", "x":14, "y":4.5}, {"label":"Shift", "x":15, "y":4.5, "w":2.75}, {"label":"\u2191", "x":19, "y":4.5}, {"label":"Ctrl", "x":0, "y":5.5, "w":1.25}, {"label":"Fn", "x":1.25, "y":5.5, "w":1.25}, {"label":"Win", "x":2.5, "y":5.5, "w":1.25}, {"label":"Alt", "x":3.75, "y":5.5, "w":1.25}, {"x":5, "y":5.5, "w":2.25}, {"x":10, "y":5.5, "w":2.75}, {"label":"Alt", "x":12.75, "y":5.5, "w":1.25}, {"label":"Win", "x":14, "y":5.5, "w":1.25}, {"label":"Menu", "x":15.25, "y":5.5, "w":1.25}, {"label":"Ctrl", "x":16.5, "y":5.5, "w":1.25}, {"label":"\u2190", "x":18, "y":5.5}, {"label":"\u2193", "x":19, "y":5.5}, {"label":"\u2192", "x":20, "y":5.5}] | ||
10 | } | ||
11 | } | ||
12 | } \ No newline at end of file | ||
diff --git a/keyboards/handwired/split89/keymaps/default/keymap.c b/keyboards/handwired/split89/keymaps/default/keymap.c new file mode 100644 index 000000000..3b60ef4f6 --- /dev/null +++ b/keyboards/handwired/split89/keymaps/default/keymap.c | |||
@@ -0,0 +1,42 @@ | |||
1 | /* Copyright 2021 jurassic73 | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | #include QMK_KEYBOARD_H | ||
17 | |||
18 | // Defines names for use in layer keycodes and the keymap | ||
19 | enum layer_names { | ||
20 | BASE, | ||
21 | AUD, | ||
22 | }; | ||
23 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
24 | /* Base */ | ||
25 | [0] = LAYOUT( | ||
26 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, | ||
27 | KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_INS, KC_HOME, KC_PGUP, | ||
28 | KC_GRV, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_END, KC_PGDN, | ||
29 | KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_Y, KC_J, KC_K, KC_L, KC_SCLN,KC_QUOT, KC_ENT, | ||
30 | KC_CAPS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_H, KC_M, KC_COMM,KC_DOT, KC_SLSH, KC_RSHIFT, KC_UP, | ||
31 | KC_LSFT, KC_LCTL,MO(1),KC_LGUI,KC_LALT,KC_SPACE, KC_N, KC_SPACE, KC_RALT,KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
32 | ), | ||
33 | /* Volume */ | ||
34 | [1] = LAYOUT( | ||
35 | KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | ||
36 | KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | ||
37 | KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, | ||
38 | KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS, | ||
39 | KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_VOLU, | ||
40 | KC_TRNS,KC_TRNS,KC_TRNS, KC_TRNS,KC_TRNS,KC_MEDIA_PLAY_PAUSE, KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS,KC_TRNS, KC_MPRV, KC_VOLD, KC_MNXT | ||
41 | ), | ||
42 | }; | ||
diff --git a/keyboards/handwired/split89/keymaps/default/readme.md b/keyboards/handwired/split89/keymaps/default/readme.md new file mode 100644 index 000000000..086d8977a --- /dev/null +++ b/keyboards/handwired/split89/keymaps/default/readme.md | |||
@@ -0,0 +1,6 @@ | |||
1 | # The default keymap for split89 | ||
2 | |||
3 | A 2nd layer is configured and activated while holding down the Aud key. | ||
4 | |||
5 |  | ||
6 | |||
diff --git a/keyboards/handwired/split89/readme.md b/keyboards/handwired/split89/readme.md new file mode 100644 index 000000000..c3caf6a7f --- /dev/null +++ b/keyboards/handwired/split89/readme.md | |||
@@ -0,0 +1,18 @@ | |||
1 | # split89 | ||
2 | |||
3 |  | ||
4 | |||
5 | An 89-key split TKL with 3d printed case and powered with Pro Micro controllers. | ||
6 | |||
7 | * Full build documented here: [https://github.com/jurassic73/split89](https://github.com/jurassic73/split89) | ||
8 | |||
9 | * Keyboard Maintainer: [jurassic73](https://github.com/jurassic73) | ||
10 | * Hardware Supported: ATmega32U4 Pro Micro | ||
11 | * Hardware Availability: see [Bill of Materials](https://github.com/jurassic73/split89#bill-of-materials). | ||
12 | |||
13 | |||
14 | Make example for this keyboard (after setting up your build environment): | ||
15 | |||
16 | make handwired/split89:default | ||
17 | |||
18 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
diff --git a/keyboards/handwired/split89/rules.mk b/keyboards/handwired/split89/rules.mk new file mode 100644 index 000000000..9b916f556 --- /dev/null +++ b/keyboards/handwired/split89/rules.mk | |||
@@ -0,0 +1,24 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega32u4 | ||
3 | |||
4 | # Bootloader selection | ||
5 | BOOTLOADER = caterina | ||
6 | |||
7 | # Build Options | ||
8 | # change yes to no to disable | ||
9 | # | ||
10 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
11 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
13 | CONSOLE_ENABLE = no # Console for debug | ||
14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
15 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
16 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
18 | NKRO_ENABLE = no # USB Nkey Rollover | ||
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
22 | AUDIO_ENABLE = no # Audio output | ||
23 | |||
24 | SPLIT_KEYBOARD = yes | ||
diff --git a/keyboards/handwired/split89/split89.c b/keyboards/handwired/split89/split89.c new file mode 100644 index 000000000..8cceee9c5 --- /dev/null +++ b/keyboards/handwired/split89/split89.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2021 jurassic73 | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #include "split89.h" | ||
diff --git a/keyboards/handwired/split89/split89.h b/keyboards/handwired/split89/split89.h new file mode 100644 index 000000000..d04f0296d --- /dev/null +++ b/keyboards/handwired/split89/split89.h | |||
@@ -0,0 +1,50 @@ | |||
1 | /* Copyright 2021 jurassic73 | ||
2 | * | ||
3 | * This program is free software: you can redistribute it and/or modify | ||
4 | * it under the terms of the GNU General Public License as published by | ||
5 | * the Free Software Foundation, either version 2 of the License, or | ||
6 | * (at your option) any later version. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #pragma once | ||
18 | |||
19 | #include "quantum.h" | ||
20 | |||
21 | /* This is a shortcut to help you visually see your layout. | ||
22 | * | ||
23 | * The first section contains all of the arguments representing the physical | ||
24 | * layout of the board and position of the keys minus blanks in the matrix. | ||
25 | * | ||
26 | * The second converts the arguments into a two-dimensional array which | ||
27 | * represents the switch matrix which includes blanks in the wired out matrix. | ||
28 | */ | ||
29 | #define LAYOUT( \ | ||
30 | k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k10, k11, k12, k13, k14, k15, \ | ||
31 | k16, k17, k18, k19, k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k30, k31, \ | ||
32 | k32, k33, k34, k35, k36, k37, k38, k39, k40, k41, k42, k43, k44, k45, k46, k47, \ | ||
33 | k48, k49, k50, k51, k52, k53, k54, k55, k56, k57, k58, k59, k60, \ | ||
34 | k61, k62, k63, k64, k65, k66, k67, k68, k69, k70, k71, k72, k73, \ | ||
35 | k74, k75, k76, k77, k78, k79, k80, k81, k82, k83, k84, k85, k86, k87, k88 \ | ||
36 | ) \ | ||
37 | { \ | ||
38 | { KC_NO, KC_NO, KC_NO, KC_NO, k00, k01, k02, k03, k04, k05 }, \ | ||
39 | { KC_NO, KC_NO, KC_NO, KC_NO, k16, k17, k18, k19, k20, k21 }, \ | ||
40 | { KC_NO, KC_NO, KC_NO, KC_NO, k32, k33, k34, k35, k36, k37 }, \ | ||
41 | { KC_NO, KC_NO, KC_NO, KC_NO, k48, k49, k50, k51, k52, k53 }, \ | ||
42 | { KC_NO, KC_NO, KC_NO, KC_NO, k61, k62, k63, k64, k65, k66, }, \ | ||
43 | { KC_NO, KC_NO, KC_NO, KC_NO, k74, k75, k76, k77, k78, k79, }, \ | ||
44 | { k06, k07, k08, k09, k10, k11, k12, k13, k14, k15 }, \ | ||
45 | { k22, k23, k24, k25, k26, k27, k28, k29, k30, k31 }, \ | ||
46 | { k38, k39, k40, k41, k42, k43, k44, k45, k46, k47 }, \ | ||
47 | { k54, k55, k56, k57, k58, k59, k60, KC_NO, KC_NO, KC_NO }, \ | ||
48 | { k67, k68, k69, k70, k71, KC_NO, k72, KC_NO, k73, KC_NO }, \ | ||
49 | { k80, k81, KC_NO, k82, k83, k84, k85, k86, k87, k88 } \ | ||
50 | } | ||