Compare commits
24 Commits
Author | SHA1 | Date | |
---|---|---|---|
13f7b68240 | |||
53f1e3b11f | |||
89b46eedd5 | |||
0b0c31665e | |||
7e03877924 | |||
31d28ba228 | |||
a474cac2c3 | |||
b02abcb9a6 | |||
b514a591f3 | |||
90811118b7 | |||
fc20e0b014 | |||
420b13468b | |||
2505d7edd0 | |||
cc08f230ff | |||
83b84187ea | |||
15ed59cacc | |||
fae6b85640 | |||
2d5cfd3ecf | |||
a1d29982dc | |||
08711e1cf7 | |||
0e9e2963ca | |||
1e304433e5 | |||
b5b886e36f | |||
5031e0e35c |
2
.github/workflows/format.yml
vendored
2
.github/workflows/format.yml
vendored
@ -35,7 +35,7 @@ jobs:
|
||||
|
||||
- name: Get changed files
|
||||
id: file_changes
|
||||
uses: tj-actions/changed-files@v40
|
||||
uses: tj-actions/changed-files@v41
|
||||
|
||||
- name: Run qmk formatters
|
||||
shell: 'bash {0}'
|
||||
|
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@v40
|
||||
uses: tj-actions/changed-files@v41
|
||||
|
||||
- name: Print info
|
||||
run: |
|
||||
|
@ -125,7 +125,7 @@ At the top of the file you'll find this:
|
||||
|
||||
These are some handy definitions we can use when building our keymap and our custom function. The `GRAVE_MODS` definition will be used later in our custom function, and the following `_BL`, `_FL`, and `_CL` defines make it easier to refer to each of our layers.
|
||||
|
||||
Note: You may also find some older keymap files may also have a define(s) for `_______` and/or `XXXXXXX`. These can be used in place for `KC_TRNS` and `KC_NO` respectively, making it easier to see what keys a layer is overriding. These definitions are now unecessary, as they are included by default.
|
||||
Note: You may also find some older keymap files may also have a define(s) for `_______` and/or `XXXXXXX`. These can be used in place for `KC_TRNS` and `KC_NO` respectively, making it easier to see what keys a layer is overriding. These definitions are now unnecessary, as they are included by default.
|
||||
|
||||
### Layers and Keymaps
|
||||
|
||||
|
@ -39,12 +39,13 @@ If there are any inconsistencies with these recommendations, you're best off [cr
|
||||
|
||||
## Keymap PRs
|
||||
|
||||
!> Note that personal keymap submissions will no longer be accepted. This section applies to manufacturer-supported keymaps.
|
||||
!> Note that personal keymap submissions will no longer be accepted. This section applies to manufacturer-supported keymaps. Please see this [issue](https://github.com/qmk/qmk_firmware/issues/22724) for more information.
|
||||
|
||||
- `#include QMK_KEYBOARD_H` preferred to including specific board files
|
||||
- prefer layer `enum`s to `#define`s
|
||||
- custom keycode `enum`s must have first entry `= SAFE_RANGE`
|
||||
- terminating backslash (`\`) in lines of LAYOUT macro parameters is superfluous and should be removed
|
||||
- PRs for vendor specific keymaps will be permitted. The naming convention for these should be `default_${vendor}`, `via_${vendor}` i.e. `via_clueboard`.
|
||||
- vendor specific keymaps do not necessarily need to be "vanilla" and can be more richly featured than `default` or `via` stock keymaps.
|
||||
- #include QMK_KEYBOARD_H preferred to including specific board files
|
||||
- prefer layer enums to #defines
|
||||
- custom keycode enums must have first entry = SAFE_RANGE
|
||||
- some care with spacing (e.g., alignment on commas or first char of keycodes) makes for a much nicer-looking keymap
|
||||
|
||||
## Keyboard PRs
|
||||
|
20
keyboards/4pplet/waffling60/rev_e_iso/config.h
Normal file
20
keyboards/4pplet/waffling60/rev_e_iso/config.h
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
Copyright 2023 Stefan Sundin "4pplet" <mail@4pplet.com>
|
||||
|
||||
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 WS2812_EXTERNAL_PULLUP
|
||||
|
408
keyboards/4pplet/waffling60/rev_e_iso/info.json
Normal file
408
keyboards/4pplet/waffling60/rev_e_iso/info.json
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,40 @@
|
||||
/*
|
||||
Copyright 2023 Stefan Sundin "4pplet" <4pplet@protonmail.com>
|
||||
|
||||
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] = {
|
||||
// main layer
|
||||
[0] = LAYOUT_all(
|
||||
KC_ESC, 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_NO, KC_BSPC,
|
||||
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_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT,
|
||||
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, MO(1),
|
||||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL),
|
||||
// basic function layer
|
||||
[1] = LAYOUT_all(
|
||||
QK_BOOT, 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_DEL,
|
||||
KC_TRNS, KC_TRNS, KC_UP, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_LEFT, KC_DOWN, KC_RIGHT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_NUHS, 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)
|
||||
};
|
||||
#if defined(ENCODER_MAP_ENABLE)
|
||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
|
||||
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
|
||||
[1] = { ENCODER_CCW_CW(KC_BRID, KC_BRIU) }
|
||||
};
|
||||
#endif
|
@ -0,0 +1 @@
|
||||
ENCODER_MAP_ENABLE = yes
|
41
keyboards/4pplet/waffling60/rev_e_iso/keymaps/via/keymap.c
Normal file
41
keyboards/4pplet/waffling60/rev_e_iso/keymaps/via/keymap.c
Normal file
@ -0,0 +1,41 @@
|
||||
/*
|
||||
Copyright 2023 Stefan Sundin "4pplet" <4pplet@protonmail.com>
|
||||
|
||||
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] = {
|
||||
// main layer
|
||||
[0] = LAYOUT_all(
|
||||
KC_ESC, 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_BSLS, KC_BSPC,
|
||||
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_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT,
|
||||
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, MO(1),
|
||||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL),
|
||||
// basic function layer
|
||||
[1] = LAYOUT_all(
|
||||
QK_BOOT, 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_DEL,
|
||||
KC_TRNS, KC_TRNS, KC_UP, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_LEFT, KC_DOWN, KC_RIGHT, 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),
|
||||
};
|
||||
|
||||
#if defined(ENCODER_MAP_ENABLE)
|
||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
|
||||
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
|
||||
[1] = { ENCODER_CCW_CW(KC_BRID, KC_BRIU) }
|
||||
};
|
||||
#endif
|
@ -0,0 +1,2 @@
|
||||
VIA_ENABLE = yes
|
||||
ENCODER_MAP_ENABLE = yes
|
24
keyboards/4pplet/waffling60/rev_e_iso/matrix_diagram.md
Normal file
24
keyboards/4pplet/waffling60/rev_e_iso/matrix_diagram.md
Normal file
@ -0,0 +1,24 @@
|
||||
# Matrix Diagram for 4pplet Waffling60 Rev E ISO
|
||||
|
||||
```
|
||||
┌───────┐
|
||||
2u Backspace │1D │
|
||||
└───────┘
|
||||
┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐
|
||||
│00 │01 │02 │03 │04 │05 │06 │07 │08 │09 │0A │0B │0C │0D │1D │
|
||||
├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤
|
||||
│10 │11 │12 │13 │14 │15 │16 │17 │18 │19 │1A │1B │1C │ │
|
||||
├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐2D │
|
||||
│20 │21 │22 │23 │24 │25 │26 │27 │28 │29 │2A │2B │2C │ │
|
||||
├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┤
|
||||
│30 │31 │32 │33 │34 │35 │36 │37 │38 │39 │3A │3B │3C │3D │
|
||||
├────┴┬──┴┬──┴──┬┴───┴───┴──┬┴──┬┴───┴───┴──┬┴───┴┬───┬─┴───┤
|
||||
│40 │41 │42 │44 │46 │48 │4B │4C │4D │
|
||||
└─────┴───┴─────┴───────────┴───┴───────────┴─────┴───┴─────┘
|
||||
┌─────┬───┬─────┬───────────────────────────┬─────┬───┬─────┐
|
||||
│40 │41 │42 │46 │4B │4C │4D │ Tsangan/WKL/HHKB
|
||||
└─────┴───┴─────┴───────────────────────────┴─────┴───┴─────┘
|
||||
┌─────┬───┬───────────────────────────────────────┬───┬─────┐
|
||||
│40 │41 │46 │4C │4D │ 10u Spacebar
|
||||
└─────┴───┴───────────────────────────────────────┴───┴─────┘
|
||||
```
|
26
keyboards/4pplet/waffling60/rev_e_iso/readme.md
Normal file
26
keyboards/4pplet/waffling60/rev_e_iso/readme.md
Normal file
@ -0,0 +1,26 @@
|
||||
# waffling60 Rev. E ISO
|
||||
|
||||
A 60% PCB for MX switches, one hot swap and one solder-pcb version with decent layout support. Revision E adds underglow and rotary encoder support.
|
||||
|
||||
More info: https://github.com/4pplet/waffling60
|
||||
|
||||
* Keyboard Maintainer: [4pplet](https://github.com/4pplet)
|
||||
* Hardware Supported: [waffling60](https://github.com/4pplet/waffling60)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make 4pplet/waffling60/rev_e_iso:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make 4pplet/waffling60/rev_e_iso: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
|
||||
|
||||
How to enter bootloader (DFU):
|
||||
* Short the reset-header (labled BL/RESET) on the back of the PCB for about 2 seconds for the keyboard to enter DFU. When in DFU, it's ready to flash the firmware. If using a APM MCU it will not automatically reset after flash. Simply short the reset-header for a very short time to just reset the PCB, alternatively unplug and repluck the USB-cable to the keyboard.
|
||||
|
||||
Alternative option if the firmware is already pre-flashed:
|
||||
* Unplug your keyboard, hold down the Spacebar and B at the same time, plug in your keyboard and wait a second before releasing the keys. The keyboard will enter DFU and is ready to flash the firmware.
|
2
keyboards/4pplet/waffling60/rev_e_iso/rules.mk
Normal file
2
keyboards/4pplet/waffling60/rev_e_iso/rules.mk
Normal file
@ -0,0 +1,2 @@
|
||||
# Wildcard to allow APM32 MCU
|
||||
DFU_SUFFIX_ARGS = -p FFFF -v FFFF
|
@ -20,8 +20,8 @@ qmk compile -kb bastardkb/skeletyl/{VERSION}/elitec -km {KEYMAP}
|
||||
| --------------- | --------------------------------------------------------------- | ----------------------------------------------------------- |
|
||||
| v1 (Elite-C) | `qmk compile -kb bastardkb/skeletyl/v1/elitec -km default` | `qmk compile -kb bastardkb/skeletyl/v1/elitec -km via` |
|
||||
| v2 (Elite-C) | `qmk compile -kb bastardkb/skeletyl/v2/elitec -km default` | `qmk compile -kb bastardkb/skeletyl/v2/elitec -km via` |
|
||||
| v2 (Splinky v2) | `qmk compile -kb bastardkb/skeletyl/v2/splinky/v2 -km default` | `qmk compile -kb bastardkb/skeletyl/v2/splinky/v2 -km via` |
|
||||
| v2 (Splinky v3) | `qmk compile -kb bastardkb/skeletyl/v2/splinky/v3 -km default` | `qmk compile -kb bastardkb/skeletyl/v2/splinky/v3 -km via` |
|
||||
| v2 (Splinky v2) | `qmk compile -kb bastardkb/skeletyl/v2/splinky_2 -km default` | `qmk compile -kb bastardkb/skeletyl/v2/splinky_2 -km via` |
|
||||
| v2 (Splinky v3) | `qmk compile -kb bastardkb/skeletyl/v2/splinky_3 -km default` | `qmk compile -kb bastardkb/skeletyl/v2/splinky_3 -km via` |
|
||||
| v2 (STeMCell) | `qmk compile -kb bastardkb/skeletyl/v2/stemcell -km default` | `qmk compile -kb bastardkb/skeletyl/v2/stemcell -km via` |
|
||||
|
||||
This keyboard is made to be used with the Miryoku layout, do not use the default keymap.
|
||||
|
@ -1,12 +0,0 @@
|
||||
# Default Via keyboard for the Corne R2G by Mechboards UK
|
||||
|
||||

|
||||
|
||||
Corne R2G is an eddition of the classic CRKBD by footsan remade to feature a full smd assembly
|
||||
|
||||
In this fold can be found the default via enabled keymap that can be in conjunction
|
||||
|
||||
Flash example for this Keymap:
|
||||
```sh
|
||||
qmk flash -kb crkbd/r2g -km mb_via
|
||||
```
|
10
keyboards/crkbd/keymaps/via_mechboards/readme.md
Normal file
10
keyboards/crkbd/keymaps/via_mechboards/readme.md
Normal file
@ -0,0 +1,10 @@
|
||||
# Default Via keymap for the Corne R2G by Mechboards UK
|
||||
|
||||
Corne R2G is an edition of the classic CRKBD by foostan remade to feature full smd assembly
|
||||
|
||||
In this folder can be found the default via enabled keymap that can be in conjunction with the mechboards R2G PCB.
|
||||
|
||||
Flash example for this Keymap:
|
||||
```sh
|
||||
qmk flash -kb crkbd/r2g -km via_mechboards
|
||||
```
|
12
keyboards/darmoshark/k3/config.h
Normal file
12
keyboards/darmoshark/k3/config.h
Normal file
@ -0,0 +1,12 @@
|
||||
// Copyright 2023 Proceee
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
/* SPI Config for spi flash*/
|
||||
#define SPI_DRIVER SPIDQ
|
||||
#define SPI_SCK_PIN B3
|
||||
#define SPI_MOSI_PIN B5
|
||||
#define SPI_MISO_PIN B4
|
||||
#define SPI_MOSI_PAL_MODE 5
|
||||
|
||||
#define EXTERNAL_FLASH_SPI_SLAVE_SELECT_PIN C12
|
10
keyboards/darmoshark/k3/halconf.h
Normal file
10
keyboards/darmoshark/k3/halconf.h
Normal file
@ -0,0 +1,10 @@
|
||||
// Copyright 2023 Proceee
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#define HAL_USE_SPI TRUE
|
||||
#define SPI_USE_WAIT TRUE
|
||||
#define SPI_SELECT_MODE SPI_SELECT_MODE_PAD
|
||||
|
||||
#include_next <halconf.h>
|
183
keyboards/darmoshark/k3/info.json
Normal file
183
keyboards/darmoshark/k3/info.json
Normal file
@ -0,0 +1,183 @@
|
||||
{
|
||||
"manufacturer": "Darmoshark",
|
||||
"keyboard_name": "K3 QMK",
|
||||
"maintainer": "Proceee",
|
||||
"url": "",
|
||||
"processor": "WB32FQ95",
|
||||
"bootloader": "wb32-dfu",
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"vid": "0xC001",
|
||||
"pid": "0x3667",
|
||||
"suspend_wakeup_delay": 1000
|
||||
},
|
||||
"diode_direction": "ROW2COL",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"command": false,
|
||||
"console": false,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true,
|
||||
"rgb_matrix": true
|
||||
},
|
||||
"eeprom": {
|
||||
"driver": "wear_leveling",
|
||||
"wear_leveling": {
|
||||
"driver": "spi_flash",
|
||||
"backing_size": 4096
|
||||
}
|
||||
},
|
||||
"matrix_pins": {
|
||||
"rows": ["B13", "A1", "A2", "A3", "A4", "B7"],
|
||||
"cols": ["B1", "C7", "C13", "B9"]
|
||||
},
|
||||
"indicators": {
|
||||
"num_lock": "C5",
|
||||
"on_state": 1
|
||||
},
|
||||
"ws2812": {
|
||||
"pin": "A8"
|
||||
},
|
||||
"rgb_matrix": {
|
||||
"driver": "ws2812",
|
||||
"default":{
|
||||
"val": 80
|
||||
},
|
||||
"sleep": true,
|
||||
"center_point": [24, 32],
|
||||
"max_brightness": 140,
|
||||
"animations": {
|
||||
"solid_color": true,
|
||||
"alphas_mods": true,
|
||||
"gradient_up_down": true,
|
||||
"gradient_left_right": true,
|
||||
"breathing": true,
|
||||
"band_sat": true,
|
||||
"band_val": true,
|
||||
"band_pinwheel_sat": true,
|
||||
"band_pinwheel_val": true,
|
||||
"band_spiral_sat": true,
|
||||
"band_spiral_val": true,
|
||||
"cycle_all": true,
|
||||
"cycle_left_right": true,
|
||||
"cycle_up_down": true,
|
||||
"cycle_out_in": true,
|
||||
"cycle_out_in_dual": true,
|
||||
"rainbow_moving_chevron": true,
|
||||
"cycle_pinwheel": true,
|
||||
"cycle_spiral": true,
|
||||
"dual_beacon": true,
|
||||
"rainbow_beacon": true,
|
||||
"rainbow_pinwheels": true,
|
||||
"raindrops": true,
|
||||
"jellybean_raindrops": true,
|
||||
"hue_breathing": true,
|
||||
"hue_pendulum": true,
|
||||
"hue_wave": true,
|
||||
"pixel_fractal": true,
|
||||
"pixel_flow": true,
|
||||
"pixel_rain": true,
|
||||
"typing_heatmap": true,
|
||||
"digital_rain": true,
|
||||
"solid_reactive_simple": true,
|
||||
"solid_reactive": true,
|
||||
"solid_reactive_wide": true,
|
||||
"solid_reactive_multiwide": true,
|
||||
"solid_reactive_cross": true,
|
||||
"solid_reactive_multicross": true,
|
||||
"solid_reactive_nexus": true,
|
||||
"solid_reactive_multinexus": true,
|
||||
"splash": true,
|
||||
"multisplash": true,
|
||||
"solid_splash": true,
|
||||
"solid_multisplash": true
|
||||
},
|
||||
"layout": [
|
||||
{ "flags": 4, "matrix":[0,2], "x": 32, "y": 0},
|
||||
{ "flags": 4, "matrix":[0,3], "x": 48, "y": 0},
|
||||
|
||||
{ "flags": 4, "matrix":[1,3], "x": 48, "y": 13},
|
||||
{ "flags": 4, "matrix":[2,3], "x": 48, "y": 26},
|
||||
{ "flags": 4, "matrix":[4,3], "x": 48, "y": 51},
|
||||
|
||||
{ "flags": 4, "matrix":[5,2], "x": 48, "y": 64},
|
||||
{ "flags": 4, "matrix":[4,2], "x": 32, "y": 51},
|
||||
{ "flags": 4, "matrix":[3,2], "x": 32, "y": 38},
|
||||
{ "flags": 4, "matrix":[2,2], "x": 32, "y": 26},
|
||||
{ "flags": 4, "matrix":[1,2], "x": 32, "y": 13},
|
||||
|
||||
{ "flags": 4, "matrix":[1,1], "x": 16, "y": 13},
|
||||
{ "flags": 4, "matrix":[2,1], "x": 16, "y": 26},
|
||||
{ "flags": 4, "matrix":[3,1], "x": 16, "y": 38},
|
||||
{ "flags": 4, "matrix":[4,1], "x": 16, "y": 51},
|
||||
|
||||
{ "flags": 4, "matrix":[5,1], "x": 0, "y": 64},
|
||||
{ "flags": 4, "matrix":[4,0], "x": 0, "y": 51},
|
||||
{ "flags": 4, "matrix":[3,0], "x": 0, "y": 38},
|
||||
{ "flags": 4, "matrix":[2,0], "x": 0, "y": 26},
|
||||
{ "flags": 4, "matrix":[1,0], "x": 0, "y": 13},
|
||||
{ "flags": 4, "matrix":[0,0], "x": 0, "y": 0},
|
||||
|
||||
{ "flags": 4, "matrix":[0,1], "x": 16, "y": 0},
|
||||
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64},
|
||||
{ "flags": 4, "x": 224, "y": 64}
|
||||
]
|
||||
},
|
||||
"community_layouts": ["numpad_6x4"],
|
||||
"layouts": {
|
||||
"LAYOUT_numpad_6x4": {
|
||||
"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":[3,0], "x": 0, "y": 3 },
|
||||
{ "matrix":[3,1], "x": 1, "y": 3 },
|
||||
{ "matrix":[3,2], "x": 2, "y": 3 },
|
||||
{ "matrix":[2,3], "x": 3, "y": 2, "h": 2 },
|
||||
|
||||
{ "matrix":[4,0], "x": 0, "y": 4 },
|
||||
{ "matrix":[4,1], "x": 1, "y": 4 },
|
||||
{ "matrix":[4,2], "x": 2, "y": 4 },
|
||||
|
||||
{ "matrix":[5,1], "x": 0, "y": 5, "w": 2 },
|
||||
{ "matrix":[5,2], "x": 2, "y": 5 },
|
||||
{ "matrix":[4,3], "x": 3, "y": 4, "h": 2 }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
25
keyboards/darmoshark/k3/keymaps/default/keymap.c
Normal file
25
keyboards/darmoshark/k3/keymaps/default/keymap.c
Normal file
@ -0,0 +1,25 @@
|
||||
// Copyright 2023 Proceee
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
[0] = LAYOUT_numpad_6x4(
|
||||
KC_ESC, KC_TAB, KC_BSPC, MO(1),
|
||||
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] = LAYOUT_numpad_6x4(
|
||||
EE_CLR, _______, RGB_MOD, _______,
|
||||
KC_CALC, _______, _______, RGB_VAD,
|
||||
_______, RGB_SPI, _______,
|
||||
_______, _______, _______, RGB_VAI,
|
||||
_______, RGB_SPD, _______,
|
||||
_______, RGB_TOG, _______
|
||||
)
|
||||
};
|
6
keyboards/darmoshark/k3/keymaps/via/config.h
Normal file
6
keyboards/darmoshark/k3/keymaps/via/config.h
Normal file
@ -0,0 +1,6 @@
|
||||
// Copyright 2023 JoyLee (@itarze)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#define DYNAMIC_KEYMAP_LAYER_COUNT 6
|
25
keyboards/darmoshark/k3/keymaps/via/keymap.c
Normal file
25
keyboards/darmoshark/k3/keymaps/via/keymap.c
Normal file
@ -0,0 +1,25 @@
|
||||
// Copyright 2023 Proceee
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
[0] = LAYOUT_numpad_6x4(
|
||||
KC_ESC, KC_TAB, KC_BSPC, MO(1),
|
||||
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] = LAYOUT_numpad_6x4(
|
||||
EE_CLR, _______, RGB_MOD, _______,
|
||||
KC_CALC, _______, _______, RGB_VAD,
|
||||
_______, RGB_SPI, _______,
|
||||
_______, _______, _______, RGB_VAI,
|
||||
_______, RGB_SPD, _______,
|
||||
_______, RGB_TOG, _______
|
||||
)
|
||||
};
|
1
keyboards/darmoshark/k3/keymaps/via/rules.mk
Normal file
1
keyboards/darmoshark/k3/keymaps/via/rules.mk
Normal file
@ -0,0 +1 @@
|
||||
VIA_ENABLE = yes
|
9
keyboards/darmoshark/k3/mcuconf.h
Normal file
9
keyboards/darmoshark/k3/mcuconf.h
Normal file
@ -0,0 +1,9 @@
|
||||
// Copyright 2023 Proceee
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include_next <mcuconf.h>
|
||||
|
||||
#undef WB32_SPI_USE_QSPI
|
||||
#define WB32_SPI_USE_QSPI TRUE
|
23
keyboards/darmoshark/k3/readme.md
Normal file
23
keyboards/darmoshark/k3/readme.md
Normal file
@ -0,0 +1,23 @@
|
||||
# K3 QMK
|
||||
|
||||
* Keyboard Maintainer: [Proceee](https://github.com/Proceee)
|
||||
* Hardware Supported: [Darmoshark](http://www.Darmoshark.cn)
|
||||
* Hardware Availability: [Darmoshark](http://www.Darmoshark.cn)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make darmoshark/k3:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make darmoshark/k3: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/darmoshark/k3/rules.mk
Normal file
1
keyboards/darmoshark/k3/rules.mk
Normal file
@ -0,0 +1 @@
|
||||
# This file intentionally left blank
|
6
keyboards/handwired/rd_61_qmk/config.h
Normal file
6
keyboards/handwired/rd_61_qmk/config.h
Normal file
@ -0,0 +1,6 @@
|
||||
// Copyright 2023 abhiakl (@abhijithabhiakl)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
#pragma once
|
||||
|
||||
/* QK_MAKE support*/
|
||||
#define ENABLE_COMPILE_KEYCODE
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user