-
-
Notifications
You must be signed in to change notification settings - Fork 42.1k
Add handwired/footy #25151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add handwired/footy #25151
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6ccf3dd
initial footy
cjpais 8135f6e
clean up
cjpais 93f2ecc
Apply suggestions from code review
cjpais 4e4f3ec
add bootmagic
cjpais 2a676f3
move to json keymap
cjpais 7468fc2
remove bootmagic breaking build
cjpais 06e593b
enable bootmagic on proper key
cjpais c7235a2
remove vbus pin
cjpais acd9029
Apply suggestions from code review
cjpais File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
#pragma once | ||
|
||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET | ||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"manufacturer": "CJ Pais", | ||
"keyboard_name": "Footy", | ||
"maintainer": "cjpais", | ||
"bootloader": "rp2040", | ||
"diode_direction": "COL2ROW", | ||
"features": { | ||
"bootmagic": true, | ||
"extrakey": true, | ||
"mousekey": true | ||
}, | ||
"bootmagic": { | ||
"matrix": [0, 1] | ||
}, | ||
"matrix_pins": { | ||
"cols": ["GP11", "GP10", "GP15"], | ||
"rows": ["GP14"] | ||
}, | ||
"processor": "RP2040", | ||
"url": "https://workshop.cjpais.com/projects/footy", | ||
"usb": { | ||
"device_version": "1.0.0", | ||
"pid": "0x0001", | ||
"vid": "0x636A" | ||
}, | ||
"layouts": { | ||
"LAYOUT": { | ||
"layout": [ | ||
{"matrix": [0, 0], "x": 0, "y": 0}, | ||
{"matrix": [0, 1], "x": 1, "y": 0}, | ||
{"matrix": [0, 2], "x": 2, "y": 0} | ||
] | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"keyboard": "handwired/footy", | ||
"keymap": "default", | ||
"layout": "LAYOUT", | ||
"layers": [ | ||
[ | ||
"KC_A", "KC_B", "KC_C" | ||
] | ||
] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"keyboard": "handwired/footy", | ||
"keymap": "handy", | ||
"layout": "LAYOUT", | ||
"layers": [ | ||
[ | ||
"KC_NO", "MT(MOD_RCTL | MOD_RGUI, KC_NO)", "KC_NO" | ||
] | ||
], | ||
"config": { | ||
"tapping": { | ||
"term": 50 | ||
} | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
keyboards/handwired/footy/keymaps/superwhisper/keymap.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"keyboard": "handwired/footy", | ||
"keymap": "superwhisper", | ||
"layout": "LAYOUT", | ||
"layers": [ | ||
[ | ||
"KC_NO", "LOPT(KC_SPACE)", "KC_NO" | ||
] | ||
], | ||
"config": { | ||
"tapping": { | ||
"term": 50 | ||
} | ||
} | ||
cjpais marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Footy | ||
|
||
 | ||
|
||
*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.* | ||
|
||
* Keyboard Maintainer: [CJ Pais](https://github.com/cjpais) | ||
* Hardware Supported: [Keebio Stampy](https://keeb.io/products/stampy-rp2040-usb-c-controller-board-for-handwiring) | ||
* Hardware Availability: [3D printed case](https://makerworld.com/en/models/1185240-footy) | ||
|
||
Make example for this keyboard (after setting up your build environment): | ||
|
||
make handwired/footy:default | ||
|
||
Flashing example for this keyboard (enter the bootloader first): | ||
|
||
make handwired/footy:default:flash | ||
|
||
or drag and drop .uf2 file on the removable storage | ||
|
||
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). | ||
|
||
## Bootloader | ||
|
||
Enter the bootloader: | ||
|
||
* **Physical reset button**: Briefly double press the button on the back of the PCB | ||
|
||
## Keymaps | ||
|
||
Right now there are two primary keymaps, one for 'handy' and one for 'superwhisper'. | ||
|
||
Handy's default keymap is for the center switch to be RCTRL + RGUI. | ||
|
||
Superwhisper's default keymap is for the center switch to be LOPT + SPACE. | ||
|
||
You can build either of these firmware images by running the following commands: | ||
|
||
``` | ||
make handwired/footy:handy | ||
make handwired/footy:superwhisper | ||
``` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.