aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/rpiguy9907/southpaw66/config.h53
-rw-r--r--keyboards/rpiguy9907/southpaw66/info.json78
-rw-r--r--keyboards/rpiguy9907/southpaw66/keymaps/default/keymap.c34
-rw-r--r--keyboards/rpiguy9907/southpaw66/keymaps/via/keymap.c48
-rw-r--r--keyboards/rpiguy9907/southpaw66/keymaps/via/rules.mk1
-rw-r--r--keyboards/rpiguy9907/southpaw66/readme.md24
-rw-r--r--keyboards/rpiguy9907/southpaw66/rules.mk23
-rw-r--r--keyboards/rpiguy9907/southpaw66/southpaw66.c17
-rw-r--r--keyboards/rpiguy9907/southpaw66/southpaw66.h37
9 files changed, 315 insertions, 0 deletions
diff --git a/keyboards/rpiguy9907/southpaw66/config.h b/keyboards/rpiguy9907/southpaw66/config.h
new file mode 100644
index 000000000..242b4a7c4
--- /dev/null
+++ b/keyboards/rpiguy9907/southpaw66/config.h
@@ -0,0 +1,53 @@
1 /* Copyright 2020 gooberpsycho
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/* USB Device descriptor parameter */
21#define VENDOR_ID 0xFEED
22#define PRODUCT_ID 0x6077
23#define DEVICE_VER 0x0001
24#define MANUFACTURER rpiguy9907
25#define PRODUCT Southpaw66
26
27#define TAPPING_TERM 400
28
29/* key matrix size */
30#define MATRIX_ROWS 7
31#define MATRIX_COLS 10
32
33// ROWS: Top to bottom, COLS: Left to right
34
35#define MATRIX_ROW_PINS { D7, C6, D4, D0, D1, D2, D3 }
36#define MATRIX_COL_PINS { E6, B4, B5, F4, F5, F6, F7, B1, B3, B2 }
37#define UNUSED_PINS
38
39/* COL2ROW or ROW2COL */
40#define DIODE_DIRECTION COL2ROW
41
42
43/* Set 0 if debouncing isn't needed */
44#define DEBOUNCE 5
45
46/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
47#define LOCKING_SUPPORT_ENABLE
48/* Locking resynchronize hack */
49#define LOCKING_RESYNC_ENABLE
50
51/* Bootmagic Lite key configuration */
52#define BOOTMAGIC_LITE_ROW 1
53#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/rpiguy9907/southpaw66/info.json b/keyboards/rpiguy9907/southpaw66/info.json
new file mode 100644
index 000000000..80d78a5d9
--- /dev/null
+++ b/keyboards/rpiguy9907/southpaw66/info.json
@@ -0,0 +1,78 @@
1{
2 "keyboard_name": "Southpaw66",
3 "url": "",
4 "maintainer": "qmk",
5 "width": 15,
6 "height": 5,
7 "layouts": {
8 "LAYOUT": {
9
10 "layout": [
11 {"label":"Insert", "x":0, "y":0},
12 {"label":"Esc", "x":1.5, "y":0},
13 {"label":"1", "x":2.5, "y":0},
14 {"label":"2", "x":3.5, "y":0},
15 {"label":"3", "x":4.5, "y":0},
16 {"label":"4", "x":5.5, "y":0},
17 {"label":"5", "x":6.5, "y":0},
18 {"label":"6", "x":7.5, "y":0},
19 {"label":"7", "x":8.5, "y":0},
20 {"label":"8", "x":9.5, "y":0},
21 {"label":"9", "x":10.5, "y":0},
22 {"label":"0", "x":11.5, "y":0},
23 {"label":"-", "x":12.5, "y":0},
24 {"label":"=", "x":13.5, "y":0},
25 {"label":"Backspace", "x":14.5, "y":0, "w":2},
26 {"label":"Delete", "x":0, "y":1},
27 {"label":"Tab", "x":1.5, "y":1, "w":1.5},
28 {"label":"Q", "x":3, "y":1},
29 {"label":"W", "x":4, "y":1},
30 {"label":"E", "x":5, "y":1},
31 {"label":"R", "x":6, "y":1},
32 {"label":"T", "x":7, "y":1},
33 {"label":"Y", "x":8, "y":1},
34 {"label":"U", "x":9, "y":1},
35 {"label":"I", "x":10, "y":1},
36 {"label":"O", "x":11, "y":1},
37 {"label":"P", "x":12, "y":1},
38 {"label":"[", "x":13, "y":1},
39 {"label":"]", "x":14, "y":1},
40 {"label":"|", "x":15, "y":1, "w":1.5},
41 {"label":"Caps Lock", "x":1.5, "y":2, "w":1.75},
42 {"label":"A", "x":3.25, "y":2},
43 {"label":"S", "x":4.25, "y":2},
44 {"label":"D", "x":5.25, "y":2},
45 {"label":"F", "x":6.25, "y":2},
46 {"label":"G", "x":7.25, "y":2},
47 {"label":"H", "x":8.25, "y":2},
48 {"label":"J", "x":9.25, "y":2},
49 {"label":"K", "x":10.25, "y":2},
50 {"label":"L", "x":11.25, "y":2},
51 {"label":":", "x":12.25, "y":2},
52 {"label":"\"", "x":13.25, "y":2},
53 {"label":"Enter", "x":14.25, "y":2, "w":2.25},
54 {"label":"Up", "x":1, "y":3},
55 {"label":"Shift", "x":2, "y":3, "w":1.75},
56 {"label":"Z", "x":3.75, "y":3},
57 {"label":"X", "x":4.75, "y":3},
58 {"label":"C", "x":5.75, "y":3},
59 {"label":"V", "x":6.75, "y":3},
60 {"label":"B", "x":7.75, "y":3},
61 {"label":"N", "x":8.75, "y":3},
62 {"label":"M", "x":9.75, "y":3},
63 {"label":",", "x":10.75, "y":3},
64 {"label":".", "x":11.75, "y":3},
65 {"label":"/", "x":12.75, "y":3},
66 {"label":"Shift", "x":13.75, "y":3, "w":2.75},
67 {"label":"Left", "x":0, "y":4},
68 {"label":"Down", "x":1, "y":4},
69 {"label":"Right", "x":2, "y":4},
70 {"label":"Ctrl", "x":3, "y":4, "w":1.5},
71 {"label":"Alt", "x":4.5, "y":4},
72 {"label":"Space", "x":5.5, "y":4, "w":7},
73 {"label":"Win", "x":12.5, "y":4},
74 {"label":"Alt", "x":13.5, "y":4, "w":1.5},
75 {"label":"Ctrl", "x":15, "y":4, "w":1.5}]
76 }
77 }
78}
diff --git a/keyboards/rpiguy9907/southpaw66/keymaps/default/keymap.c b/keyboards/rpiguy9907/southpaw66/keymaps/default/keymap.c
new file mode 100644
index 000000000..712a34c9b
--- /dev/null
+++ b/keyboards/rpiguy9907/southpaw66/keymaps/default/keymap.c
@@ -0,0 +1,34 @@
1 /* Copyright 2020 gooberpsycho
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 QMK_KEYBOARD_H
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19
20 [0] = LAYOUT(
21 KC_DEL, KC_ESC, 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,
22 KC_END, 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,
23 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,
24 KC_UP, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
25 KC_LEFT, KC_DOWN, KC_RGHT, KC_LCTL, KC_LGUI, KC_SPC, KC_RALT, MO(1), KC_RCTL
26 ),
27 [1] = LAYOUT(
28 KC_TRNS, RESET, 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,
29 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,
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,
31 KC_VOLU, 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_MPRV, KC_VOLD, KC_MNXT,KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
33 ),
34};
diff --git a/keyboards/rpiguy9907/southpaw66/keymaps/via/keymap.c b/keyboards/rpiguy9907/southpaw66/keymaps/via/keymap.c
new file mode 100644
index 000000000..87eccd222
--- /dev/null
+++ b/keyboards/rpiguy9907/southpaw66/keymaps/via/keymap.c
@@ -0,0 +1,48 @@
1 /* Copyright 2020 gooberpsycho
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 QMK_KEYBOARD_H
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19
20 [0] = LAYOUT(
21 KC_DEL, KC_ESC, 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,
22 KC_END, 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,
23 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,
24 KC_UP, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
25 KC_LEFT, KC_DOWN, KC_RGHT, KC_LCTL, KC_LGUI, KC_SPC, MO(1), KC_RALT, KC_RCTL
26 ),
27 [1] = LAYOUT(
28 KC_TRNS, RESET, 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,
29 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,
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,
31 KC_VOLU, 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_MPRV, KC_VOLD, KC_MNXT, KC_TRNS, KC_TRNS, KC_MPLY, KC_TRNS, KC_TRNS, KC_TRNS
33 ),
34 [2] = 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,
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,
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,
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
40 ),
41 [3] = LAYOUT(
42 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,
43 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,
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,
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,
46 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
47 )
48};
diff --git a/keyboards/rpiguy9907/southpaw66/keymaps/via/rules.mk b/keyboards/rpiguy9907/southpaw66/keymaps/via/rules.mk
new file mode 100644
index 000000000..1e5b99807
--- /dev/null
+++ b/keyboards/rpiguy9907/southpaw66/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes
diff --git a/keyboards/rpiguy9907/southpaw66/readme.md b/keyboards/rpiguy9907/southpaw66/readme.md
new file mode 100644
index 000000000..c7a289b73
--- /dev/null
+++ b/keyboards/rpiguy9907/southpaw66/readme.md
@@ -0,0 +1,24 @@
1# Southpaw66
2
3![](https://i.imgur.com/Mzmhsedl.jpg)
4
5### Pro Micro Pinout
6| rows | 0 | 1 | 2 | 3 | 4 | 5 | 6 |
7| --------------- | --- | --- | --- | --- | --- | --- | --- |
8| Pro Micro pin | D3 | D2 | D1 | D0 | D4 | C6 | D7 |
9
10| columns | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
11| --------------- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |
12| Pro Micro pin | E6 | B4 | B5 | F4 | F5 | F6 | F7 | B1 | B3 | B2 |
13
14
15Make example for this keyboard (after setting up your build environment):
16
17 make rpiguy9907/southpaw66:default
18
19**Reset Key:** Hold down the key located at `k10`, commonly programmed as Escape while plugging in the keyboard.
20
21* Keyboard Maintainer: [gooberpsycho](https://github.com/gooberpsycho)
22* Hardware Availability: [Casefile](https://github.com/rpiguy9907/Keyboards/tree/master/Southpaw66)
23
24See 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/rpiguy9907/southpaw66/rules.mk b/keyboards/rpiguy9907/southpaw66/rules.mk
new file mode 100644
index 000000000..9ea17f062
--- /dev/null
+++ b/keyboards/rpiguy9907/southpaw66/rules.mk
@@ -0,0 +1,23 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = caterina
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
11MOUSEKEY_ENABLE = no # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = yes # Console for debug
14COMMAND_ENABLE = yes # Commands for debug and configuration
15# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
16SLEEP_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
18NKRO_ENABLE = yes # USB Nkey Rollover
19RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
20BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
21BLUETOOTH_ENABLE = no # Enable Bluetooth
22AUDIO_ENABLE = no # Audio output
23LTO_ENABLE = yes
diff --git a/keyboards/rpiguy9907/southpaw66/southpaw66.c b/keyboards/rpiguy9907/southpaw66/southpaw66.c
new file mode 100644
index 000000000..ef61984b9
--- /dev/null
+++ b/keyboards/rpiguy9907/southpaw66/southpaw66.c
@@ -0,0 +1,17 @@
1 /* Copyright 2020 gooberpsycho
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 "southpaw66.h"
diff --git a/keyboards/rpiguy9907/southpaw66/southpaw66.h b/keyboards/rpiguy9907/southpaw66/southpaw66.h
new file mode 100644
index 000000000..11f1fc7e8
--- /dev/null
+++ b/keyboards/rpiguy9907/southpaw66/southpaw66.h
@@ -0,0 +1,37 @@
1 /* Copyright 2020 gooberpsycho
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#include "quantum.h"
19
20// The first section contains all of the arguments
21// The second converts the arguments into a two-dimensional array
22#define LAYOUT( \
23 k00, k10, k20, k30, k40, k50, k60, k01, k11, k21, k31, k41, k51, k61, k02, \
24 k12, k22, k32, k42, k52, k62, k03, k13, k23, k33, k43, k53, k63, k04, k14, \
25 k24, k34, k44, k54, k64, k05, k15, k25, k35, k45, k55, k65, k06, \
26 k16, k26, k36, k46, k56, k66, k07, k17, k27, k37, k47, k57, k67, \
27 k08, k18, k28, k38, k48, k58, k68, k09, k19 \
28) \
29{ \
30 {k00, k01, k02, k03, k04, k05, k06, k07, k08, k09}, \
31 {k10, k11, k12, k13, k14, k15, k16, k17, k18, k19}, \
32 {k20, k21, k22, k23, k24, k25, k26, k27, k28, KC_NO}, \
33 {k30, k31, k32, k33, k34, k35, k36, k37, k38, KC_NO}, \
34 {k40, k41, k42, k43, k44, k45, k46, k47, k48, KC_NO}, \
35 {k50, k51, k52, k53, k54, k55, k56, k57, k58, KC_NO}, \
36 {k60, k61, k62, k63, k64, k65, k66, k67, k68, KC_NO} \
37}