diff options
| author | CJ Pais <cj@cjpais.com> | 2025-04-21 16:56:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-21 16:56:10 -0700 |
| commit | ebfa3cdd5c38d023ed4525e25004155aad7ad3e0 (patch) | |
| tree | 44a12efb2482f5665ed5db298c9e7b50430ce307 /keyboards/handwired | |
| parent | 53f1f3b6d70bd457c5c42b799858c775dfcd3cb6 (diff) | |
Add handwired/footy (#25151)
Co-authored-by: jack <jack@pngu.org>
Diffstat (limited to 'keyboards/handwired')
| -rw-r--r-- | keyboards/handwired/footy/config.h | 5 | ||||
| -rw-r--r-- | keyboards/handwired/footy/keyboard.json | 35 | ||||
| -rw-r--r-- | keyboards/handwired/footy/keymaps/default/keymap.json | 10 | ||||
| -rw-r--r-- | keyboards/handwired/footy/keymaps/handy/keymap.json | 15 | ||||
| -rw-r--r-- | keyboards/handwired/footy/keymaps/superwhisper/keymap.json | 15 | ||||
| -rw-r--r-- | keyboards/handwired/footy/readme.md | 42 |
6 files changed, 122 insertions, 0 deletions
diff --git a/keyboards/handwired/footy/config.h b/keyboards/handwired/footy/config.h new file mode 100644 index 0000000000..5a081f79d6 --- /dev/null +++ b/keyboards/handwired/footy/config.h | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 2 | #pragma once | ||
| 3 | |||
| 4 | #define RP2040_BOOTLOADER_DOUBLE_TAP_RESET | ||
| 5 | #define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U | ||
diff --git a/keyboards/handwired/footy/keyboard.json b/keyboards/handwired/footy/keyboard.json new file mode 100644 index 0000000000..eef8c25038 --- /dev/null +++ b/keyboards/handwired/footy/keyboard.json | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | { | ||
| 2 | "manufacturer": "CJ Pais", | ||
| 3 | "keyboard_name": "Footy", | ||
| 4 | "maintainer": "cjpais", | ||
| 5 | "bootloader": "rp2040", | ||
| 6 | "diode_direction": "COL2ROW", | ||
| 7 | "features": { | ||
| 8 | "bootmagic": true, | ||
| 9 | "extrakey": true, | ||
| 10 | "mousekey": true | ||
| 11 | }, | ||
| 12 | "bootmagic": { | ||
| 13 | "matrix": [0, 1] | ||
| 14 | }, | ||
| 15 | "matrix_pins": { | ||
| 16 | "cols": ["GP11", "GP10", "GP15"], | ||
| 17 | "rows": ["GP14"] | ||
| 18 | }, | ||
| 19 | "processor": "RP2040", | ||
| 20 | "url": "https://workshop.cjpais.com/projects/footy", | ||
| 21 | "usb": { | ||
| 22 | "device_version": "1.0.0", | ||
| 23 | "pid": "0x0001", | ||
| 24 | "vid": "0x636A" | ||
| 25 | }, | ||
| 26 | "layouts": { | ||
| 27 | "LAYOUT": { | ||
| 28 | "layout": [ | ||
| 29 | {"matrix": [0, 0], "x": 0, "y": 0}, | ||
| 30 | {"matrix": [0, 1], "x": 1, "y": 0}, | ||
| 31 | {"matrix": [0, 2], "x": 2, "y": 0} | ||
| 32 | ] | ||
| 33 | } | ||
| 34 | } | ||
| 35 | } | ||
diff --git a/keyboards/handwired/footy/keymaps/default/keymap.json b/keyboards/handwired/footy/keymaps/default/keymap.json new file mode 100644 index 0000000000..99804041d8 --- /dev/null +++ b/keyboards/handwired/footy/keymaps/default/keymap.json | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | { | ||
| 2 | "keyboard": "handwired/footy", | ||
| 3 | "keymap": "default", | ||
| 4 | "layout": "LAYOUT", | ||
| 5 | "layers": [ | ||
| 6 | [ | ||
| 7 | "KC_A", "KC_B", "KC_C" | ||
| 8 | ] | ||
| 9 | ] | ||
| 10 | } | ||
diff --git a/keyboards/handwired/footy/keymaps/handy/keymap.json b/keyboards/handwired/footy/keymaps/handy/keymap.json new file mode 100644 index 0000000000..e2a2db6d10 --- /dev/null +++ b/keyboards/handwired/footy/keymaps/handy/keymap.json | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | { | ||
| 2 | "keyboard": "handwired/footy", | ||
| 3 | "keymap": "handy", | ||
| 4 | "layout": "LAYOUT", | ||
| 5 | "layers": [ | ||
| 6 | [ | ||
| 7 | "KC_NO", "MT(MOD_RCTL | MOD_RGUI, KC_NO)", "KC_NO" | ||
| 8 | ] | ||
| 9 | ], | ||
| 10 | "config": { | ||
| 11 | "tapping": { | ||
| 12 | "term": 50 | ||
| 13 | } | ||
| 14 | } | ||
| 15 | } | ||
diff --git a/keyboards/handwired/footy/keymaps/superwhisper/keymap.json b/keyboards/handwired/footy/keymaps/superwhisper/keymap.json new file mode 100644 index 0000000000..0cfa41f502 --- /dev/null +++ b/keyboards/handwired/footy/keymaps/superwhisper/keymap.json | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | { | ||
| 2 | "keyboard": "handwired/footy", | ||
| 3 | "keymap": "superwhisper", | ||
| 4 | "layout": "LAYOUT", | ||
| 5 | "layers": [ | ||
| 6 | [ | ||
| 7 | "KC_NO", "LOPT(KC_SPACE)", "KC_NO" | ||
| 8 | ] | ||
| 9 | ], | ||
| 10 | "config": { | ||
| 11 | "tapping": { | ||
| 12 | "term": 50 | ||
| 13 | } | ||
| 14 | } | ||
| 15 | } | ||
diff --git a/keyboards/handwired/footy/readme.md b/keyboards/handwired/footy/readme.md new file mode 100644 index 0000000000..6d02fad95c --- /dev/null +++ b/keyboards/handwired/footy/readme.md | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | # Footy | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | *Footy is a foot pedal intended to be used with a speech to text application like 'handy' or superwhisper. Initially developed as an assistive technology device for those with limited typing abilities.* | ||
| 6 | |||
| 7 | * Keyboard Maintainer: [CJ Pais](https://github.com/cjpais) | ||
| 8 | * Hardware Supported: [Keebio Stampy](https://keeb.io/products/stampy-rp2040-usb-c-controller-board-for-handwiring) | ||
| 9 | * Hardware Availability: [3D printed case](https://makerworld.com/en/models/1185240-footy) | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make handwired/footy:default | ||
| 14 | |||
| 15 | Flashing example for this keyboard (enter the bootloader first): | ||
| 16 | |||
| 17 | make handwired/footy:default:flash | ||
| 18 | |||
| 19 | or drag and drop .uf2 file on the removable storage | ||
| 20 | |||
| 21 | 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). | ||
| 22 | |||
| 23 | ## Bootloader | ||
| 24 | |||
| 25 | Enter the bootloader: | ||
| 26 | |||
| 27 | * **Physical reset button**: Briefly double press the button on the back of the PCB | ||
| 28 | |||
| 29 | ## Keymaps | ||
| 30 | |||
| 31 | Right now there are two primary keymaps, one for 'handy' and one for 'superwhisper'. | ||
| 32 | |||
| 33 | Handy's default keymap is for the center switch to be RCTRL + RGUI. | ||
| 34 | |||
| 35 | Superwhisper's default keymap is for the center switch to be LOPT + SPACE. | ||
| 36 | |||
| 37 | You can build either of these firmware images by running the following commands: | ||
| 38 | |||
| 39 | ``` | ||
| 40 | make handwired/footy:handy | ||
| 41 | make handwired/footy:superwhisper | ||
| 42 | ``` \ No newline at end of file | ||
