[Keyboard] Adding TX_Roundup_Pad PCB (#23526)
Co-authored-by: jack <0x6a73@protonmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com>
This commit is contained in:
parent
5bb01794ee
commit
2420487e55
6 changed files with 139 additions and 0 deletions
54
keyboards/viktus/tx_roundup_pad/info.json
Normal file
54
keyboards/viktus/tx_roundup_pad/info.json
Normal file
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
"manufacturer": "Viktus Design LLC",
|
||||
"keyboard_name": "TX Roundup Pad",
|
||||
"maintainer": "BlindAssassin111",
|
||||
"build": {
|
||||
"lto": true
|
||||
},
|
||||
"development_board": "promicro",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["F7", "F6", "F5", "F4"],
|
||||
"rows": ["B5", "B4", "E6", "D7", "C6", "D4"]
|
||||
},
|
||||
"url": "https://viktus.design",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x5458",
|
||||
"vid": "0x5644"
|
||||
},
|
||||
"community_layouts": [ "numpad_6x4" ],
|
||||
"layouts": {
|
||||
"LAYOUT_numpad_6x4": {
|
||||
"layout": [
|
||||
{"label": "K00", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "K01", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "K02", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "K03", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "K10", "matrix": [1, 0], "x": 0, "y": 1},
|
||||
{"label": "K11", "matrix": [1, 1], "x": 1, "y": 1},
|
||||
{"label": "K12", "matrix": [1, 2], "x": 2, "y": 1},
|
||||
{"label": "K13", "matrix": [1, 3], "x": 3, "y": 1},
|
||||
{"label": "K20", "matrix": [2, 0], "x": 0, "y": 2},
|
||||
{"label": "K21", "matrix": [2, 1], "x": 1, "y": 2},
|
||||
{"label": "K22", "matrix": [2, 2], "x": 2, "y": 2},
|
||||
{"label": "K30", "matrix": [3, 0], "x": 0, "y": 3},
|
||||
{"label": "K31", "matrix": [3, 1], "x": 1, "y": 3},
|
||||
{"label": "K32", "matrix": [3, 2], "x": 2, "y": 3},
|
||||
{"label": "K23", "matrix": [2, 3], "x": 3, "y": 2, "h": 2},
|
||||
{"label": "K40", "matrix": [4, 0], "x": 0, "y": 4},
|
||||
{"label": "K41", "matrix": [4, 1], "x": 1, "y": 4},
|
||||
{"label": "K42", "matrix": [4, 2], "x": 2, "y": 4},
|
||||
{"label": "K51", "matrix": [5, 1], "x": 0, "y": 5, "w": 2},
|
||||
{"label": "K52", "matrix": [5, 2], "x": 2, "y": 5},
|
||||
{"label": "K53", "matrix": [5, 3], "x": 3, "y": 4, "h": 2}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
28
keyboards/viktus/tx_roundup_pad/keymaps/default/keymap.c
Normal file
28
keyboards/viktus/tx_roundup_pad/keymaps/default/keymap.c
Normal file
|
@ -0,0 +1,28 @@
|
|||
/* Copyright 2024 Viktus Design LLC
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT_numpad_6x4(
|
||||
KC_F1, KC_F2, KC_F3, KC_F4,
|
||||
KC_NUM, KC_PSLS, KC_PAST, KC_PMNS,
|
||||
KC_P7, KC_P8, KC_P9,
|
||||
KC_P4, KC_P5, KC_P6, KC_PPLS,
|
||||
KC_P1, KC_P2, KC_P3,
|
||||
KC_P0, KC_PDOT, KC_PENT
|
||||
)
|
||||
};
|
28
keyboards/viktus/tx_roundup_pad/keymaps/via/keymap.c
Normal file
28
keyboards/viktus/tx_roundup_pad/keymaps/via/keymap.c
Normal file
|
@ -0,0 +1,28 @@
|
|||
/* Copyright 2024 Viktus Design LLC
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT_numpad_6x4(
|
||||
KC_F1, KC_F2, KC_F3, KC_F4,
|
||||
KC_NUM, KC_PSLS, KC_PAST, KC_PMNS,
|
||||
KC_P7, KC_P8, KC_P9,
|
||||
KC_P4, KC_P5, KC_P6, KC_PPLS,
|
||||
KC_P1, KC_P2, KC_P3,
|
||||
KC_P0, KC_PDOT, KC_PENT
|
||||
)
|
||||
};
|
1
keyboards/viktus/tx_roundup_pad/keymaps/via/rules.mk
Normal file
1
keyboards/viktus/tx_roundup_pad/keymaps/via/rules.mk
Normal file
|
@ -0,0 +1 @@
|
|||
VIA_ENABLE = yes
|
27
keyboards/viktus/tx_roundup_pad/readme.md
Normal file
27
keyboards/viktus/tx_roundup_pad/readme.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
# TX Roundup Pad
|
||||
|
||||
![tx_roundup_pad](https://i.imgur.com/7O9CkPw.jpeg)
|
||||
|
||||
The PCB badge for the April 27, 2024 Texas Roundup meet in Dallas, Tx.
|
||||
|
||||
- Keyboard Maintainer: BlindAssassin111
|
||||
- Hardware Supported: TX Roundup Pad Badge PCB
|
||||
- Hardware Availability: At meetup only
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make viktus/tx_roundup_pad:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make viktus/tx_roundup_pad:default:flash
|
||||
|
||||
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 in 3 ways:
|
||||
|
||||
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
|
||||
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
|
||||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
|
1
keyboards/viktus/tx_roundup_pad/rules.mk
Normal file
1
keyboards/viktus/tx_roundup_pad/rules.mk
Normal file
|
@ -0,0 +1 @@
|
|||
# This file intentionally left blank
|
Loading…
Reference in a new issue