summaryrefslogtreecommitdiff
path: root/keyboards/matchstickworks/southpad/rev2
diff options
context:
space:
mode:
authorLogan Butler <8854426+MatchstickWorks@users.noreply.github.com>2023-10-31 20:12:20 -0700
committerGitHub <noreply@github.com>2023-10-31 20:12:20 -0700
commit0a94c2951fa3f4f7ca928c0cb5119ec5d7000132 (patch)
treeb1d47f09b808a048f6d8bf9ac894e684e536d180 /keyboards/matchstickworks/southpad/rev2
parentb31426252ed379937132ed7d2baf84a677123b5b (diff)
[Keyboard] matchstickworks/southpad - Move files to rev1, add rev2 (#21574)
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/matchstickworks/southpad/rev2')
-rw-r--r--keyboards/matchstickworks/southpad/rev2/info.json55
-rw-r--r--keyboards/matchstickworks/southpad/rev2/keymaps/default/keymap.c25
-rw-r--r--keyboards/matchstickworks/southpad/rev2/keymaps/via/keymap.c26
-rw-r--r--keyboards/matchstickworks/southpad/rev2/keymaps/via/rules.mk1
-rw-r--r--keyboards/matchstickworks/southpad/rev2/readme.md23
-rw-r--r--keyboards/matchstickworks/southpad/rev2/rules.mk0
6 files changed, 130 insertions, 0 deletions
diff --git a/keyboards/matchstickworks/southpad/rev2/info.json b/keyboards/matchstickworks/southpad/rev2/info.json
new file mode 100644
index 0000000000..717b56ef63
--- /dev/null
+++ b/keyboards/matchstickworks/southpad/rev2/info.json
@@ -0,0 +1,55 @@
+{
+ "keyboard_name": "SouthPad v2",
+ "processor": "RP2040",
+ "bootloader": "rp2040",
+ "usb": {
+ "vid": "0x4D57",
+ "pid": "0x0002",
+ "device_version": "0.0.1"
+ },
+ "features": {
+ "bootmagic": true,
+ "command": false,
+ "console": false,
+ "extrakey": true,
+ "mousekey": true,
+ "nkro": true
+ },
+ "diode_direction": "COL2ROW",
+ "matrix_pins": {
+ "rows": ["GP13", "GP29", "GP28", "GP20", "GP19", "GP18"],
+ "cols": ["GP2", "GP4", "GP11", "GP12"]
+ },
+ "layouts": {
+ "LAYOUT": {
+ "layout": [
+ { "label": "Bksp", "matrix": [0, 0], "x": 0, "y": 0 },
+ { "label": "=", "matrix": [0, 1], "x": 1, "y": 0 },
+ { "label": "(", "matrix": [0, 2], "x": 2, "y": 0 },
+ { "label": ")", "matrix": [0, 3], "x": 3, "y": 0 },
+
+ { "label": "-", "matrix": [1, 0], "x": 0, "y": 1 },
+ { "label": "*", "matrix": [1, 1], "x": 1, "y": 1 },
+ { "label": "/", "matrix": [1, 2], "x": 2, "y": 1 },
+ { "label": "Num Lock", "matrix": [1, 3], "x": 3, "y": 1 },
+
+ { "label": "+", "matrix": [2, 0], "x": 0, "y": 2, "h": 2 },
+ { "label": "9", "matrix": [2, 1], "x": 1, "y": 2 },
+ { "label": "8", "matrix": [2, 2], "x": 2, "y": 2 },
+ { "label": "7", "matrix": [2, 3], "x": 3, "y": 2 },
+
+ { "label": "6", "matrix": [3, 1], "x": 1, "y": 3 },
+ { "label": "5", "matrix": [3, 2], "x": 2, "y": 3 },
+ { "label": "4", "matrix": [3, 3], "x": 3, "y": 3 },
+
+ { "label": "Enter", "matrix": [4, 0], "x": 0, "y": 4, "h": 2 },
+ { "label": "3", "matrix": [4, 1], "x": 1, "y": 4 },
+ { "label": "2", "matrix": [4, 2], "x": 2, "y": 4 },
+ { "label": "1", "matrix": [4, 3], "x": 3, "y": 4 },
+
+ { "label": ".", "matrix": [5, 1], "x": 1, "y": 5 },
+ { "label": "0", "matrix": [5, 3], "x": 2, "y": 5, "w": 2 }
+ ]
+ }
+ }
+}
diff --git a/keyboards/matchstickworks/southpad/rev2/keymaps/default/keymap.c b/keyboards/matchstickworks/southpad/rev2/keymaps/default/keymap.c
new file mode 100644
index 0000000000..2dd332fdf5
--- /dev/null
+++ b/keyboards/matchstickworks/southpad/rev2/keymaps/default/keymap.c
@@ -0,0 +1,25 @@
+/* Copyright 2023 Logan Butler*/
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#include QMK_KEYBOARD_H
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+ [0] = LAYOUT(
+ KC_BSPC, KC_EQL, LSFT(KC_9),LSFT(KC_0),
+ KC_PMNS, KC_PAST, KC_PSLS, TG(1),
+ KC_PPLS, KC_P9, KC_P8, KC_P7,
+ KC_P6, KC_P5, KC_P4,
+ KC_PENT, KC_P3, KC_P2, KC_P1,
+ KC_PDOT, KC_P0
+ ),
+
+ [1] = LAYOUT(
+ _______, _______, _______, _______,
+ _______, _______, _______, _______,
+ _______, KC_PGUP, KC_UP, KC_HOME,
+ KC_LEFT, _______, KC_RGHT,
+ _______, KC_PGDN, KC_DOWN, KC_END,
+ KC_DEL, KC_INS
+ ),
+}; \ No newline at end of file
diff --git a/keyboards/matchstickworks/southpad/rev2/keymaps/via/keymap.c b/keyboards/matchstickworks/southpad/rev2/keymaps/via/keymap.c
new file mode 100644
index 0000000000..eabe8dd5d5
--- /dev/null
+++ b/keyboards/matchstickworks/southpad/rev2/keymaps/via/keymap.c
@@ -0,0 +1,26 @@
+/* Copyright 2023 Logan Butler*/
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#include QMK_KEYBOARD_H
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+ [0] = LAYOUT(
+ KC_BSPC, KC_EQL, LSFT(KC_9),LSFT(KC_0),
+ KC_PMNS, KC_PAST, KC_PSLS, TG(1),
+ KC_PPLS, KC_P9, KC_P8, KC_P7,
+ KC_P6, KC_P5, KC_P4,
+ KC_PENT, KC_P3, KC_P2, KC_P1,
+ KC_PDOT, KC_P0
+ ),
+
+ [1] = LAYOUT(
+ _______, _______, _______, _______,
+ _______, _______, _______, _______,
+ _______, KC_PGUP, KC_UP, KC_HOME,
+ KC_LEFT, _______, KC_RGHT,
+ _______, KC_PGDN, KC_DOWN, KC_END,
+ KC_DEL, KC_INS
+ ),
+
+}; \ No newline at end of file
diff --git a/keyboards/matchstickworks/southpad/rev2/keymaps/via/rules.mk b/keyboards/matchstickworks/southpad/rev2/keymaps/via/rules.mk
new file mode 100644
index 0000000000..1e5b99807c
--- /dev/null
+++ b/keyboards/matchstickworks/southpad/rev2/keymaps/via/rules.mk
@@ -0,0 +1 @@
+VIA_ENABLE = yes
diff --git a/keyboards/matchstickworks/southpad/rev2/readme.md b/keyboards/matchstickworks/southpad/rev2/readme.md
new file mode 100644
index 0000000000..b249265f29
--- /dev/null
+++ b/keyboards/matchstickworks/southpad/rev2/readme.md
@@ -0,0 +1,23 @@
+# SouthPad
+
+![Southpad](https://i.imgur.com/oXi69cuh.png)
+
+This is a left-handed, mirrored numberpad with USB-C connection and Kailh hotswap sockets, built on the RP2040 MCU.
+
+Default layout is such:
+
+![SouthPad Layout](https://i.imgur.com/Zwxpa7ah.png)
+
+* Keyboard Maintainer: [Logan Butler](https://github.com/MatchstickWorks)
+* Hardware Supported: SouthPad v2 PCB
+* Hardware Availability: Either via [my storefront](https://matchstick.works), [my Etsy Store](https://www.etsy.com/shop/MatchstickWorksShop), or by messaging directly
+
+Getting the board into bootloader mode:
+
+In order to flash the firmware to this board, simply press both the RESET and BOOT buttons on the back of the PCB. You will hear a reconnect sound on your computer and a file explorer window should open where you can drag and drop the compiled UF2 into.
+
+Make example for this keyboard (after setting up your build environment):
+
+ make matchstickworks/southpad/rev2:default
+
+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/matchstickworks/southpad/rev2/rules.mk b/keyboards/matchstickworks/southpad/rev2/rules.mk
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/keyboards/matchstickworks/southpad/rev2/rules.mk