diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2020-08-19 18:49:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-19 18:49:31 -0700 |
commit | ec7abc2ce287eb10ca54cb8631eb132426f27adc (patch) | |
tree | d51367d2f80ae37586e22704cb85db24c32611d5 | |
parent | 0b894ca99c4b4556f386afb7badd6f04b715d086 (diff) | |
download | qmk_firmware-ec7abc2ce287eb10ca54cb8631eb132426f27adc.tar.gz qmk_firmware-ec7abc2ce287eb10ca54cb8631eb132426f27adc.zip |
[Keyboard] HolySwitch Co Southpaw75 (#10011)
* add in drewguy's code with a few additions to the keymap
* add VID and PID
* fixup defualt keymap
* add VIA keymap
* thanks to bigchimpo for reminding me to put an Fn key in the default keymap
* make sure we have the right gitugithub url for drew
* remove description as per PR checklist
* append readme with more information
* Update keyboards/holyswitch/southpaw75/config.h
* Update keyboards/holyswitch/southpaw75/info.json
* Update keyboards/holyswitch/southpaw75/southpaw75.h
* Update keyboards/holyswitch/southpaw75/info.json
-rw-r--r-- | keyboards/holyswitch/southpaw75/config.h | 48 | ||||
-rw-r--r-- | keyboards/holyswitch/southpaw75/info.json | 91 | ||||
-rw-r--r-- | keyboards/holyswitch/southpaw75/keymaps/default/keymap.c | 35 | ||||
-rw-r--r-- | keyboards/holyswitch/southpaw75/keymaps/default/readme.md | 1 | ||||
-rw-r--r-- | keyboards/holyswitch/southpaw75/keymaps/via/keymap.c | 51 | ||||
-rw-r--r-- | keyboards/holyswitch/southpaw75/keymaps/via/rules.mk | 2 | ||||
-rw-r--r-- | keyboards/holyswitch/southpaw75/readme.md | 23 | ||||
-rw-r--r-- | keyboards/holyswitch/southpaw75/rules.mk | 22 | ||||
-rw-r--r-- | keyboards/holyswitch/southpaw75/southpaw75.c | 17 | ||||
-rw-r--r-- | keyboards/holyswitch/southpaw75/southpaw75.h | 36 |
10 files changed, 326 insertions, 0 deletions
diff --git a/keyboards/holyswitch/southpaw75/config.h b/keyboards/holyswitch/southpaw75/config.h new file mode 100644 index 000000000..c9971625a --- /dev/null +++ b/keyboards/holyswitch/southpaw75/config.h | |||
@@ -0,0 +1,48 @@ | |||
1 | /* | ||
2 | Copyright 2020 drewguy | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include "config_common.h" | ||
21 | |||
22 | /* USB Device descriptor parameter */ | ||
23 | #define VENDOR_ID 0x484F // "HO" short for Holy Switch | ||
24 | #define PRODUCT_ID 0x5350 // "SP" short for Southpaw | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER drewguy | ||
27 | #define PRODUCT southpaw default | ||
28 | |||
29 | /* key matrix size */ | ||
30 | #define MATRIX_ROWS 9 | ||
31 | #define MATRIX_COLS 9 | ||
32 | |||
33 | /* | ||
34 | * Keyboard Matrix Assignments | ||
35 | * | ||
36 | * Change this to how you wired your keyboard | ||
37 | * COLS: AVR pins used for columns, left to right | ||
38 | * ROWS: AVR pins used for rows, top to bottom | ||
39 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
40 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
41 | * | ||
42 | */ | ||
43 | |||
44 | // 0 1 2 3 4 5 6 7 8 | ||
45 | #define MATRIX_ROW_PINS { B2, F0, C6, D4, D3, F1, D2, B5, D5 } | ||
46 | #define MATRIX_COL_PINS { B6, F7, F6, F5, F4, D0, D1, D7, B4 } | ||
47 | |||
48 | #define DIODE_DIRECTION COL2ROW | ||
diff --git a/keyboards/holyswitch/southpaw75/info.json b/keyboards/holyswitch/southpaw75/info.json new file mode 100644 index 000000000..3386f3be6 --- /dev/null +++ b/keyboards/holyswitch/southpaw75/info.json | |||
@@ -0,0 +1,91 @@ | |||
1 | { | ||
2 | "keyboard_name": "Southpaw75", | ||
3 | "url": "", | ||
4 | "maintainer": "qmk", | ||
5 | "width": 19, | ||
6 | "height": 5, | ||
7 | "layouts": { | ||
8 | "LAYOUT": { | ||
9 | "layout": [ | ||
10 | {"label":"K00 (B2,B6)", "x":0, "y":0}, | ||
11 | {"label":"K01 (B2,F7)", "x":1, "y":0}, | ||
12 | {"label":"K02 (B2,F6)", "x":2, "y":0}, | ||
13 | {"label":"K03 (B2,F5)", "x":3, "y":0}, | ||
14 | {"label":"K04 (B2,F4)", "x":4, "y":0}, | ||
15 | {"label":"K05 (B2,D0)", "x":5, "y":0}, | ||
16 | {"label":"K06 (B2,D1)", "x":6, "y":0}, | ||
17 | {"label":"K07 (B2,D7)", "x":7, "y":0}, | ||
18 | {"label":"K08 (B2,B4)", "x":8, "y":0}, | ||
19 | {"label":"K10 (F0,B6)", "x":9, "y":0}, | ||
20 | {"label":"K11 (F0,F7)", "x":10, "y":0}, | ||
21 | {"label":"K12 (F0,F6)", "x":11, "y":0}, | ||
22 | {"label":"K13 (F0,F5)", "x":12, "y":0}, | ||
23 | {"label":"K14 (F0,F4)", "x":13, "y":0}, | ||
24 | {"label":"K15 (F0,D0)", "x":14, "y":0}, | ||
25 | {"label":"K16 (F0,D1)", "x":15, "y":0}, | ||
26 | {"label":"K17 (F0,D7)", "x":16, "y":0}, | ||
27 | {"label":"K18 (F0,B4)", "x":17, "y":0, "w":2}, | ||
28 | {"label":"K20 (C6,B6)", "x":0, "y":1}, | ||
29 | {"label":"K21 (C6,F7)", "x":1, "y":1}, | ||
30 | {"label":"K22 (C6,F6)", "x":2, "y":1}, | ||
31 | {"label":"K23 (C6,F5)", "x":3, "y":1, "h":2}, | ||
32 | {"label":"K24 (C6,F4)", "x":4, "y":1, "w":1.5}, | ||
33 | {"label":"K25 (C6,D0)", "x":5.5, "y":1}, | ||
34 | {"label":"K26 (C6,D1)", "x":6.5, "y":1}, | ||
35 | {"label":"K27 (C6,D7)", "x":7.5, "y":1}, | ||
36 | {"label":"K28 (C6,B4)", "x":8.5, "y":1}, | ||
37 | {"label":"K30 (D4,B6)", "x":9.5, "y":1}, | ||
38 | {"label":"K31 (D4,F7)", "x":10.5, "y":1}, | ||
39 | {"label":"K32 (D4,F6)", "x":11.5, "y":1}, | ||
40 | {"label":"K33 (D4,F5)", "x":12.5, "y":1}, | ||
41 | {"label":"K34 (D4,F4)", "x":13.5, "y":1}, | ||
42 | {"label":"K35 (D4,D0)", "x":14.5, "y":1}, | ||
43 | {"label":"K36 (D4,D1)", "x":15.5, "y":1}, | ||
44 | {"label":"K37 (D4,D7)", "x":16.5, "y":1}, | ||
45 | {"label":"K38 (D4,B4)", "x":17.5, "y":1, "w":1.5}, | ||
46 | {"label":"K40 (D3,B6)", "x":0, "y":2}, | ||
47 | {"label":"K41 (D3,F7)", "x":1, "y":2}, | ||
48 | {"label":"K42 (D3,F6)", "x":2, "y":2}, | ||
49 | {"label":"K43 (D3,F5)", "x":4, "y":2, "w":1.75}, | ||
50 | {"label":"K44 (D3,F4)", "x":5.75, "y":2}, | ||
51 | {"label":"K45 (D3,D0)", "x":6.75, "y":2}, | ||
52 | {"label":"K46 (D3,D1)", "x":7.75, "y":2}, | ||
53 | {"label":"K47 (D3,D7)", "x":8.75, "y":2}, | ||
54 | {"label":"K48 (D3,B4)", "x":9.75, "y":2}, | ||
55 | {"label":"K50 (F1,B6)", "x":10.75, "y":2}, | ||
56 | {"label":"K51 (F1,F7)", "x":11.75, "y":2}, | ||
57 | {"label":"K52 (F1,F6)", "x":12.75, "y":2}, | ||
58 | {"label":"K53 (F1,F5)", "x":13.75, "y":2}, | ||
59 | {"label":"K54 (F1,F4)", "x":14.75, "y":2}, | ||
60 | {"label":"K55 (F1,D0)", "x":15.75, "y":2}, | ||
61 | {"label":"K56 (F1,D1)", "x":16.75, "y":2, "w":2.25}, | ||
62 | {"label":"K57 (F1,D7)", "x":0, "y":3}, | ||
63 | {"label":"K58 (F1,B4)", "x":1, "y":3}, | ||
64 | {"label":"K60 (D2,B6)", "x":2, "y":3}, | ||
65 | {"label":"K61 (D2,F7)", "x":3, "y":3, "h":2}, | ||
66 | {"label":"K62 (D2,F6)", "x":4, "y":3, "w":2.25}, | ||
67 | {"label":"K63 (D2,F5)", "x":6.25, "y":3}, | ||
68 | {"label":"K64 (D2,F4)", "x":7.25, "y":3}, | ||
69 | {"label":"K65 (D2,D0)", "x":8.25, "y":3}, | ||
70 | {"label":"K66 (D2,D1)", "x":9.25, "y":3}, | ||
71 | {"label":"K67 (D2,D7)", "x":10.25, "y":3}, | ||
72 | {"label":"K68 (D2,B4)", "x":11.25, "y":3}, | ||
73 | {"label":"K70 (B5,B6)", "x":12.25, "y":3}, | ||
74 | {"label":"K71 (B5,F7)", "x":13.25, "y":3}, | ||
75 | {"label":"K72 (B5,F6)", "x":14.25, "y":3}, | ||
76 | {"label":"K73 (B5,F5)", "x":15.25, "y":3}, | ||
77 | {"label":"K74 (B5,F4)", "x":16.25, "y":3, "w":2.75}, | ||
78 | {"label":"K75 (B5,D0)", "x":0, "y":4, "w":2}, | ||
79 | {"label":"K76 (B5,D1)", "x":2, "y":4}, | ||
80 | {"label":"K77 (B5,D7)", "x":4, "y":4, "w":1.25}, | ||
81 | {"label":"K78 (B5,B4)", "x":5.25, "y":4, "w":1.25}, | ||
82 | {"label":"K80 (D5,B6)", "x":6.5, "y":4, "w":1.25}, | ||
83 | {"label":"K81 (D5,F7)", "x":7.75, "y":4, "w":6.25}, | ||
84 | {"label":"K82 (D5,F6)", "x":14, "y":4, "w":1.25}, | ||
85 | {"label":"K83 (D5,F5)", "x":15.25, "y":4, "w":1.25}, | ||
86 | {"label":"K84 (D5,F4)", "x":16.5, "y":4, "w":1.25}, | ||
87 | {"label":"K85 (D5,D0)", "x":17.75, "y":4, "w":1.25} | ||
88 | ] | ||
89 | } | ||
90 | } | ||
91 | } | ||
diff --git a/keyboards/holyswitch/southpaw75/keymaps/default/keymap.c b/keyboards/holyswitch/southpaw75/keymaps/default/keymap.c new file mode 100644 index 000000000..29675ef77 --- /dev/null +++ b/keyboards/holyswitch/southpaw75/keymaps/default/keymap.c | |||
@@ -0,0 +1,35 @@ | |||
1 | /* Copyright 2020 Drewguy, MechMerlin | ||
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 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
19 | [0] = LAYOUT( | ||
20 | KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, KC_GRV, 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, | ||
21 | KC_P7, KC_P8, KC_P9, KC_PPLS, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
22 | KC_P4, KC_P5, KC_P6, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
23 | KC_P1, KC_P2, KC_P3, KC_PENT, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
24 | KC_P0, KC_PDOT, KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, MO(1), KC_RGUI, KC_APP, KC_RCTL | ||
25 | ), | ||
26 | |||
27 | [1] = LAYOUT( | ||
28 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, 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_DEL, | ||
29 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
30 | 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, | ||
31 | 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, | ||
32 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS | ||
33 | ), | ||
34 | |||
35 | }; | ||
diff --git a/keyboards/holyswitch/southpaw75/keymaps/default/readme.md b/keyboards/holyswitch/southpaw75/keymaps/default/readme.md new file mode 100644 index 000000000..bbcf7d114 --- /dev/null +++ b/keyboards/holyswitch/southpaw75/keymaps/default/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default keymap for southpaw75 | |||
diff --git a/keyboards/holyswitch/southpaw75/keymaps/via/keymap.c b/keyboards/holyswitch/southpaw75/keymaps/via/keymap.c new file mode 100644 index 000000000..cfca6b435 --- /dev/null +++ b/keyboards/holyswitch/southpaw75/keymaps/via/keymap.c | |||
@@ -0,0 +1,51 @@ | |||
1 | /* Copyright 2020 Drewguy, MechMerlin | ||
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 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
19 | [0] = LAYOUT( | ||
20 | KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, KC_GRV, 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, | ||
21 | KC_P7, KC_P8, KC_P9, KC_PPLS, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, | ||
22 | KC_P4, KC_P5, KC_P6, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
23 | KC_P1, KC_P2, KC_P3, KC_PENT, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, | ||
24 | KC_P0, KC_PDOT, KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, MO(1), KC_RGUI, KC_APP, KC_RCTL | ||
25 | ), | ||
26 | |||
27 | [1] = LAYOUT( | ||
28 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, 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_DEL, | ||
29 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
30 | 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, | ||
31 | 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, | ||
32 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS | ||
33 | ), | ||
34 | |||
35 | [2] = LAYOUT( | ||
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, 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, 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, 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_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
40 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS | ||
41 | ), | ||
42 | |||
43 | [3] = LAYOUT( | ||
44 | 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, KC_TRNS, KC_TRNS, | ||
45 | 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, KC_TRNS, KC_TRNS, | ||
46 | 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, | ||
47 | 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, | ||
48 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS | ||
49 | ), | ||
50 | |||
51 | }; | ||
diff --git a/keyboards/holyswitch/southpaw75/keymaps/via/rules.mk b/keyboards/holyswitch/southpaw75/keymaps/via/rules.mk new file mode 100644 index 000000000..36b7ba9cb --- /dev/null +++ b/keyboards/holyswitch/southpaw75/keymaps/via/rules.mk | |||
@@ -0,0 +1,2 @@ | |||
1 | VIA_ENABLE = yes | ||
2 | LTO_ENABLE = yes | ||
diff --git a/keyboards/holyswitch/southpaw75/readme.md b/keyboards/holyswitch/southpaw75/readme.md new file mode 100644 index 000000000..9c7ade561 --- /dev/null +++ b/keyboards/holyswitch/southpaw75/readme.md | |||
@@ -0,0 +1,23 @@ | |||
1 | # HolySwitch Co Southpaw75 | ||
2 | |||
3 | 60% Keyboard with numpad on the left side. | ||
4 | |||
5 | This is the USB C, with pre soldered components and was a US exclusive sold through HolySwitch Co. The international | ||
6 | version was sold with a pro micro. | ||
7 | |||
8 | Firmware on the international version is not compatible with this PCB, and firmware for this PCB is not compatible | ||
9 | with the international version. | ||
10 | |||
11 | * Keyboard Maintainer: [Drewpyun](https://github.com/drewpyun), [MechMerlin](https://github.com/mechmerlin) | ||
12 | * Hardware Supported: Southpaw75 | ||
13 | * Hardware Availability: [HolySwitch Co.](https://holyswitch.co/collections/group-buys/products/southpaw75) | ||
14 | |||
15 | Make example for this keyboard (after setting up your build environment): | ||
16 | |||
17 | make holyswitch/southpaw75:default | ||
18 | |||
19 | Flashing example for this keyboard: | ||
20 | |||
21 | make holyswitch/southpaw75:default:flash | ||
22 | |||
23 | 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/holyswitch/southpaw75/rules.mk b/keyboards/holyswitch/southpaw75/rules.mk new file mode 100644 index 000000000..5c0d8f307 --- /dev/null +++ b/keyboards/holyswitch/southpaw75/rules.mk | |||
@@ -0,0 +1,22 @@ | |||
1 | # MCU name | ||
2 | MCU = atmega32u4 | ||
3 | |||
4 | # Bootloader selection | ||
5 | BOOTLOADER = atmel-dfu | ||
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 | ||
diff --git a/keyboards/holyswitch/southpaw75/southpaw75.c b/keyboards/holyswitch/southpaw75/southpaw75.c new file mode 100644 index 000000000..902460227 --- /dev/null +++ b/keyboards/holyswitch/southpaw75/southpaw75.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* Copyright 2020 mechmerlin | ||
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 "southpaw75.h" | ||
diff --git a/keyboards/holyswitch/southpaw75/southpaw75.h b/keyboards/holyswitch/southpaw75/southpaw75.h new file mode 100644 index 000000000..0fd4ee0c0 --- /dev/null +++ b/keyboards/holyswitch/southpaw75/southpaw75.h | |||
@@ -0,0 +1,36 @@ | |||
1 | /* Copyright 2020 drewguy | ||
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 | #pragma once | ||
17 | |||
18 | #include "quantum.h" | ||
19 | |||
20 | #define LAYOUT( \ | ||
21 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K10, K11, K12, K13, K14, K15, K16, K17, K18, \ | ||
22 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K30, K31, K32, K33, K34, K35, K36, K37, K38, \ | ||
23 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K50, K51, K52, K53, K54, K55, K56, \ | ||
24 | K57, K58, K60, K61, K62, K63, K64, K65, K66, K67, K68, K70, K71, K72, K73, K74, \ | ||
25 | K75, K76, K77, K78, K80, K81, K82, K83, K84, K85 \ | ||
26 | ) { \ | ||
27 | { K00, K01, K02, K03, K04, K05, K06, K07, K08 }, \ | ||
28 | { K10, K11, K12, K13, K14, K15, K16, K17, K18 }, \ | ||
29 | { K20, K21, K22, K23, K24, K25, K26, K27, K28 }, \ | ||
30 | { K30, K31, K32, K33, K34, K35, K36, K37, K38 }, \ | ||
31 | { K40, K41, K42, K43, K44, K45, K46, K47, K48 }, \ | ||
32 | { K50, K51, K52, K53, K54, K55, K56, K57, K58 }, \ | ||
33 | { K60, K61, K62, K63, K64, K65, K66, K67, K68 }, \ | ||
34 | { K70, K71, K72, K73, K74, K75, K76, K77, K78 }, \ | ||
35 | { K80, K81, K82, K83, K84, K85, KC_NO, KC_NO, KC_NO }, \ | ||
36 | } | ||