Compare commits
10 commits
fc55fcff3d
...
95e7df0b08
| Author | SHA1 | Date | |
|---|---|---|---|
| 95e7df0b08 | |||
|
|
7aed244aae | ||
|
|
880c0c8ee0 | ||
|
|
f31004ebec | ||
|
|
8f728aa731 | ||
|
|
45a5a94b96 | ||
|
|
bef5c95675 | ||
|
|
e5f47fa269 | ||
|
|
05ea735e86 | ||
|
|
35e62d236b |
24 changed files with 973 additions and 14 deletions
2
.github/workflows/format.yml
vendored
2
.github/workflows/format.yml
vendored
|
|
@ -36,7 +36,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: file_changes
|
||||
uses: tj-actions/changed-files@v46
|
||||
uses: tj-actions/changed-files@v47
|
||||
with:
|
||||
use_rest_api: true
|
||||
|
||||
|
|
|
|||
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
|
@ -27,7 +27,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: file_changes
|
||||
uses: tj-actions/changed-files@v46
|
||||
uses: tj-actions/changed-files@v47
|
||||
with:
|
||||
use_rest_api: true
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"license": "GPL-2.0-or-later",
|
||||
"devDependencies": {
|
||||
"vite": "^5.4.19",
|
||||
"vite": "^5.4.20",
|
||||
"vitepress": "^1.1.0",
|
||||
"vitepress-plugin-tabs": "^0.5.0",
|
||||
"vue": "^3.4.24"
|
||||
|
|
|
|||
|
|
@ -766,10 +766,10 @@ tabbable@^6.2.0:
|
|||
resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97"
|
||||
integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==
|
||||
|
||||
vite@^5.2.9, vite@^5.4.19:
|
||||
version "5.4.19"
|
||||
resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.19.tgz#20efd060410044b3ed555049418a5e7d1998f959"
|
||||
integrity sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==
|
||||
vite@^5.2.9, vite@^5.4.20:
|
||||
version "5.4.20"
|
||||
resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.20.tgz#3267a5e03f21212f44edfd72758138e8fcecd76a"
|
||||
integrity sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==
|
||||
dependencies:
|
||||
esbuild "^0.21.3"
|
||||
postcss "^8.4.43"
|
||||
|
|
|
|||
|
|
@ -203,8 +203,8 @@ See also: [Basic Keycodes](keycodes_basic)
|
|||
|`KC_WWW_STOP` |`KC_WSTP` |Browser Stop |✔ | |✔ |
|
||||
|`KC_WWW_REFRESH` |`KC_WREF` |Browser Refresh |✔ | |✔ |
|
||||
|`KC_WWW_FAVORITES` |`KC_WFAV` |Browser Favorites |✔ | |✔ |
|
||||
|`KC_MEDIA_FAST_FORWARD` |`KC_MFFD` |Next Track |✔ |✔<sup>5</sup>|✔ |
|
||||
|`KC_MEDIA_REWIND` |`KC_MRWD` |Previous Track |✔<sup>6</sup>|✔<sup>5</sup>|✔ |
|
||||
|`KC_MEDIA_FAST_FORWARD` |`KC_MFFD` |Fast Forward |✔ |✔<sup>5</sup>|✔ |
|
||||
|`KC_MEDIA_REWIND` |`KC_MRWD` |Rewind |✔<sup>6</sup>|✔<sup>5</sup>|✔ |
|
||||
|`KC_BRIGHTNESS_UP` |`KC_BRIU` |Brightness Up |✔ |✔ |✔ |
|
||||
|`KC_BRIGHTNESS_DOWN` |`KC_BRID` |Brightness Down |✔ |✔ |✔ |
|
||||
|`KC_CONTROL_PANEL` |`KC_CPNL` |Open Control Panel |✔ | | |
|
||||
|
|
|
|||
|
|
@ -219,8 +219,8 @@ Some of these keycodes may behave differently depending on the OS. For example,
|
|||
|`KC_WWW_STOP` |`KC_WSTP`|Browser Stop |
|
||||
|`KC_WWW_REFRESH` |`KC_WREF`|Browser Refresh |
|
||||
|`KC_WWW_FAVORITES` |`KC_WFAV`|Browser Favorites |
|
||||
|`KC_MEDIA_FAST_FORWARD`|`KC_MFFD`|Next Track |
|
||||
|`KC_MEDIA_REWIND` |`KC_MRWD`|Previous Track |
|
||||
|`KC_MEDIA_FAST_FORWARD`|`KC_MFFD`|Fast Forward |
|
||||
|`KC_MEDIA_REWIND` |`KC_MRWD`|Rewind |
|
||||
|`KC_BRIGHTNESS_UP` |`KC_BRIU`|Brightness Up |
|
||||
|`KC_BRIGHTNESS_DOWN` |`KC_BRID`|Brightness Down |
|
||||
|`KC_CONTROL_PANEL` |`KC_CPNL`|Open Control Panel |
|
||||
|
|
|
|||
65
keyboards/cata/keyboard.json
Normal file
65
keyboards/cata/keyboard.json
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
{
|
||||
"manufacturer": "Steven Karrmann",
|
||||
"keyboard_name": "Cata",
|
||||
"maintainer": "skarrmann",
|
||||
"bootloader": "rp2040",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["GP9", "GP10", "GP11", "GP12", "GP13", "GP14"],
|
||||
"rows": ["GP27", "GP5", "GP26", "GP6", "GP15", "GP7", "GP14", "GP8"]
|
||||
},
|
||||
"processor": "RP2040",
|
||||
"url": "https://github.com/skarrmann/cata",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0000",
|
||||
"vid": "0xFEED"
|
||||
},
|
||||
"community_layouts": ["split_3x5_2"],
|
||||
"layouts": {
|
||||
"LAYOUT_split_3x5_2": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"matrix": [1, 0], "x": 6, "y": 0},
|
||||
{"matrix": [1, 1], "x": 7, "y": 0},
|
||||
{"matrix": [1, 2], "x": 8, "y": 0},
|
||||
{"matrix": [1, 3], "x": 9, "y": 0},
|
||||
{"matrix": [1, 4], "x": 10, "y": 0},
|
||||
{"matrix": [2, 0], "x": 0, "y": 1},
|
||||
{"matrix": [2, 1], "x": 1, "y": 1},
|
||||
{"matrix": [2, 2], "x": 2, "y": 1},
|
||||
{"matrix": [2, 3], "x": 3, "y": 1},
|
||||
{"matrix": [2, 4], "x": 4, "y": 1},
|
||||
{"matrix": [3, 0], "x": 6, "y": 1},
|
||||
{"matrix": [3, 1], "x": 7, "y": 1},
|
||||
{"matrix": [3, 2], "x": 8, "y": 1},
|
||||
{"matrix": [3, 3], "x": 9, "y": 1},
|
||||
{"matrix": [3, 4], "x": 10, "y": 1},
|
||||
{"matrix": [4, 0], "x": 0, "y": 2},
|
||||
{"matrix": [4, 1], "x": 1, "y": 2},
|
||||
{"matrix": [4, 2], "x": 2, "y": 2},
|
||||
{"matrix": [4, 3], "x": 3, "y": 2},
|
||||
{"matrix": [4, 4], "x": 4, "y": 2},
|
||||
{"matrix": [5, 0], "x": 6, "y": 2},
|
||||
{"matrix": [5, 1], "x": 7, "y": 2},
|
||||
{"matrix": [5, 2], "x": 8, "y": 2},
|
||||
{"matrix": [5, 3], "x": 9, "y": 2},
|
||||
{"matrix": [5, 4], "x": 10, "y": 2},
|
||||
{"matrix": [6, 3], "x": 3, "y": 3},
|
||||
{"matrix": [6, 4], "x": 4, "y": 3},
|
||||
{"matrix": [7, 0], "x": 6, "y": 3},
|
||||
{"matrix": [7, 1], "x": 7, "y": 3}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
42
keyboards/cata/keymaps/default/keymap.c
Normal file
42
keyboards/cata/keymaps/default/keymap.c
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
// Copyright 2025 Steven Karrmann (@skarrmann)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
enum layer_names {
|
||||
_BASE,
|
||||
_SYMBOL,
|
||||
_NAVIGATION,
|
||||
_FUNCTION
|
||||
};
|
||||
|
||||
#define MO_SYM MO(_SYMBOL)
|
||||
#define MO_NAV MO(_NAVIGATION)
|
||||
#define MO_FUN MO(_FUNCTION)
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[_BASE] = LAYOUT_split_3x5_2(
|
||||
KC_Q , KC_W , KC_E , KC_R , KC_T , KC_Y , KC_U , KC_I , KC_O , KC_P ,
|
||||
KC_A , KC_S , KC_D , KC_F , KC_G , KC_H , KC_J , KC_K , KC_L , KC_QUOT,
|
||||
KC_Z , KC_X , KC_C , KC_V , KC_B , KC_N , KC_M , KC_COMM, KC_DOT , KC_SLSH,
|
||||
MO_NAV , KC_LSFT, KC_SPC , MO_SYM
|
||||
),
|
||||
[_SYMBOL] = LAYOUT_split_3x5_2(
|
||||
KC_SCLN, KC_LBRC, KC_RBRC, KC_5 , XXXXXXX, XXXXXXX, KC_6 , KC_MINS, KC_EQL , KC_GRV ,
|
||||
KC_1 , KC_2 , KC_3 , KC_4 , KC_BSLS, XXXXXXX, KC_7 , KC_8 , KC_9 , KC_0 ,
|
||||
OS_LGUI, OS_LALT, OS_LSFT, OS_LCTL, XXXXXXX, XXXXXXX, OS_RCTL, OS_RSFT, OS_RALT, OS_RGUI,
|
||||
MO_FUN , _______, _______, _______
|
||||
),
|
||||
[_NAVIGATION] = LAYOUT_split_3x5_2(
|
||||
KC_PSCR, KC_INS , KC_APP , KC_DEL , XXXXXXX, XXXXXXX, KC_HOME, KC_PGDN, KC_PGUP, KC_END ,
|
||||
KC_ESC , KC_TAB , KC_ENT , KC_BSPC, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP , KC_RGHT,
|
||||
OS_LGUI, OS_LALT, OS_LSFT, OS_LCTL, XXXXXXX, XXXXXXX, OS_RCTL, OS_RSFT, OS_RALT, OS_RGUI,
|
||||
_______, _______, _______, MO_FUN
|
||||
),
|
||||
[_FUNCTION] = LAYOUT_split_3x5_2(
|
||||
KC_F1 , KC_F2 , KC_F3 , KC_F4 , QK_BOOT, KC_SCRL, KC_F9 , KC_F10 , KC_F11 , KC_F12 ,
|
||||
KC_F5 , KC_F6 , KC_F7 , KC_F8 , XXXXXXX, KC_CAPS, KC_MUTE, KC_VOLD, KC_VOLU, KC_PAUS,
|
||||
OS_LGUI, OS_LALT, OS_LSFT, OS_LCTL, XXXXXXX, KC_NUM, OS_RCTL, OS_RSFT, OS_RALT, OS_RGUI,
|
||||
_______, _______, _______, _______
|
||||
),
|
||||
};
|
||||
27
keyboards/cata/readme.md
Normal file
27
keyboards/cata/readme.md
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Cata
|
||||
|
||||

