summaryrefslogtreecommitdiff
path: root/keyboards/handwired
diff options
context:
space:
mode:
authorInfos <136488157+diffrentGuesser@users.noreply.github.com>2025-05-18 05:28:24 +0200
committerGitHub <noreply@github.com>2025-05-17 20:28:24 -0700
commite73b3c08a060bbb0e5a94ee3ac7023a17cea0402 (patch)
tree4436e179ed215cfc446d4d9b14347f0fc2d46886 /keyboards/handwired
parent40d0de39b7ac28ee929729b17e938b98e73db444 (diff)
Add Zeropad (#24737)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Joel Challis <git@zvecr.com>
Diffstat (limited to 'keyboards/handwired')
-rw-r--r--keyboards/handwired/zeropad/keyboard.json38
-rw-r--r--keyboards/handwired/zeropad/keymaps/default/keymap.c13
-rw-r--r--keyboards/handwired/zeropad/readme.md27
3 files changed, 78 insertions, 0 deletions
diff --git a/keyboards/handwired/zeropad/keyboard.json b/keyboards/handwired/zeropad/keyboard.json
new file mode 100644
index 0000000000..40bf6c8c2a
--- /dev/null
+++ b/keyboards/handwired/zeropad/keyboard.json
@@ -0,0 +1,38 @@
1{
2 "manufacturer": "Leon Sieber",
3 "keyboard_name": "ZeroPad",
4 "maintainer": "diffrentGuesser",
5 "development_board": "promicro",
6 "diode_direction": "COL2ROW",
7 "features": {
8 "bootmagic": true,
9 "extrakey": true,
10 "mousekey": true,
11 "nkro": true
12 },
13 "matrix_pins": {
14 "cols": ["D1", "D0", "D4"],
15 "rows": ["C6", "D7", "E6"],
16 },
17 "usb": {
18 "device_version": "1.0.0",
19 "pid": "0x0000",
20 "vid": "0x5A50"
21 },
22 "community_layouts": [ "ortho_3x3" ],
23 "layouts": {
24 "LAYOUT_ortho_3x3": {
25 "layout": [
26 {"matrix": [0, 0], "x": 0, "y": 0},
27 {"matrix": [0, 1], "x": 1, "y": 0},
28 {"matrix": [0, 2], "x": 2, "y": 0},
29 {"matrix": [1, 0], "x": 0, "y": 1},
30 {"matrix": [1, 1], "x": 1, "y": 1},
31 {"matrix": [1, 2], "x": 2, "y": 1},
32 {"matrix": [2, 0], "x": 0, "y": 2},
33 {"matrix": [2, 1], "x": 1, "y": 2},
34 {"matrix": [2, 2], "x": 2, "y": 2}
35 ]
36 }
37 }
38}
diff --git a/keyboards/handwired/zeropad/keymaps/default/keymap.c b/keyboards/handwired/zeropad/keymaps/default/keymap.c
new file mode 100644
index 0000000000..aa674bcbda
--- /dev/null
+++ b/keyboards/handwired/zeropad/keymaps/default/keymap.c
@@ -0,0 +1,13 @@
1// Copyright 2023 QMK
2// SPDX-License-Identifier: GPL-2.0-or-later
3
4#include QMK_KEYBOARD_H
5
6const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
7
8 [0] = LAYOUT_ortho_3x3(
9 KC_1, KC_2, KC_3,
10 KC_4, KC_5, KC_6,
11 KC_7, KC_8, KC_9
12 )
13};
diff --git a/keyboards/handwired/zeropad/readme.md b/keyboards/handwired/zeropad/readme.md
new file mode 100644
index 0000000000..c021d7dc05
--- /dev/null
+++ b/keyboards/handwired/zeropad/readme.md
@@ -0,0 +1,27 @@
1# ZeroPad
2
3![ZeroPad](https://i.imgur.com/KBkI4q1.jpeg)
4
5This keyboard is inspired by the scotto9 from Joe Scotto. This keyboard is compatible with via and has 4 layers of keybinds (24 keybinds - 4x8 + 1 per layer for changing the layer).
6
7* Keyboard Maintainer: [Leon Sieber](https://github.com/diffrentGuesser)
8* Hardware Supported: Pro Micro, 3 pin switches
9* Hardware Availability: [Pro Micro](https://de.aliexpress.com/item/32846843498.html?spm=a2g0o.cart.0.0.146d4ae4kCjqDY&mp=1&gatewayAdapt=glo2deu), [switches](https://de.aliexpress.com/item/1005007135709029.html?spm=a2g0o.cart.0.0.146d4ae4kCjqDY&mp=1&gatewayAdapt=glo2deu)
10
11Make example for this keyboard (after setting up your build environment):
12
13 make handwired/zeropad:default
14
15Flashing example for this keyboard:
16
17 make handwired/zeropad:default:flash
18
19See 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).
20
21## Bootloader
22
23Enter the bootloader in 3 ways:
24
25* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (the top left key) and plug in the keyboard
26* **Physical reset**: Short the GND and the RST pins on the Pro Micro.
27* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available