|
||||
|
||||
Cata is a 34 key ortholinear keyboard, powered by a Waveshare RP2040-Zero.
|
||||
|
||||
* Keyboard Maintainer: [skarrmann](https://github.com/skarrmann)
|
||||
* Hardware Supported: Cata PCBs with RP2040-Zero
|
||||
* Hardware Availability: [Cata GitHub repository](https://github.com/skarrmann/cata)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make cata:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make cata: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 (the top left key) and plug in the keyboard.
|
||||
* **Physical reset button**: Double-tap the RESET button on the RP-2040 Zero (button on the right).
|
||||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available.
|
||||
39
keyboards/enmeseoz/enmepad3x4/keyboard.json
Normal file
39
keyboards/enmeseoz/enmepad3x4/keyboard.json
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"manufacturer": "ENMESEOZ",
|
||||
"keyboard_name": "ENMEPAD",
|
||||
"maintainer": "ENMESEOZ",
|
||||
"bootloader": "rp2040",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["GP26", "GP27", "GP28", "GP29"],
|
||||
"rows": ["GP3", "GP4", "GP5"]
|
||||
},
|
||||
"processor": "RP2040",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0000",
|
||||
"vid": "0xFEED"
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT_3x4": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"matrix": [1, 0], "x": 0, "y": 1},
|
||||
{"matrix": [1, 1], "x": 1, "y": 1},
|
||||
{"matrix": [1, 2], "x": 2, "y": 1},
|
||||
{"matrix": [1, 3], "x": 3, "y": 1},
|
||||
{"matrix": [2, 0], "x": 0, "y": 2},
|
||||
{"matrix": [2, 1], "x": 1, "y": 2},
|
||||
{"matrix": [2, 2], "x": 2, "y": 2},
|
||||
{"matrix": [2, 3], "x": 3, "y": 2}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
31
keyboards/enmeseoz/enmepad3x4/keymaps/default/keymap.c
Normal file
31
keyboards/enmeseoz/enmepad3x4/keymaps/default/keymap.c
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/* Copyright 2025 ENMESEOZ
|
||||
*
|
||||
* 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] = {
|
||||
|
||||
LAYOUT_3x4(
|
||||
KC_0, KC_1, KC_4, KC_7,
|
||||
KC_ENT, KC_2, KC_5, KC_8,
|
||||
MO(1), KC_3, KC_6, KC_9
|
||||
),
|
||||
LAYOUT_3x4(
|
||||
QK_BOOT, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
|
||||
)
|
||||
};
|
||||
25
keyboards/enmeseoz/enmepad3x4/readme.md
Normal file
25
keyboards/enmeseoz/enmepad3x4/readme.md
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# ENMEPAD 3x4
|
||||
|
||||
ENMEPAD3x4 a compact macropad controlled with rp2040.
|
||||
|
||||
* Keyboard Maintainer: [bkchqaeh](https://github.com/bkchqaeh)
|
||||
* Hardware Supported: *rp2040*
|
||||
* Hardware Availability: *Not available*
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make enmeseoz/enmepad3x4:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make enmeseoz/enmepad3x4: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
|
||||
20
keyboards/handwired/dactyl_manuform/5x7_2_6/config.h
Normal file
20
keyboards/handwired/dactyl_manuform/5x7_2_6/config.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
Copyright 2012 Jun Wako <wakojun@gmail.com> Nikolai Grigoriev @ngrigoriev
|
||||
|
||||
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/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#define EE_HANDS
|
||||
115
keyboards/handwired/dactyl_manuform/5x7_2_6/keyboard.json
Normal file
115
keyboards/handwired/dactyl_manuform/5x7_2_6/keyboard.json
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
{
|
||||
"manufacturer": "Nikolai Grigoriev",
|
||||
"keyboard_name": "Dactyl Manuform 5x7 2-key last row 6-key thumb cluster",
|
||||
"maintainer": "ngrigoriev",
|
||||
"build": {
|
||||
"lto": true
|
||||
},
|
||||
"development_board": "promicro",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": false,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["F5", "F6", "F7", "B1", "B3", "B2", "B6"],
|
||||
"rows": ["D4", "C6", "D7", "E6", "B4", "B5"]
|
||||
},
|
||||
"qmk": {
|
||||
"locking": {
|
||||
"enabled": true,
|
||||
"resync": true
|
||||
}
|
||||
},
|
||||
"split": {
|
||||
"enabled": true,
|
||||
"transport": {
|
||||
"protocol": "i2c"
|
||||
},
|
||||
"usb_detect": {
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
"url": "https://github.com/ngrigoriev/dactyl-manuform-5x7_2_6",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0000",
|
||||
"vid": "0xFEED"
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT_5x7_2_6": {
|
||||
"layout": [
|
||||
{"label": "KC_GRV", "matrix": [0, 0], "x": 0, "y": 0.5, "w": 1.5},
|
||||
{"label": "KC_1", "matrix": [0, 1], "x": 1.5, "y": 0.5},
|
||||
{"label": "KC_2", "matrix": [0, 2], "x": 2.5, "y": 0},
|
||||
{"label": "KC_3", "matrix": [0, 3], "x": 3.5, "y": 0},
|
||||
{"label": "KC_4", "matrix": [0, 4], "x": 4.5, "y": 0},
|
||||
{"label": "KC_5", "matrix": [0, 5], "x": 5.5, "y": 0},
|
||||
{"label": "KC_NO", "matrix": [0, 6], "x": 6.5, "y": 0},
|
||||
{"label": "KC_EQL", "matrix": [6, 0], "x": 12, "y": 0},
|
||||
{"label": "KC_6", "matrix": [6, 1], "x": 13, "y": 0},
|
||||
{"label": "KC_7", "matrix": [6, 2], "x": 14, "y": 0},
|
||||
{"label": "KC_8", "matrix": [6, 3], "x": 15, "y": 0},
|
||||
{"label": "KC_9", "matrix": [6, 4], "x": 16, "y": 0},
|
||||
{"label": "KC_0", "matrix": [6, 5], "x": 17, "y": 0.5},
|
||||
{"label": "KC_BSPC", "matrix": [6, 6], "x": 18, "y": 0.5, "w": 1.5},
|
||||
{"label": "KC_TAB", "matrix": [1, 0], "x": 0, "y": 1.5, "w": 1.5},
|
||||
{"label": "KC_Q", "matrix": [1, 1], "x": 1.5, "y": 1.5},
|
||||
{"label": "KC_W", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "KC_E", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "KC_R", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "KC_T", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "KC_NO", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "KC_MINUS", "matrix": [7, 0], "x": 12, "y": 1},
|
||||
{"label": "KC_Y", "matrix": [7, 1], "x": 13, "y": 1},
|
||||
{"label": "KC_U", "matrix": [7, 2], "x": 14, "y": 1},
|
||||
{"label": "KC_I", "matrix": [7, 3], "x": 15, "y": 1},
|
||||
{"label": "KC_O", "matrix": [7, 4], "x": 16, "y": 1},
|
||||
{"label": "KC_P", "matrix": [7, 5], "x": 17, "y": 1.5},
|
||||
{"label": "KC_BSLS", "matrix": [7, 6], "x": 18, "y": 1.5, "w": 1.5},
|
||||
{"label": "KC_LCTL", "matrix": [2, 0], "x": 0, "y": 2.5, "w": 1.5},
|
||||
{"label": "KC_A", "matrix": [2, 1], "x": 1.5, "y": 2.5},
|
||||
{"label": "KC_S", "matrix": [2, 2], "x": 2.5, "y": 2},
|
||||
{"label": "KC_D", "matrix": [2, 3], "x": 3.5, "y": 2},
|
||||
{"label": "KC_F", "matrix": [2, 4], "x": 4.5, "y": 2},
|
||||
{"label": "KC_G", "matrix": [2, 5], "x": 5.5, "y": 2},
|
||||
{"label": "KC_NO", "matrix": [2, 6], "x": 6.5, "y": 2},
|
||||
{"label": "KC_DEL", "matrix": [8, 0], "x": 12, "y": 2},
|
||||
{"label": "KC_H", "matrix": [8, 1], "x": 13, "y": 2},
|
||||
{"label": "KC_J", "matrix": [8, 2], "x": 14, "y": 2},
|
||||
{"label": "KC_K", "matrix": [8, 3], "x": 15, "y": 2},
|
||||
{"label": "KC_L", "matrix": [8, 4], "x": 16, "y": 2},
|
||||
{"label": "KC_SCLN", "matrix": [8, 5], "x": 17, "y": 2.5},
|
||||
{"label": "KC_RSFT", "matrix": [8, 6], "x": 18, "y": 2.5, "w": 1.5},
|
||||
{"label": "KC_LSFT", "matrix": [3, 0], "x": 0, "y": 3.5, "w": 1.5},
|
||||
{"label": "KC_Z", "matrix": [3, 1], "x": 1.5, "y": 3.5},
|
||||
{"label": "KC_X", "matrix": [3, 2], "x": 2.5, "y": 3},
|
||||
{"label": "KC_C", "matrix": [3, 3], "x": 3.5, "y": 3},
|
||||
{"label": "KC_V", "matrix": [3, 4], "x": 4.5, "y": 3},
|
||||
{"label": "KC_B", "matrix": [3, 5], "x": 5.5, "y": 3},
|
||||
{"label": "KC_N", "matrix": [9, 1], "x": 13, "y": 3},
|
||||
{"label": "KC_M", "matrix": [9, 2], "x": 14, "y": 3},
|
||||
{"label": "KC_COMM", "matrix": [9, 3], "x": 15, "y": 3},
|
||||
{"label": "KC_DOT", "matrix": [9, 4], "x": 16, "y": 3},
|
||||
{"label": "KC_SLSH", "matrix": [9, 5], "x": 17, "y": 3.5},
|
||||
{"label": "KC_RSFT", "matrix": [9, 6], "x": 18, "y": 3.5, "w": 1.5},
|
||||
{"label": "KC_PGUP", "matrix": [4, 2], "x": 2.5, "y": 4},
|
||||
{"label": "KC_PGDN", "matrix": [4, 3], "x": 3.5, "y": 4},
|
||||
{"label": "KC_LBRC", "matrix": [10, 3], "x": 15, "y": 4},
|
||||
{"label": "KC_RBRC", "matrix": [10, 4], "x": 16, "y": 4},
|
||||
{"label": "KC_LCTL", "matrix": [4, 4], "x": 5, "y": 5, "h": 1.5, "r": 30},
|
||||
{"label": "KC_ESC", "matrix": [4, 5], "x": 6, "y": 5, "h": 1.5, "r": 30},
|
||||
{"label": "KC_ENTER", "matrix": [10, 1], "x": 12.5, "y": 5, "h": 1.5, "r": -30},
|
||||
{"label": "KC_SPC", "matrix": [10, 2], "x": 13.5, "y": 5, "h": 1.5, "r": -30},
|
||||
{"label": "KC_UP", "matrix": [5, 5], "x": 7.5, "y": 6.5, "r": 45},
|
||||
{"label": "KC_DOWN", "matrix": [5, 3], "x": 8, "y": 7.5, "r": 45},
|
||||
{"label": "KC_LEFT", "matrix": [11, 3], "x": 10.5, "y": 7.5, "r": -45},
|
||||
{"label": "KC_RIGHT", "matrix": [11, 1], "x": 11, "y": 6.5, "r": -45},
|
||||
{"label": "KC_LCMD", "matrix": [5, 4], "x": 6.5, "y": 7, "r": 45},
|
||||
{"label": "KC_LALT", "matrix": [5, 2], "x": 7, "y": 8, "r": 45},
|
||||
{"label": "KC_RCTL", "matrix": [11, 4], "x": 11.5, "y": 8, "r": -45},
|
||||
{"label": "KC_RALT", "matrix": [11, 2], "x": 12, "y": 7, "r": -45}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,74 @@
|
|||
/* vim: noai:ts=4:sw=4:nowrap
|
||||
*/
|
||||
/*
|
||||
Copyright 2012 Jun Wako <wakojun@gmail.com> Nikolai Grigoriev @ngrigoriev
|
||||
|
||||
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
|
||||
|
||||
enum layers {
|
||||
_BASE,
|
||||
_MAGIC,
|
||||
_NUMPAD,
|
||||
_FN
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[_BASE] = LAYOUT_5x7_2_6(
|
||||
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, MO(_MAGIC), KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
|
||||
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, MO(_NUMPAD), KC_MINUS, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS,
|
||||
KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, _______, KC_DEL, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
||||
OSM(MOD_LSFT), KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, OSM(MOD_RSFT),
|
||||
KC_PGUP, KC_PGDN, KC_LBRC, KC_RBRC,
|
||||
KC_LCTL, LT(_FN, KC_ESC), KC_ENTER,KC_SPC,
|
||||
KC_UP, KC_DOWN, KC_LEFT, KC_RIGHT,
|
||||
KC_LCMD, KC_LALT, KC_RCTL, KC_RALT
|
||||
),
|
||||
|
||||
[_FN] = LAYOUT_5x7_2_6(
|
||||
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, MO(_MAGIC), _______, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
|
||||
_______, _______, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_F12,
|
||||
_______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, QK_BOOT, _______, KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
KC_MPRV, KC_MNXT, _______, _______,
|
||||
_______, _______, KC_DEL, _______,
|
||||
_______, _______, _______, _______,
|
||||
_______, _______, _______, _______
|
||||
),
|
||||
|
||||
[_NUMPAD] = LAYOUT_5x7_2_6(
|
||||
_______, _______, _______, _______, _______, _______, MO(_MAGIC), _______, _______, KC_NUM, _______, KC_PMNS, KC_PPLS, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, KC_P7, KC_P8, KC_P9, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_P4, KC_P5, KC_P6, KC_PAST, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, KC_P1, KC_P2, KC_P3, KC_PSLS, _______,
|
||||
_______, _______, KC_P0, KC_PDOT,
|
||||
_______, _______, _______, KC_PENT,
|
||||
_______, _______, _______, _______,
|
||||
_______, _______, _______, _______
|
||||
),
|
||||
|
||||
[_MAGIC] = LAYOUT_5x7_2_6(
|
||||
_______, _______, _______, _______, _______, _______, _______, CG_SWAP, _______, _______, _______, _______, _______, QK_REBOOT,
|
||||
_______, _______, _______, _______, _______, _______, _______, CG_NORM, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, QK_BOOTLOADER,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______,
|
||||
_______, _______, _______, _______,
|
||||
_______, _______, _______, _______,
|
||||
_______, _______, _______, _______
|
||||
)
|
||||
};
|
||||
|
||||
29
keyboards/handwired/dactyl_manuform/5x7_2_6/readme.md
Normal file
29
keyboards/handwired/dactyl_manuform/5x7_2_6/readme.md
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# handwired/dactyl_manuform/5x7_2_6
|
||||
|
||||

|
||||
|
||||
A standard Dactyl Manuform keyboard with 5x7 matrix, 6 thumb cluster keys. Last row has 2 keys only. Index column has 3 rows. The outer keys are 1,5u wide. [More info on https://github.com/ngrigoriev/dactyl-manuform-5x7_2_6](https://github.com/ngrigoriev/dactyl-manuform-5x7_2_6). Based on the original set of Dactyl Manuform keyboards created and maintaied by [Jack Humbert](https://github.com/jackhumbert).
|
||||
|
||||
This keyboard can be generated using one of Dactyl Manuform generators, such as (https://dactyl.mbugert.de/manuform).
|
||||
|
||||
* Keyboard Maintainer: [Nikolai Grigoriev](https://github.com/ngrigoriev)
|
||||
* Hardware Supported: Promicro
|
||||
* Hardware Availability: general DIY
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make handwired/dactyl_manuform/5x7_2_6:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make handwired/dactyl_manuform/5x7_2_6:default:flash
|
||||
|
||||
See the [build environment setup](getting_started_build_tools) and the [make instructions](getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](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
|
||||
|
|
@ -251,7 +251,7 @@
|
|||
{"label": "Alt", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "Space", "matrix": [4, 6], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "Alt", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.5},
|
||||
{"label": "Ctrl", "matrix": [4, 12], "x": 12, "y": 4, "w": 1.5},
|
||||
{"label": "Ctrl", "matrix": [4, 12], "x": 11.5, "y": 4, "w": 1.5},
|
||||
{"label": "\u2190", "matrix": [4, 13], "x": 13, "y": 4},
|
||||
{"label": "\u2193", "matrix": [4, 14], "x": 14, "y": 4},
|
||||
{"label": "\u2192", "matrix": [4, 15], "x": 15, "y": 4}
|
||||
|
|
@ -327,7 +327,7 @@
|
|||
{"label": "Alt", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "Space", "matrix": [4, 6], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "Alt", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.5},
|
||||
{"label": "Ctrl", "matrix": [4, 12], "x": 12, "y": 4, "w": 1.5},
|
||||
{"label": "Ctrl", "matrix": [4, 12], "x": 11.5, "y": 4, "w": 1.5},
|
||||
{"label": "\u2190", "matrix": [4, 13], "x": 13, "y": 4},
|
||||
{"label": "\u2193", "matrix": [4, 14], "x": 14, "y": 4},
|
||||
{"label": "\u2192", "matrix": [4, 15], "x": 15, "y": 4}
|
||||
|
|
|
|||
114
keyboards/leftpaw/keyboard.json
Normal file
114
keyboards/leftpaw/keyboard.json
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
{
|
||||
"manufacturer": "Ryan Chomistek",
|
||||
"keyboard_name": "leftpaw",
|
||||
"maintainer": "Ryan Chomistek",
|
||||
"bootloader": "rp2040",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["GP21", "GP22", "GP26", "GP0", "GP1", "GP2", "GP3", "GP4", "GP5", "GP6", "GP7", "GP8", "GP9", "GP10", "GP11", "GP12", "GP13", "GP14", "GP15"],
|
||||
"rows": ["GP20", "GP19", "GP18", "GP17", "GP16"]
|
||||
},
|
||||
"processor": "RP2040",
|
||||
"url": "https://github.com/RyanChomistek/lefty",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0000",
|
||||
"vid": "0xFEED"
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{"label": "Num Lock", "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": "esc", "matrix": [0, 4], "x": 4.25, "y": 0},
|
||||
{"label": "!", "matrix": [0, 5], "x": 5.25, "y": 0},
|
||||
{"label": "@", "matrix": [0, 6], "x": 6.25, "y": 0},
|
||||
{"label": "#", "matrix": [0, 7], "x": 7.25, "y": 0},
|
||||
{"label": "$", "matrix": [0, 8], "x": 8.25, "y": 0},
|
||||
{"label": "%", "matrix": [0, 9], "x": 9.25, "y": 0},
|
||||
{"label": "^", "matrix": [0, 10], "x": 10.25, "y": 0},
|
||||
{"label": "&", "matrix": [0, 11], "x": 11.25, "y": 0},
|
||||
{"label": "*", "matrix": [0, 12], "x": 12.25, "y": 0},
|
||||
{"label": "(", "matrix": [0, 13], "x": 13.25, "y": 0},
|
||||
{"label": ")", "matrix": [0, 14], "x": 14.25, "y": 0},
|
||||
{"label": "_", "matrix": [0, 15], "x": 15.25, "y": 0},
|
||||
{"label": "+", "matrix": [0, 16], "x": 16.25, "y": 0},
|
||||
{"label": "Backspace", "matrix": [0, 17], "x": 17.25, "y": 0, "w": 2},
|
||||
{"label": "Pg Up", "matrix": [0, 18], "x": 19.5, "y": 0},
|
||||
{"label": "7", "matrix": [1, 0], "x": 0, "y": 1},
|
||||
{"label": "8", "matrix": [1, 1], "x": 1, "y": 1},
|
||||
{"label": "9", "matrix": [1, 2], "x": 2, "y": 1},
|
||||
{"label": "+", "matrix": [1, 3], "x": 3, "y": 1, "h": 2},
|
||||
{"label": "Tab", "matrix": [1, 4], "x": 4.25, "y": 1, "w": 1.5},
|
||||
{"label": "Q", "matrix": [1, 5], "x": 5.75, "y": 1},
|
||||
{"label": "W", "matrix": [1, 6], "x": 6.75, "y": 1},
|
||||
{"label": "E", "matrix": [1, 7], "x": 7.75, "y": 1},
|
||||
{"label": "R", "matrix": [1, 8], "x": 8.75, "y": 1},
|
||||
{"label": "T", "matrix": [1, 9], "x": 9.75, "y": 1},
|
||||
{"label": "Y", "matrix": [1, 10], "x": 10.75, "y": 1},
|
||||
{"label": "U", "matrix": [1, 11], "x": 11.75, "y": 1},
|
||||
{"label": "I", "matrix": [1, 12], "x": 12.75, "y": 1},
|
||||
{"label": "O", "matrix": [1, 13], "x": 13.75, "y": 1},
|
||||
{"label": "P", "matrix": [1, 14], "x": 14.75, "y": 1},
|
||||
{"label": "{", "matrix": [1, 15], "x": 15.75, "y": 1},
|
||||
{"label": "}", "matrix": [1, 16], "x": 16.75, "y": 1},
|
||||
{"label": "|", "matrix": [1, 17], "x": 17.75, "y": 1, "w": 1.5},
|
||||
{"label": "Pg Dn", "matrix": [1, 18], "x": 19.5, "y": 1},
|
||||
{"label": "4", "matrix": [2, 0], "x": 0, "y": 2},
|
||||
{"label": "5", "matrix": [2, 1], "x": 1, "y": 2},
|
||||
{"label": "6", "matrix": [2, 2], "x": 2, "y": 2},
|
||||
{"label": "Caps Lock", "matrix": [2, 4], "x": 4.25, "y": 2, "w": 1.75},
|
||||
{"label": "A", "matrix": [2, 5], "x": 6, "y": 2},
|
||||
{"label": "S", "matrix": [2, 6], "x": 7, "y": 2},
|
||||
{"label": "D", "matrix": [2, 7], "x": 8, "y": 2},
|
||||
{"label": "F", "matrix": [2, 8], "x": 9, "y": 2},
|
||||
{"label": "G", "matrix": [2, 9], "x": 10, "y": 2},
|
||||
{"label": "H", "matrix": [2, 10], "x": 11, "y": 2},
|
||||
{"label": "J", "matrix": [2, 11], "x": 12, "y": 2},
|
||||
{"label": "K", "matrix": [2, 12], "x": 13, "y": 2},
|
||||
{"label": "L", "matrix": [2, 13], "x": 14, "y": 2},
|
||||
{"label": ":", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "\"", "matrix": [2, 15], "x": 16, "y": 2},
|
||||
{"label": "Enter", "matrix": [2, 17], "x": 17, "y": 2, "w": 2.25},
|
||||
{"label": "Delete", "matrix": [2, 18], "x": 19.5, "y": 2},
|
||||
{"label": "1", "matrix": [3, 0], "x": 0, "y": 3},
|
||||
{"label": "2", "matrix": [3, 1], "x": 1, "y": 3},
|
||||
{"label": "3", "matrix": [3, 2], "x": 2, "y": 3},
|
||||
{"label": "Enter", "matrix": [3, 3], "x": 3, "y": 3, "h": 2},
|
||||
{"label": "Shift", "matrix": [3, 4], "x": 4.25, "y": 3, "w": 2.25},
|
||||
{"label": "Z", "matrix": [3, 5], "x": 6.5, "y": 3},
|
||||
{"label": "X", "matrix": [3, 6], "x": 7.5, "y": 3},
|
||||
{"label": "C", "matrix": [3, 7], "x": 8.5, "y": 3},
|
||||
{"label": "V", "matrix": [3, 8], "x": 9.5, "y": 3},
|
||||
{"label": "B", "matrix": [3, 9], "x": 10.5, "y": 3},
|
||||
{"label": "N", "matrix": [3, 10], "x": 11.5, "y": 3},
|
||||
{"label": "M", "matrix": [3, 11], "x": 12.5, "y": 3},
|
||||
{"label": "<", "matrix": [3, 12], "x": 13.5, "y": 3},
|
||||
{"label": ">", "matrix": [3, 13], "x": 14.5, "y": 3},
|
||||
{"label": "?", "matrix": [3, 14], "x": 15.5, "y": 3},
|
||||
{"label": "Shift", "matrix": [3, 16], "x": 16.5, "y": 3, "w": 1.5},
|
||||
{"label": "\u2191", "matrix": [3, 17], "x": 18.5, "y": 3.25},
|
||||
{"label": "0", "matrix": [4, 0], "x": 0, "y": 4, "w": 2},
|
||||
{"label": ".", "matrix": [4, 2], "x": 2, "y": 4},
|
||||
{"label": "Ctrl", "matrix": [4, 4], "x": 4.25, "y": 4, "w": 1.25},
|
||||
{"label": "Win", "matrix": [4, 5], "x": 5.5, "y": 4, "w": 1.25},
|
||||
{"label": "Alt", "matrix": [4, 6], "x": 6.75, "y": 4, "w": 1.25},
|
||||
{"matrix": [4, 9], "x": 8, "y": 4, "w": 6.25},
|
||||
{"label": "Alt", "matrix": [4, 13], "x": 14.25, "y": 4},
|
||||
{"label": "Win", "matrix": [4, 14], "x": 15.25, "y": 4},
|
||||
{"label": "Ctrl", "matrix": [4, 15], "x": 16.25, "y": 4},
|
||||
{"label": "\u2190", "matrix": [4, 16], "x": 17.5, "y": 4.25},
|
||||
{"label": "\u2193", "matrix": [4, 17], "x": 18.5, "y": 4.25},
|
||||
{"label": "\u2192", "matrix": [4, 18], "x": 19.5, "y": 4.25}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
38
keyboards/leftpaw/keymaps/default/keymap.c
Normal file
38
keyboards/leftpaw/keymaps/default/keymap.c
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
/* Copyright 2025 Ryan Chomistek
|
||||
*
|
||||
* 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(
|
||||
// 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
KC_NUM, KC_KP_SLASH, KC_KP_ASTERISK, KC_KP_MINUS, KC_ESCAPE, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINUS, KC_EQUAL, KC_BSPC, KC_GRAVE,
|
||||
KC_KP_7, KC_KP_8, KC_KP_9, KC_KP_PLUS, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_PGDN,
|
||||
KC_KP_4, KC_KP_5, KC_KP_6, MO(1), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOTE, KC_ENTER, KC_DELETE,
|
||||
KC_KP_1, KC_KP_2, KC_KP_3, KC_KP_ENTER, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMMA, KC_DOT, KC_SLASH, KC_RSFT, KC_UP,
|
||||
KC_KP_0, KC_KP_DOT, KC_LCTL, KC_LWIN, KC_LALT, KC_SPACE, KC_RALT, KC_RWIN, KC_RCTL, KC_LEFT, KC_DOWN, KC_RIGHT
|
||||
),
|
||||
[1] = LAYOUT(
|
||||
// 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_GRAVE, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_TRNS, KC_PGUP,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLD, KC_KB_MUTE, KC_VOLU, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PGDN,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MPRV, KC_MPLY, KC_MNXT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
|
||||
),
|
||||
|
||||
};
|
||||
25
keyboards/leftpaw/readme.md
Normal file
25
keyboards/leftpaw/readme.md
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# leftpaw
|
||||
|
||||
A 76% keyboard with a numpad on the left hand side
|
||||
|
||||
* Keyboard Maintainer: [Ryan Chomistek](https://github.com/RyanChomistek)
|
||||
* Hardware Supported: RP2040
|
||||
* Hardware Availability: [PCB Files](https://github.com/RyanChomistek/lefty) and [Case Files](https://www.printables.com/model/1310397-leftpaw-keyboard)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make leftpaw:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make leftpaw: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
|
||||
273
keyboards/linworks/fave10xs/keyboard.json
Normal file
273
keyboards/linworks/fave10xs/keyboard.json
Normal file
|
|
@ -0,0 +1,273 @@
|
|||
{
|
||||
"manufacturer": "Lx3",
|
||||
"keyboard_name": "Fave10xS",
|
||||
"maintainer": "Freather",
|
||||
"bootloader": "stm32-dfu",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["B10", "A6", "A7", "B0", "B1", "B2", "A13", "B12", "B13", "B14", "B15", "A8", "A9", "A10", "A15", "B3", "B4", "C13", "C14", "C15", "F0"],
|
||||
"rows": ["A14", "B5", "B7", "B8", "F1", "A0"]
|
||||
},
|
||||
"indicators": {
|
||||
"caps_lock": "B11",
|
||||
"scroll_lock": "B9",
|
||||
"num_lock": "B6"
|
||||
},
|
||||
"processor": "STM32F072",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0100",
|
||||
"vid": "0x4C58"
|
||||
},
|
||||
"community_layouts": ["fullsize_extended_ansi"],
|
||||
"layouts": {
|
||||
"LAYOUT_fullsize_extended_ansi": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"matrix": [0, 6], "x": 6.5, "y": 0},
|
||||
{"matrix": [0, 7], "x": 7.5, "y": 0},
|
||||
{"matrix": [0, 8], "x": 8.5, "y": 0},
|
||||
{"matrix": [0, 9], "x": 9.5, "y": 0},
|
||||
{"matrix": [0, 10], "x": 11, "y": 0},
|
||||
{"matrix": [0, 11], "x": 12, "y": 0},
|
||||
{"matrix": [0, 12], "x": 13, "y": 0},
|
||||
{"matrix": [0, 13], "x": 14, "y": 0},
|
||||
{"matrix": [0, 14], "x": 15.25, "y": 0},
|
||||
{"matrix": [0, 15], "x": 16.25, "y": 0},
|
||||
{"matrix": [0, 16], "x": 17.25, "y": 0},
|
||||
{"matrix": [0, 17], "x": 18.5, "y": 0},
|
||||
{"matrix": [0, 18], "x": 19.5, "y": 0},
|
||||
{"matrix": [0, 19], "x": 20.5, "y": 0},
|
||||
{"matrix": [0, 20], "x": 21.5, "y": 0},
|
||||
|
||||
{"matrix": [1, 0], "x": 0, "y": 1.25},
|
||||
{"matrix": [1, 1], "x": 1, "y": 1.25},
|
||||
{"matrix": [1, 2], "x": 2, "y": 1.25},
|
||||
{"matrix": [1, 3], "x": 3, "y": 1.25},
|
||||
{"matrix": [1, 4], "x": 4, "y": 1.25},
|
||||
{"matrix": [1, 5], "x": 5, "y": 1.25},
|
||||
{"matrix": [1, 6], "x": 6, "y": 1.25},
|
||||
{"matrix": [1, 7], "x": 7, "y": 1.25},
|
||||
{"matrix": [1, 8], "x": 8, "y": 1.25},
|
||||
{"matrix": [1, 9], "x": 9, "y": 1.25},
|
||||
{"matrix": [1, 10], "x": 10, "y": 1.25},
|
||||
{"matrix": [1, 11], "x": 11, "y": 1.25},
|
||||
{"matrix": [1, 12], "x": 12, "y": 1.25},
|
||||
{"matrix": [1, 13], "x": 13, "y": 1.25, "w": 2},
|
||||
{"matrix": [1, 14], "x": 15.25, "y": 1.25},
|
||||
{"matrix": [1, 15], "x": 16.25, "y": 1.25},
|
||||
{"matrix": [1, 16], "x": 17.25, "y": 1.25},
|
||||
{"matrix": [1, 17], "x": 18.5, "y": 1.25},
|
||||
{"matrix": [1, 18], "x": 19.5, "y": 1.25},
|
||||
{"matrix": [1, 19], "x": 20.5, "y": 1.25},
|
||||
{"matrix": [1, 20], "x": 21.5, "y": 1.25},
|
||||
|
||||
{"matrix": [2, 0], "x": 0, "y": 2.25, "w": 1.5},
|
||||
{"matrix": [2, 1], "x": 1.5, "y": 2.25},
|
||||
{"matrix": [2, 2], "x": 2.5, "y": 2.25},
|
||||
{"matrix": [2, 3], "x": 3.5, "y": 2.25},
|
||||
{"matrix": [2, 4], "x": 4.5, "y": 2.25},
|
||||
{"matrix": [2, 5], "x": 5.5, "y": 2.25},
|
||||
{"matrix": [2, 6], "x": 6.5, "y": 2.25},
|
||||
{"matrix": [2, 7], "x": 7.5, "y": 2.25},
|
||||
{"matrix": [2, 8], "x": 8.5, "y": 2.25},
|
||||
{"matrix": [2, 9], "x": 9.5, "y": 2.25},
|
||||
{"matrix": [2, 10], "x": 10.5, "y": 2.25},
|
||||
{"matrix": [2, 11], "x": 11.5, "y": 2.25},
|
||||
{"matrix": [2, 12], "x": 12.5, "y": 2.25},
|
||||
{"matrix": [3, 13], "x": 13.5, "y": 2.25, "w": 1.5},
|
||||
{"matrix": [2, 14], "x": 15.25, "y": 2.25},
|
||||
{"matrix": [2, 15], "x": 16.25, "y": 2.25},
|
||||
{"matrix": [2, 16], "x": 17.25, "y": 2.25},
|
||||
{"matrix": [2, 17], "x": 18.5, "y": 2.25},
|
||||
{"matrix": [2, 18], "x": 19.5, "y": 2.25},
|
||||
{"matrix": [2, 19], "x": 20.5, "y": 2.25},
|
||||
{"matrix": [2, 20], "x": 21.5, "y": 2.25, "h": 2},
|
||||
|
||||
{"matrix": [3, 0], "x": 0, "y": 3.25, "w": 1.75},
|
||||
{"matrix": [3, 1], "x": 1.75, "y": 3.25},
|
||||
{"matrix": [3, 2], "x": 2.75, "y": 3.25},
|
||||
{"matrix": [3, 3], "x": 3.75, "y": 3.25},
|
||||
{"matrix": [3, 4], "x": 4.75, "y": 3.25},
|
||||
{"matrix": [3, 5], "x": 5.75, "y": 3.25},
|
||||
{"matrix": [3, 6], "x": 6.75, "y": 3.25},
|
||||
{"matrix": [3, 7], "x": 7.75, "y": 3.25},
|
||||
{"matrix": [3, 8], "x": 8.75, "y": 3.25},
|
||||
{"matrix": [3, 9], "x": 9.75, "y": 3.25},
|
||||
{"matrix": [3, 10], "x": 10.75, "y": 3.25},
|
||||
{"matrix": [3, 11], "x": 11.75, "y": 3.25},
|
||||
{"matrix": [3, 12], "x": 12.75, "y": 3.25, "w": 2.25},
|
||||
{"matrix": [3, 17], "x": 18.5, "y": 3.25},
|
||||
{"matrix": [3, 18], "x": 19.5, "y": 3.25},
|
||||
{"matrix": [3, 19], "x": 20.5, "y": 3.25},
|
||||
|
||||
{"matrix": [4, 0], "x": 0, "y": 4.25, "w": 2.25},
|
||||
{"matrix": [4, 2], "x": 2.25, "y": 4.25},
|
||||
{"matrix": [4, 3], "x": 3.25, "y": 4.25},
|
||||
{"matrix": [4, 4], "x": 4.25, "y": 4.25},
|
||||
{"matrix": [4, 5], "x": 5.25, "y": 4.25},
|
||||
{"matrix": [4, 6], "x": 6.25, "y": 4.25},
|
||||
{"matrix": [4, 7], "x": 7.25, "y": 4.25},
|
||||
{"matrix": [4, 8], "x": 8.25, "y": 4.25},
|
||||
{"matrix": [4, 9], "x": 9.25, "y": 4.25},
|
||||
{"matrix": [4, 10], "x": 10.25, "y": 4.25},
|
||||
{"matrix": [4, 11], "x": 11.25, "y": 4.25},
|
||||
{"matrix": [4, 12], "x": 12.25, "y": 4.25, "w": 2.75},
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
{"matrix": [4, 17], "x": 18.5, "y": 4.25},
|
||||
{"matrix": [4, 18], "x": 19.5, "y": 4.25},
|
||||
{"matrix": [4, 19], "x": 20.5, "y": 4.25},
|
||||
{"matrix": [4, 20], "x": 21.5, "y": 4.25, "h": 2},
|
||||
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 1], "x": 1.25, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 6], "x": 3.75, "y": 5.25, "w": 6.25},
|
||||
{"matrix": [5, 10], "x": 10, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 11], "x": 11.25, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 12], "x": 12.5, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 13], "x": 13.75, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 14], "x": 15.25, "y": 5.25},
|
||||
{"matrix": [5, 15], "x": 16.25, "y": 5.25},
|
||||
{"matrix": [5, 16], "x": 17.25, "y": 5.25},
|
||||
{"matrix": [5, 17], "x": 18.5, "y": 5.25, "w": 2},
|
||||
{"matrix": [5, 19], "x": 20.5, "y": 5.25}
|
||||
]
|
||||
},
|
||||
"LAYOUT_all": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"matrix": [0, 6], "x": 6.5, "y": 0},
|
||||
{"matrix": [0, 7], "x": 7.5, "y": 0},
|
||||
{"matrix": [0, 8], "x": 8.5, "y": 0},
|
||||
{"matrix": [0, 9], "x": 9.5, "y": 0},
|
||||
{"matrix": [0, 10], "x": 11, "y": 0},
|
||||
{"matrix": [0, 11], "x": 12, "y": 0},
|
||||
{"matrix": [0, 12], "x": 13, "y": 0},
|
||||
{"matrix": [0, 13], "x": 14, "y": 0},
|
||||
{"matrix": [0, 14], "x": 15.25, "y": 0},
|
||||
{"matrix": [0, 15], "x": 16.25, "y": 0},
|
||||
{"matrix": [0, 16], "x": 17.25, "y": 0},
|
||||
{"matrix": [0, 17], "x": 18.5, "y": 0},
|
||||
{"matrix": [0, 18], "x": 19.5, "y": 0},
|
||||
{"matrix": [0, 19], "x": 20.5, "y": 0},
|
||||
{"matrix": [0, 20], "x": 21.5, "y": 0},
|
||||
|
||||
{"matrix": [1, 0], "x": 0, "y": 1.25},
|
||||
{"matrix": [1, 1], "x": 1, "y": 1.25},
|
||||
{"matrix": [1, 2], "x": 2, "y": 1.25},
|
||||
{"matrix": [1, 3], "x": 3, "y": 1.25},
|
||||
{"matrix": [1, 4], "x": 4, "y": 1.25},
|
||||
{"matrix": [1, 5], "x": 5, "y": 1.25},
|
||||
{"matrix": [1, 6], "x": 6, "y": 1.25},
|
||||
{"matrix": [1, 7], "x": 7, "y": 1.25},
|
||||
{"matrix": [1, 8], "x": 8, "y": 1.25},
|
||||
{"matrix": [1, 9], "x": 9, "y": 1.25},
|
||||
{"matrix": [1, 10], "x": 10, "y": 1.25},
|
||||
{"matrix": [1, 11], "x": 11, "y": 1.25},
|
||||
{"matrix": [1, 12], "x": 12, "y": 1.25},
|
||||
{"matrix": [1, 13], "x": 13, "y": 1.25},
|
||||
{"matrix": [2, 13], "x": 14, "y": 1.25},
|
||||
{"matrix": [1, 14], "x": 15.25, "y": 1.25},
|
||||
{"matrix": [1, 15], "x": 16.25, "y": 1.25},
|
||||
{"matrix": [1, 16], "x": 17.25, "y": 1.25},
|
||||
{"matrix": [1, 17], "x": 18.5, "y": 1.25},
|
||||
{"matrix": [1, 18], "x": 19.5, "y": 1.25},
|
||||
{"matrix": [1, 19], "x": 20.5, "y": 1.25},
|
||||
{"matrix": [1, 20], "x": 21.5, "y": 1.25},
|
||||
|
||||
{"matrix": [2, 0], "x": 0, "y": 2.25, "w": 1.5},
|
||||
{"matrix": [2, 1], "x": 1.5, "y": 2.25},
|
||||
{"matrix": [2, 2], "x": 2.5, "y": 2.25},
|
||||
{"matrix": [2, 3], "x": 3.5, "y": 2.25},
|
||||
{"matrix": [2, 4], "x": 4.5, "y": 2.25},
|
||||
{"matrix": [2, 5], "x": 5.5, "y": 2.25},
|
||||
{"matrix": [2, 6], "x": 6.5, "y": 2.25},
|
||||
{"matrix": [2, 7], "x": 7.5, "y": 2.25},
|
||||
{"matrix": [2, 8], "x": 8.5, "y": 2.25},
|
||||
{"matrix": [2, 9], "x": 9.5, "y": 2.25},
|
||||
{"matrix": [2, 10], "x": 10.5, "y": 2.25},
|
||||
{"matrix": [2, 11], "x": 11.5, "y": 2.25},
|
||||
{"matrix": [2, 12], "x": 12.5, "y": 2.25},
|
||||
{"matrix": [3, 13], "x": 13.5, "y": 2.25, "w": 1.5},
|
||||
{"matrix": [2, 14], "x": 15.25, "y": 2.25},
|
||||
{"matrix": [2, 15], "x": 16.25, "y": 2.25},
|
||||
{"matrix": [2, 16], "x": 17.25, "y": 2.25},
|
||||
{"matrix": [2, 17], "x": 18.5, "y": 2.25},
|
||||
{"matrix": [2, 18], "x": 19.5, "y": 2.25},
|
||||
{"matrix": [2, 19], "x": 20.5, "y": 2.25},
|
||||
{"matrix": [2, 20], "x": 21.5, "y": 2.25},
|
||||
|
||||
{"matrix": [3, 0], "x": 0, "y": 3.25, "w": 1.75},
|
||||
{"matrix": [3, 1], "x": 1.75, "y": 3.25},
|
||||
{"matrix": [3, 2], "x": 2.75, "y": 3.25},
|
||||
{"matrix": [3, 3], "x": 3.75, "y": 3.25},
|
||||
{"matrix": [3, 4], "x": 4.75, "y": 3.25},
|
||||
{"matrix": [3, 5], "x": 5.75, "y": 3.25},
|
||||
{"matrix": [3, 6], "x": 6.75, "y": 3.25},
|
||||
{"matrix": [3, 7], "x": 7.75, "y": 3.25},
|
||||
{"matrix": [3, 8], "x": 8.75, "y": 3.25},
|
||||
{"matrix": [3, 9], "x": 9.75, "y": 3.25},
|
||||
{"matrix": [3, 10], "x": 10.75, "y": 3.25},
|
||||
{"matrix": [3, 11], "x": 11.75, "y": 3.25},
|
||||
{"matrix": [3, 12], "x": 12.75, "y": 3.25, "w": 2.25},
|
||||
{"matrix": [3, 17], "x": 18.5, "y": 3.25},
|
||||
{"matrix": [3, 18], "x": 19.5, "y": 3.25},
|
||||
{"matrix": [3, 19], "x": 20.5, "y": 3.25},
|
||||
{"matrix": [3, 20], "x": 21.5, "y": 3.25},
|
||||
|
||||
{"matrix": [4, 0], "x": 0, "y": 4.25, "w": 1.25},
|
||||
{"matrix": [4, 1], "x": 1.25, "y": 4.25},
|
||||
{"matrix": [4, 2], "x": 2.25, "y": 4.25},
|
||||
{"matrix": [4, 3], "x": 3.25, "y": 4.25},
|
||||
{"matrix": [4, 4], "x": 4.25, "y": 4.25},
|
||||
{"matrix": [4, 5], "x": 5.25, "y": 4.25},
|
||||
{"matrix": [4, 6], "x": 6.25, "y": 4.25},
|
||||
{"matrix": [4, 7], "x": 7.25, "y": 4.25},
|
||||
{"matrix": [4, 8], "x": 8.25, "y": 4.25},
|
||||
{"matrix": [4, 9], "x": 9.25, "y": 4.25},
|
||||
{"matrix": [4, 10], "x": 10.25, "y": 4.25},
|
||||
{"matrix": [4, 11], "x": 11.25, "y": 4.25},
|
||||
{"matrix": [4, 12], "x": 12.25, "y": 4.25, "w": 1.75},
|
||||
{"matrix": [4, 13], "x": 14, "y": 4.25},
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
{"matrix": [4, 17], "x": 18.5, "y": 4.25},
|
||||
{"matrix": [4, 18], "x": 19.5, "y": 4.25},
|
||||
{"matrix": [4, 19], "x": 20.5, "y": 4.25},
|
||||
{"matrix": [4, 20], "x": 21.5, "y": 4.25},
|
||||
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 1], "x": 1.25, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 4], "x": 3.75, "y": 5.25, "w": 2.25},
|
||||
{"matrix": [5, 6], "x": 6, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 8], "x": 7.25, "y": 5.25, "w": 2.75},
|
||||
{"matrix": [5, 10], "x": 10, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 11], "x": 11.25, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 12], "x": 12.5, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 13], "x": 13.75, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 14], "x": 15.25, "y": 5.25},
|
||||
{"matrix": [5, 15], "x": 16.25, "y": 5.25},
|
||||
{"matrix": [5, 16], "x": 17.25, "y": 5.25},
|
||||
{"matrix": [5, 17], "x": 18.5, "y": 5.25},
|
||||
{"matrix": [5, 18], "x": 19.5, "y": 5.25},
|
||||
{"matrix": [5, 19], "x": 20.5, "y": 5.25},
|
||||
{"matrix": [5, 20], "x": 21.5, "y": 5.25}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
15
keyboards/linworks/fave10xs/keymaps/default/keymap.c
Normal file
15
keyboards/linworks/fave10xs/keymaps/default/keymap.c
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// Copyright 2023 QMK
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT_all(
|
||||
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SCRL, KC_PAUS, KC_MNXT, KC_MPRV, KC_VOLU, KC_VOLD,
|
||||
KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_TILD, KC_INS, KC_HOME, KC_PGUP, KC_NUM, KC_PSLS, KC_PAST, KC_PMNS,
|
||||
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_END, KC_PGDN, KC_P7, KC_P8, KC_P9, KC_PPLS,
|
||||
KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_P4, KC_P5, KC_P6, KC_PENT,
|
||||
KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_RSFT, KC_UP, KC_P1, KC_P2, KC_P3, KC_PENT,
|
||||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT, KC_P0, KC_P0, KC_PDOT, KC_PCMM
|
||||
)
|
||||
};
|
||||
27
keyboards/linworks/fave10xs/readme.md
Normal file
27
keyboards/linworks/fave10xs/readme.md
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# fave10xs
|
||||
|
||||

|
||||
|
||||
Dolphin max PCB solder version Fave10xs
|
||||
|
||||
* Keyboard Maintainer: [Freather](https://github.com/Freather)
|
||||
* Hardware Supported: STM32F072 Linworks Fave10xs PCB
|
||||
* Hardware Availability: small gb ran in Asia
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make linworks/fave10xs:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make linworks/fave10xs: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**: Hold the button on the back of the PCB then plug in the PCB with USB cable
|
||||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
|
||||
|
|
@ -65,7 +65,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|||
KC_TAB , KC_Q , KC_W , KC_E , KC_R , KC_T , KC_Y, KC_U , KC_I , KC_O , KC_P , KC_BSPC,
|
||||
CTL_ESC , KC_A , KC_S , KC_D , KC_F , KC_G , KC_H, KC_J , KC_K , KC_L ,KC_SCLN,CTL_QUOT,
|
||||
KC_LSFT , KC_Z , KC_X , KC_C , KC_V , KC_B , KC_LBRC,KC_CAPS, FKEYS , KC_RBRC, KC_N, KC_M ,KC_COMM, KC_DOT ,KC_SLSH, KC_RSFT,
|
||||
ADJUST , KC_LGUI, ALT_ENT, KC_SPC , NAV , SYM , KC_SPC ,KC_RALT, KC_RGUI, KC_APP
|
||||
ADJUST , KC_LGUI, ALT_ENT, KC_SPC , NAV , LT(_SYM, KC_ENTER), KC_SPC ,KC_RALT, KC_RGUI, KC_APP
|
||||
),
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue