mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-08-13 03:52:27 +00:00
Compare commits
19 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
49a1a12a32 | ||
![]() |
fb598e7e61 | ||
![]() |
c0d57a6826 | ||
![]() |
1a284f2b92 | ||
![]() |
f25624dca4 | ||
![]() |
035dcf213c | ||
![]() |
7446c6ea7d | ||
![]() |
ff21363627 | ||
![]() |
c2dd0c1845 | ||
![]() |
13a87ad354 | ||
![]() |
c82f675266 | ||
![]() |
e12c1fefdf | ||
![]() |
6a73c8299b | ||
![]() |
6374bad540 | ||
![]() |
b78118b2dd | ||
![]() |
015cd23616 | ||
![]() |
f18a699393 | ||
![]() |
4d6337539d | ||
![]() |
17fac880bf |
2
.github/workflows/docs.yml
vendored
2
.github/workflows/docs.yml
vendored
@@ -56,7 +56,7 @@ jobs:
|
||||
|
||||
- name: Deploy
|
||||
if: ${{ github.event_name == 'push' && github.repository == 'qmk/qmk_firmware' }}
|
||||
uses: JamesIves/github-pages-deploy-action@v4.6.4
|
||||
uses: JamesIves/github-pages-deploy-action@v4.6.8
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
branch: gh-pages
|
||||
|
File diff suppressed because it is too large
Load Diff
32
keyboards/atset/at2/keyboard.json
Normal file
32
keyboards/atset/at2/keyboard.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"manufacturer": "Atset",
|
||||
"keyboard_name": "AT2",
|
||||
"maintainer": "qmk",
|
||||
"board": "GENERIC_RP_RP2040",
|
||||
"processor": "RP2040",
|
||||
"bootloader": "rp2040",
|
||||
"diode_direction": "COL2ROW",
|
||||
"usb": {
|
||||
"vid": "0x4141",
|
||||
"pid": "0x6174",
|
||||
"device_version": "1.0.0"
|
||||
},
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["GP19", "GP20"],
|
||||
"rows": ["GP28"]
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"matrix": [0, 1], "x": 1, "y": 0}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
10
keyboards/atset/at2/keymaps/default/keymap.c
Normal file
10
keyboards/atset/at2/keymaps/default/keymap.c
Normal file
@@ -0,0 +1,10 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT(
|
||||
KC_MUTE, KC_MPLY
|
||||
)
|
||||
};
|
||||
|
24
keyboards/atset/at2/readme.md
Normal file
24
keyboards/atset/at2/readme.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# ATSET AT2
|
||||
|
||||
A special 2 key keyboard powered by QMK.
|
||||
|
||||
* Keyboard Maintainer: [ATSET](https://github.com/anubhavd7)
|
||||
* Hardware Supported: ATSET AT2 (https://imgur.com/a/yBbVwef)
|
||||
https://www.atsetmediscience.com/atset-at2-9949007.html
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make atset/at2:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make atset/at2: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/deemen17/de80/config.h
Normal file
20
keyboards/deemen17/de80/config.h
Normal file
@@ -0,0 +1,20 @@
|
||||
/* Copyright 2024 Deemen17 <https://github.com/Deemen17>
|
||||
*
|
||||
* 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_SPI_DRIVER SPID2
|
||||
#define WS2812_SPI_USE_CIRCULAR_BUFFER
|
22
keyboards/deemen17/de80/halconf.h
Normal file
22
keyboards/deemen17/de80/halconf.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/* Copyright 2022 QMK
|
||||
*
|
||||
* 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 HAL_USE_SPI TRUE
|
||||
|
||||
#include_next <halconf.h>
|
||||
|
893
keyboards/deemen17/de80/keyboard.json
Normal file
893
keyboards/deemen17/de80/keyboard.json
Normal file
@@ -0,0 +1,893 @@
|
||||
{
|
||||
"manufacturer": "Deemen17",
|
||||
"keyboard_name": "DE80",
|
||||
"maintainer": "Deemen17",
|
||||
"bootloader": "uf2boot",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true,
|
||||
"rgblight": true,
|
||||
"encoder": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"rows": ["A8", "A10", "A9", "B11", "C14", "C13"],
|
||||
"cols": ["B14", "B13", "B12", "B2", "B1", "B0", "A7", "A6", "A5", "A4", "A3", "A2", "A1", "A0", "A15", "B7", "B6"]
|
||||
},
|
||||
"processor": "STM32F103",
|
||||
"usb": {
|
||||
"vid": "0xDE17",
|
||||
"pid": "0x80F1",
|
||||
"device_version": "1.0.0"
|
||||
},
|
||||
"indicators": {
|
||||
"caps_lock": "B10",
|
||||
"scroll_lock": "B3"
|
||||
},
|
||||
"rgblight": {
|
||||
"animations": {
|
||||
"alternating": true,
|
||||
"breathing": true,
|
||||
"christmas": true,
|
||||
"knight": true,
|
||||
"rainbow_mood": true,
|
||||
"rainbow_swirl": true,
|
||||
"rgb_test": true,
|
||||
"snake": true,
|
||||
"static_gradient": true,
|
||||
"twinkle": true
|
||||
},
|
||||
"led_count": 40,
|
||||
"max_brightness": 250,
|
||||
"sleep": true
|
||||
},
|
||||
"ws2812": {
|
||||
"driver": "spi",
|
||||
"pin": "B15"
|
||||
},
|
||||
"encoder": {
|
||||
"rotary": [
|
||||
{"pin_a": "B5", "pin_b": "B4"}
|
||||
]
|
||||
},
|
||||
"layout_aliases": {
|
||||
"LAYOUT_all": "LAYOUT_tkl_f13_ansi_tsangan_split_bs_rshift"
|
||||
},
|
||||
"community_layouts": ["tkl_ansi_tsangan", "tkl_ansi_tsangan_split_bs_rshift", "tkl_ansi_wkl", "tkl_ansi_wkl_split_bs_rshift", "tkl_f13_ansi_tsangan", "tkl_f13_ansi_tsangan_split_bs_rshift", "tkl_f13_ansi_wkl", "tkl_f13_ansi_wkl_split_bs_rshift" ],
|
||||
"layouts": {
|
||||
"LAYOUT_tkl_ansi_tsangan": {
|
||||
"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": [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": [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": [2, 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": [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, 13], "x": 12.75, "y": 3.25, "w": 2.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, 13], "x": 12.25, "y": 4.25, "w": 2.75},
|
||||
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 1], "x": 1.5, "y": 5.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 6], "x": 4, "y": 5.25, "w": 7},
|
||||
{"matrix": [5, 11], "x": 11, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 12], "x": 12.5, "y": 5.25},
|
||||
{"matrix": [5, 13], "x": 13.5, "y": 5.25, "w": 1.5},
|
||||
|
||||
{"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}
|
||||
]
|
||||
},
|
||||
"LAYOUT_tkl_ansi_tsangan_split_bs_rshift": {
|
||||
"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": [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": [3, 12], "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": [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": [2, 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": [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, 13], "x": 12.75, "y": 3.25, "w": 2.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": 1.75},
|
||||
{"matrix": [4, 13], "x": 14, "y": 4.25},
|
||||
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 1], "x": 1.5, "y": 5.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 6], "x": 4, "y": 5.25, "w": 7},
|
||||
{"matrix": [5, 11], "x": 11, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 12], "x": 12.5, "y": 5.25},
|
||||
{"matrix": [5, 13], "x": 13.5, "y": 5.25, "w": 1.5},
|
||||
|
||||
{"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}
|
||||
]
|
||||
},
|
||||
"LAYOUT_tkl_f13_ansi_tsangan": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
|
||||
{"matrix": [0, 1], "x": 1.25, "y": 0},
|
||||
{"matrix": [0, 2], "x": 2.25, "y": 0},
|
||||
{"matrix": [0, 3], "x": 3.25, "y": 0},
|
||||
{"matrix": [0, 4], "x": 4.25, "y": 0},
|
||||
|
||||
{"matrix": [0, 5], "x": 5.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.75, "y": 0},
|
||||
{"matrix": [0, 10], "x": 10.75, "y": 0},
|
||||
{"matrix": [0, 11], "x": 11.75, "y": 0},
|
||||
{"matrix": [0, 12], "x": 12.75, "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": [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": [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": [2, 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": [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, 13], "x": 12.75, "y": 3.25, "w": 2.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, 13], "x": 12.25, "y": 4.25, "w": 2.75},
|
||||
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 1], "x": 1.5, "y": 5.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 6], "x": 4, "y": 5.25, "w": 7},
|
||||
{"matrix": [5, 11], "x": 11, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 12], "x": 12.5, "y": 5.25},
|
||||
{"matrix": [5, 13], "x": 13.5, "y": 5.25, "w": 1.5},
|
||||
|
||||
{"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}
|
||||
]
|
||||
},
|
||||
"LAYOUT_tkl_f13_ansi_tsangan_split_bs_rshift": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
|
||||
{"matrix": [0, 1], "x": 1.25, "y": 0},
|
||||
{"matrix": [0, 2], "x": 2.25, "y": 0},
|
||||
{"matrix": [0, 3], "x": 3.25, "y": 0},
|
||||
{"matrix": [0, 4], "x": 4.25, "y": 0},
|
||||
|
||||
{"matrix": [0, 5], "x": 5.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.75, "y": 0},
|
||||
{"matrix": [0, 10], "x": 10.75, "y": 0},
|
||||
{"matrix": [0, 11], "x": 11.75, "y": 0},
|
||||
{"matrix": [0, 12], "x": 12.75, "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": [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": [3, 12], "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": [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": [2, 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": [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, 13], "x": 12.75, "y": 3.25, "w": 2.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": 1.75},
|
||||
{"matrix": [4, 13], "x": 14, "y": 4.25},
|
||||
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 1], "x": 1.5, "y": 5.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 6], "x": 4, "y": 5.25, "w": 7},
|
||||
{"matrix": [5, 11], "x": 11, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 12], "x": 12.5, "y": 5.25},
|
||||
{"matrix": [5, 13], "x": 13.5, "y": 5.25, "w": 1.5},
|
||||
|
||||
{"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}
|
||||
]
|
||||
},
|
||||
"LAYOUT_tkl_ansi_wkl": {
|
||||
"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": [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": [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": [2, 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": [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, 13], "x": 12.75, "y": 3.25, "w": 2.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, 13], "x": 12.25, "y": 4.25, "w": 2.75},
|
||||
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 6], "x": 4, "y": 5.25, "w": 7},
|
||||
{"matrix": [5, 11], "x": 11, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 13], "x": 13.5, "y": 5.25, "w": 1.5},
|
||||
|
||||
{"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}
|
||||
]
|
||||
},
|
||||
"LAYOUT_tkl_ansi_wkl_split_bs_rshift": {
|
||||
"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": [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": [3, 12], "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": [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": [2, 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": [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, 13], "x": 12.75, "y": 3.25, "w": 2.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": 1.75},
|
||||
{"matrix": [4, 13], "x": 14, "y": 4.25},
|
||||
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 6], "x": 4, "y": 5.25, "w": 7},
|
||||
{"matrix": [5, 11], "x": 11, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 13], "x": 13.5, "y": 5.25, "w": 1.5},
|
||||
|
||||
{"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}
|
||||
]
|
||||
},
|
||||
"LAYOUT_tkl_f13_ansi_wkl": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
|
||||
{"matrix": [0, 1], "x": 1.25, "y": 0},
|
||||
{"matrix": [0, 2], "x": 2.25, "y": 0},
|
||||
{"matrix": [0, 3], "x": 3.25, "y": 0},
|
||||
{"matrix": [0, 4], "x": 4.25, "y": 0},
|
||||
|
||||
{"matrix": [0, 5], "x": 5.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.75, "y": 0},
|
||||
{"matrix": [0, 10], "x": 10.75, "y": 0},
|
||||
{"matrix": [0, 11], "x": 11.75, "y": 0},
|
||||
{"matrix": [0, 12], "x": 12.75, "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": [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": [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": [2, 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": [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, 13], "x": 12.75, "y": 3.25, "w": 2.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, 13], "x": 12.25, "y": 4.25, "w": 2.75},
|
||||
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 6], "x": 4, "y": 5.25, "w": 7},
|
||||
{"matrix": [5, 11], "x": 11, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 13], "x": 13.5, "y": 5.25, "w": 1.5},
|
||||
|
||||
{"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}
|
||||
]
|
||||
},
|
||||
"LAYOUT_tkl_f13_ansi_wkl_split_bs_rshift": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
|
||||
{"matrix": [0, 1], "x": 1.25, "y": 0},
|
||||
{"matrix": [0, 2], "x": 2.25, "y": 0},
|
||||
{"matrix": [0, 3], "x": 3.25, "y": 0},
|
||||
{"matrix": [0, 4], "x": 4.25, "y": 0},
|
||||
|
||||
{"matrix": [0, 5], "x": 5.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.75, "y": 0},
|
||||
{"matrix": [0, 10], "x": 10.75, "y": 0},
|
||||
{"matrix": [0, 11], "x": 11.75, "y": 0},
|
||||
{"matrix": [0, 12], "x": 12.75, "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": [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": [3, 12], "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": [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": [2, 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": [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, 13], "x": 12.75, "y": 3.25, "w": 2.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": 1.75},
|
||||
{"matrix": [4, 13], "x": 14, "y": 4.25},
|
||||
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.25},
|
||||
{"matrix": [5, 6], "x": 4, "y": 5.25, "w": 7},
|
||||
{"matrix": [5, 11], "x": 11, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 13], "x": 13.5, "y": 5.25, "w": 1.5},
|
||||
|
||||
{"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}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
45
keyboards/deemen17/de80/keymaps/default/keymap.c
Normal file
45
keyboards/deemen17/de80/keymaps/default/keymap.c
Normal file
@@ -0,0 +1,45 @@
|
||||
/* Copyright 2024 Deemen17 Works
|
||||
*
|
||||
* 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_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_F13, KC_PSCR, KC_SCRL, KC_PAUS,
|
||||
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_DEL, KC_INS, KC_HOME, KC_PGUP,
|
||||
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_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_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LSFT, KC_LSFT, KC_UP,
|
||||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_LALT, MO(1), KC_LCTL, KC_LEFT, KC_DOWN, KC_RGHT
|
||||
),
|
||||
|
||||
[1] = LAYOUT_all(
|
||||
QK_BOOT, 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, RGB_SAI, RGB_HUI,
|
||||
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, RGB_SAD, RGB_HUD,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_TOG,
|
||||
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, RGB_VAI,
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RGB_RMOD, RGB_VAD, RGB_MOD
|
||||
)
|
||||
|
||||
};
|
||||
|
||||
#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_VOLD, KC_VOLU) },
|
||||
};
|
||||
#endif
|
1
keyboards/deemen17/de80/keymaps/default/rules.mk
Normal file
1
keyboards/deemen17/de80/keymaps/default/rules.mk
Normal file
@@ -0,0 +1 @@
|
||||
ENCODER_MAP_ENABLE = yes
|
23
keyboards/deemen17/de80/mcuconf.h
Normal file
23
keyboards/deemen17/de80/mcuconf.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/* Copyright 2022 QMK
|
||||
*
|
||||
* 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
|
||||
|
||||
#include_next <mcuconf.h>
|
||||
|
||||
|
||||
#undef STM32_SPI_USE_SPI2
|
||||
#define STM32_SPI_USE_SPI2 TRUE
|
27
keyboards/deemen17/de80/readme.md
Normal file
27
keyboards/deemen17/de80/readme.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# DE80
|
||||
|
||||

|
||||
|
||||
The DE80 is a portable TKL PCB that features a compact A87 form factor, dual USB Type C ports (breakable), seven JST SH 4P 1.0 ports, two FPC ports, and compatibility with both F12 and F13 footprints, making it suitable for use with a variety of TKL boards.
|
||||
|
||||
* Keyboard Maintainer: [Deemen17](https://github.com/Deemen17)
|
||||
* Hardware Supported: DE80 R1 2024 PCB w/ STM32F103 MCU
|
||||
* Hardware Availability: [Deemen17 Facebook Page](https://www.facebook.com/deemen17/), [Deemen17 Works Instagram](https://www.instagram.com/deemen17.works)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make deemen17/de80:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make deemen17/de80: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 (ESC/Escape) and plug in the keyboard
|
||||
* **Physical reset button**: Double tap the button RESET on the back of the PCB
|
||||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
|
123
keyboards/doio/kb09/keyboard.json
Normal file
123
keyboards/doio/kb09/keyboard.json
Normal file
@@ -0,0 +1,123 @@
|
||||
{
|
||||
"manufacturer": "DOIO",
|
||||
"keyboard_name": "KB09-01",
|
||||
"maintainer": "DOIO2022",
|
||||
"bootloader": "stm32duino",
|
||||
"diode_direction": "COL2ROW",
|
||||
"encoder": {
|
||||
"rotary": [
|
||||
{"pin_a": "B5", "pin_b": "B6"},
|
||||
{"pin_a": "A1", "pin_b": "A2"}
|
||||
]
|
||||
},
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"command": false,
|
||||
"console": false,
|
||||
"encoder": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true,
|
||||
"rgb_matrix": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["B14", "B13", "B12", "B0", "A7"],
|
||||
"rows": ["B3", "B4", "B9", "B8"]
|
||||
},
|
||||
"processor": "STM32F103",
|
||||
"rgb_matrix": {
|
||||
"animations": {
|
||||
"alphas_mods": true,
|
||||
"band_pinwheel_sat": true,
|
||||
"band_pinwheel_val": true,
|
||||
"band_sat": true,
|
||||
"band_spiral_sat": true,
|
||||
"band_spiral_val": true,
|
||||
"band_val": true,
|
||||
"breathing": true,
|
||||
"cycle_all": true,
|
||||
"cycle_left_right": true,
|
||||
"cycle_out_in": true,
|
||||
"cycle_out_in_dual": true,
|
||||
"cycle_pinwheel": true,
|
||||
"cycle_spiral": true,
|
||||
"cycle_up_down": true,
|
||||
"digital_rain": true,
|
||||
"dual_beacon": true,
|
||||
"gradient_left_right": true,
|
||||
"gradient_up_down": true,
|
||||
"hue_breathing": true,
|
||||
"hue_pendulum": true,
|
||||
"hue_wave": true,
|
||||
"jellybean_raindrops": true,
|
||||
"multisplash": true,
|
||||
"pixel_fractal": true,
|
||||
"pixel_rain": true,
|
||||
"rainbow_beacon": true,
|
||||
"rainbow_moving_chevron": true,
|
||||
"rainbow_pinwheels": true,
|
||||
"raindrops": true,
|
||||
"solid_multisplash": true,
|
||||
"solid_reactive": true,
|
||||
"solid_reactive_cross": true,
|
||||
"solid_reactive_multicross": true,
|
||||
"solid_reactive_multinexus": true,
|
||||
"solid_reactive_multiwide": true,
|
||||
"solid_reactive_nexus": true,
|
||||
"solid_reactive_simple": true,
|
||||
"solid_reactive_wide": true,
|
||||
"solid_splash": true,
|
||||
"splash": true,
|
||||
"typing_heatmap": true
|
||||
},
|
||||
"default": {
|
||||
"animation": "cycle_up_down"
|
||||
},
|
||||
"driver": "ws2812",
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0, "flags": 4},
|
||||
{"matrix": [0, 1], "x": 56, "y": 0, "flags": 4},
|
||||
{"matrix": [0, 2], "x": 112, "y": 0, "flags": 4},
|
||||
{"matrix": [1, 0], "x": 0, "y": 21, "flags": 4},
|
||||
{"matrix": [1, 1], "x": 56, "y": 21, "flags": 4},
|
||||
{"matrix": [1, 2], "x": 112, "y": 21, "flags": 4},
|
||||
{"matrix": [2, 0], "x": 0, "y": 42, "flags": 4},
|
||||
{"matrix": [2, 1], "x": 56, "y": 42, "flags": 4},
|
||||
{"matrix": [2, 2], "x": 112, "y": 42, "flags": 4}
|
||||
],
|
||||
"max_brightness": 200,
|
||||
"sleep": true
|
||||
},
|
||||
"url": "",
|
||||
"usb": {
|
||||
"device_version": "0.0.1",
|
||||
"pid": "0x0901",
|
||||
"vid": "0xD010"
|
||||
},
|
||||
"ws2812": {
|
||||
"pin": "A10"
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{"matrix": [1, 3], "x": 1, "y": 0},
|
||||
{"matrix": [0, 0], "x": 4, "y": 0},
|
||||
{"matrix": [0, 1], "x": 5, "y": 0},
|
||||
{"matrix": [0, 2], "x": 6, "y": 0},
|
||||
{"matrix": [0, 4], "x": 8, "y": 0},
|
||||
{"matrix": [1, 4], "x": 9, "y": 0},
|
||||
{"matrix": [0, 3], "x": 0, "y": 1},
|
||||
{"matrix": [2, 3], "x": 2, "y": 1},
|
||||
{"matrix": [1, 0], "x": 4, "y": 1},
|
||||
{"matrix": [1, 1], "x": 5, "y": 1},
|
||||
{"matrix": [1, 2], "x": 6, "y": 1},
|
||||
{"matrix": [3, 0], "x": 1, "y": 2},
|
||||
{"matrix": [2, 0], "x": 4, "y": 2},
|
||||
{"matrix": [2, 1], "x": 5, "y": 2},
|
||||
{"matrix": [2, 2], "x": 6, "y": 2},
|
||||
{"matrix": [3, 1], "x": 3, "y": 3},
|
||||
{"matrix": [3, 2], "x": 3, "y": 3}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
58
keyboards/doio/kb09/keymaps/default/keymap.c
Normal file
58
keyboards/doio/kb09/keymaps/default/keymap.c
Normal file
@@ -0,0 +1,58 @@
|
||||
/* Copyright 2022 DOIO
|
||||
* Copyright 2022 DOIO2022 <https://github.com/DOIO2022>
|
||||
*
|
||||
* 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 layer_names {
|
||||
_LAY0,
|
||||
_LAY1,
|
||||
_LAY2,
|
||||
_LAY3
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[_LAY0] = LAYOUT(
|
||||
KC_UP, KC_1, KC_2, KC_3, KC_MPLY, KC_MUTE,
|
||||
KC_LEFT, KC_RIGHT, KC_4, KC_5, KC_6,
|
||||
KC_DOWN, KC_7, KC_8, KC_9,
|
||||
TO(1), LWIN(KC_D)),
|
||||
[_LAY1] = LAYOUT(
|
||||
KC_TRNS, C(S(KC_S)), C(KC_H), C(KC_G), KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, C(S(KC_A)), C(KC_J), C(S(KC_G)),
|
||||
KC_TRNS, C(KC_Z), KC_DEL, C(A(S(KC_E))),
|
||||
TO(2), KC_TRNS),
|
||||
[_LAY2] = LAYOUT(
|
||||
KC_TRNS, S(KC_I), A(KC_EQL), C(S(KC_M)), KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, S(KC_O), A(KC_MINS), S(KC_M),
|
||||
KC_TRNS, KC_C, KC_V, C(KC_M),
|
||||
TO(3), KC_TRNS),
|
||||
[_LAY3] = LAYOUT(
|
||||
KC_TRNS, RGB_SPI, RGB_SPD, RGB_HUI, KC_TRNS, KC_TRNS,
|
||||
KC_TRNS, KC_TRNS, RGB_SAI, RGB_SAD, RGB_HUD,
|
||||
KC_TRNS, RGB_MOD, RGB_VAI, RGB_VAD,
|
||||
TO(0), KC_TRNS)
|
||||
};
|
||||
|
||||
#ifdef ENCODER_MAP_ENABLE
|
||||
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
|
||||
[_LAY0] = { ENCODER_CCW_CW(KC_MPRV, KC_MNXT), ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
|
||||
[_LAY1] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS) },
|
||||
[_LAY2] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS) },
|
||||
[_LAY3] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS), ENCODER_CCW_CW(KC_TRNS, KC_TRNS) },
|
||||
};
|
||||
#endif
|
26
keyboards/doio/kb09/readme.md
Normal file
26
keyboards/doio/kb09/readme.md
Normal file
@@ -0,0 +1,26 @@
|
||||
# doio/kb09
|
||||
|
||||

|
||||
|
||||
QMK for DOIO GBA keypad .
|
||||
|
||||
* Keyboard Maintainer: DOIO2022
|
||||
* Hardware Supported: DOIO GBA keypad
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make doio/kb09:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make doio/kb09: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
|
||||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
|
@@ -20,12 +20,12 @@ led_config_t g_led_config = {
|
||||
{ 13, 12, 11, 10, 9, 8, 7 },
|
||||
{ 0, 1, 2, 3, 4, 5, 6 },
|
||||
/*right*/
|
||||
{ NO_LED, 72, 71, 70, 73, 75, 74 },
|
||||
{ 65, 66, 67, 68, 69, NO_LED, NO_LED },
|
||||
{ 64, 63, 62, 61, 60, 59, 58 },
|
||||
{ 52, 53, 54, 55, 56, 57, NO_LED },
|
||||
{ 51, 50, 49, 48, 47, 46, 45 },
|
||||
{ 38, 39, 40, 41, 42, 43, 44 }
|
||||
{ NO_LED, 77, 76, 75, 78, 80, 79 },
|
||||
{ 70, 71, 72, 73, 74, NO_LED, NO_LED },
|
||||
{ 69, 68, 67, 66, 65, 64, 63 },
|
||||
{ 57, 58, 59, 60, 61, 62, NO_LED },
|
||||
{ 56, 55, 54, 53, 52, 51, 50 },
|
||||
{ 43, 44, 45, 46, 47, 48, 49 }
|
||||
},
|
||||
{
|
||||
// LED Index to Physical Position
|
||||
|
@@ -284,6 +284,93 @@
|
||||
{"matrix": [0, 12], "x": 18.5, "y": 5.5, "w": 2},
|
||||
{"matrix": [0, 13], "x": 20.5, "y": 5.5}
|
||||
]
|
||||
}
|
||||
},
|
||||
"LAYOUT_wheelwriter_1x_iso": {
|
||||
"layout": [
|
||||
{"matrix": [2, 2], "x": 0, "y": 0},
|
||||
|
||||
{"matrix": [2, 4], "x": 1.25, "y": 0},
|
||||
{"matrix": [3, 4], "x": 2.25, "y": 0},
|
||||
{"matrix": [3, 5], "x": 3.25, "y": 0},
|
||||
{"matrix": [3, 6], "x": 4.25, "y": 0},
|
||||
{"matrix": [3, 7], "x": 5.25, "y": 0},
|
||||
{"matrix": [2, 7], "x": 6.25, "y": 0},
|
||||
{"matrix": [2, 8], "x": 7.25, "y": 0},
|
||||
{"matrix": [3, 8], "x": 8.25, "y": 0},
|
||||
{"matrix": [3, 9], "x": 9.25, "y": 0},
|
||||
{"matrix": [3, 10], "x": 10.25, "y": 0},
|
||||
{"matrix": [3, 11], "x": 11.25, "y": 0},
|
||||
{"matrix": [2, 11], "x": 12.25, "y": 0},
|
||||
{"matrix": [2, 9], "x": 13.25, "y": 0},
|
||||
{"matrix": [2, 12], "x": 14.25, "y": 0, "w": 2},
|
||||
|
||||
{"matrix": [2, 13], "x": 17.5, "y": 0},
|
||||
|
||||
{"matrix": [4, 1], "x": 0, "y": 1},
|
||||
|
||||
{"matrix": [4, 2], "x": 1.25, "y": 1, "w": 1.5},
|
||||
{"matrix": [4, 4], "x": 2.75, "y": 1},
|
||||
{"matrix": [4, 5], "x": 3.75, "y": 1},
|
||||
{"matrix": [4, 6], "x": 4.75, "y": 1},
|
||||
{"matrix": [4, 7], "x": 5.75, "y": 1},
|
||||
{"matrix": [5, 7], "x": 6.75, "y": 1},
|
||||
{"matrix": [5, 8], "x": 7.75, "y": 1},
|
||||
{"matrix": [4, 8], "x": 8.75, "y": 1},
|
||||
{"matrix": [4, 9], "x": 9.75, "y": 1},
|
||||
{"matrix": [4, 10], "x": 10.75, "y": 1},
|
||||
{"matrix": [4, 11], "x": 11.75, "y": 1},
|
||||
{"matrix": [5, 11], "x": 12.75, "y": 1},
|
||||
{"matrix": [5, 9], "x": 13.75, "y": 1},
|
||||
|
||||
{"matrix": [4, 13], "x": 17.5, "y": 1},
|
||||
|
||||
{"matrix": [5, 2], "x": 0, "y": 2},
|
||||
|
||||
{"matrix": [6, 2], "x": 1.25, "y": 2, "w": 1.5},
|
||||
{"matrix": [1, 4], "x": 3, "y": 2},
|
||||
{"matrix": [1, 5], "x": 4, "y": 2},
|
||||
{"matrix": [1, 6], "x": 5, "y": 2},
|
||||
{"matrix": [1, 7], "x": 6, "y": 2},
|
||||
{"matrix": [0, 7], "x": 7, "y": 2},
|
||||
{"matrix": [0, 8], "x": 8, "y": 2},
|
||||
{"matrix": [1, 8], "x": 9, "y": 2},
|
||||
{"matrix": [1, 9], "x": 10, "y": 2},
|
||||
{"matrix": [1, 10], "x": 11, "y": 2},
|
||||
{"matrix": [1, 11], "x": 12, "y": 2},
|
||||
{"matrix": [0, 11], "x": 13, "y": 2},
|
||||
{"matrix": [6, 11], "x": 14, "y": 2},
|
||||
{"matrix": [0, 12], "x": 15, "y": 2, "w": 1.25, "h": 2},
|
||||
|
||||
{"matrix": [1, 13], "x": 17.5, "y": 2},
|
||||
|
||||
{"matrix": [1, 2], "x": 0, "y": 3},
|
||||
|
||||
{"matrix": [7, 3], "x": 1.25, "y": 3, "w": 1.25},
|
||||
{"matrix": [7, 4], "x": 2.5, "y": 3},
|
||||
{"matrix": [6, 4], "x": 3.5, "y": 3},
|
||||
{"matrix": [6, 5], "x": 4.5, "y": 3},
|
||||
{"matrix": [6, 6], "x": 5.5, "y": 3},
|
||||
{"matrix": [6, 7], "x": 6.5, "y": 3},
|
||||
{"matrix": [7, 7], "x": 7.5, "y": 3},
|
||||
{"matrix": [7, 8], "x": 8.5, "y": 3},
|
||||
{"matrix": [6, 8], "x": 9.5, "y": 3},
|
||||
{"matrix": [6, 9], "x": 10.5, "y": 3},
|
||||
{"matrix": [6, 10], "x": 11.5, "y": 3},
|
||||
{"matrix": [7, 11], "x": 12.5, "y": 3},
|
||||
{"matrix": [6, 3], "x": 13.5, "y": 3, "w": 2.75},
|
||||
|
||||
{"matrix": [6, 12], "x": 17.5, "y": 3},
|
||||
|
||||
{"matrix": [0, 1], "x": 0, "y": 4},
|
||||
|
||||
{"matrix": [7, 14], "x": 3.75, "y": 4, "w": 2.5},
|
||||
{"matrix": [7, 1], "x": 6.25, "y": 4, "w": 7.25},
|
||||
{"matrix": [7, 2], "x": 14.75, "y": 4, "w": 1.5},
|
||||
|
||||
{"matrix": [7, 12], "x": 16.5, "y": 4},
|
||||
{"matrix": [0, 13], "x": 17.5, "y": 4},
|
||||
{"matrix": [7, 13], "x": 18.5, "y": 4}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -0,0 +1,33 @@
|
||||
/* Copyright 2024 Robin Haberkorn
|
||||
*
|
||||
* 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_wheelwriter_1x_iso( /* Base layer */
|
||||
KC_ESC, 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_INS,
|
||||
KC_PGUP, 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_DEL,
|
||||
KC_PGDN, 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, MO(1),
|
||||
KC_APP, 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_UP,
|
||||
KC_LCTL, KC_LALT, KC_SPC, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT
|
||||
),
|
||||
[1] = LAYOUT_wheelwriter_1x_iso( /* Function key layer */
|
||||
KC_MUTE, KC_NO, 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_NO, KC_BRIU,
|
||||
KC_VOLU, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_BRID,
|
||||
KC_VOLD, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
|
||||
KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_PGUP,
|
||||
KC_NO, KC_NO, KC_NO, KC_NO, KC_HOME, KC_PGDN, KC_END
|
||||
),
|
||||
};
|
@@ -17,4 +17,8 @@ Flashing example for this keyboard:
|
||||
|
||||
make ibm/model_m/modelh:default:flash
|
||||
|
||||
For IBM Wheelwriter 10/15/1000 modules (ISO), you can try the `wheelwriter_1x_iso` keymap:
|
||||
|
||||
make ibm/model_m/modelh:wheelwriter_1x_iso
|
||||
|
||||
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).
|
||||
|
@@ -3,8 +3,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
/* Serial communication */
|
||||
/* Split keyboard configuration */
|
||||
#define EE_HANDS
|
||||
#define SERIAL_USART_FULL_DUPLEX
|
||||
#define SERIAL_USART_TX_PIN GP0
|
||||
#define SERIAL_USART_RX_PIN GP1
|
||||
|
@@ -18,6 +18,8 @@ Flashing example for this keyboard:
|
||||
|
||||
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).
|
||||
|
||||
If you would like to plug in your keyboard using either half, then set the EEPROM left/right UF2 bootloader parameter when flashing each half for the first time. Refer to [QMK's handedness by EEPROM documentation](https://docs.qmk.fm/features/split_keyboard#handedness-by-eeprom). Without this bootloader parameter, the configuration assumes the left half will be plugged in.
|
||||
|
||||
## Bootloader
|
||||
|
||||
Enter the bootloader in 3 ways:
|
||||
|
@@ -37,7 +37,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||
* | F1 | F2 | F3 | F4 | F5 | F6 | | F7 | F8 | F9 | F10 | F11 | F12 |
|
||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||
* | ` | ! | @ | # | $ | % |-------. ,-------| ^ | & | * | ( | ) | - |
|
||||
* | ` | ! | @ | # | $ | % |-------. ,-------| ^ | & | * | ( | ) | ~ |
|
||||
* |------+------+------+------+------+------| [ | | ] |------+------+------+------+------+------|
|
||||
* | | | | | | |-------| |-------| | _ | + | { | } | | |
|
||||
* `-----------------------------------------/ / \ \-----------------------------------------'
|
||||
|
389
keyboards/mykeyclub/jris65/hotswap/keyboard.json
Normal file
389
keyboards/mykeyclub/jris65/hotswap/keyboard.json
Normal file
@@ -0,0 +1,389 @@
|
||||
{
|
||||
"manufacturer": "zlkb",
|
||||
"keyboard_name": "IRIS65",
|
||||
"maintainer": "5217zl",
|
||||
"bootloader": "atmel-dfu",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["B6", "C6", "C7", "F1", "F0", "E6", "B0", "B1", "B3", "B7", "D2", "D1", "D0", "D7", "B4", "B5"],
|
||||
"rows": ["F7", "F6", "F5", "B2", "F4"]
|
||||
},
|
||||
"processor": "atmega32u4",
|
||||
"url": "",
|
||||
"usb": {
|
||||
"device_version": "0.1.0",
|
||||
"pid": "0x4953",
|
||||
"vid": "0x5A4C"
|
||||
},
|
||||
"community_layouts": ["65_ansi_blocker", "65_ansi_blocker_split_bs", "65_iso_blocker", "65_iso_blocker_split_bs"],
|
||||
"layouts": {
|
||||
"LAYOUT_65_ansi_blocker": {
|
||||
"layout": [
|
||||
{"label": "0,0", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "0,1", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "0,2", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "0,3", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "0,4", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "0,5", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "0,6", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "0,7", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "0,8", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "0,9", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "0,10", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "0,11", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "0,12", "matrix": [0, 12], "x": 12, "y": 0},
|
||||
{"label": "0,14", "matrix": [0, 14], "x": 13, "y": 0, "w": 2},
|
||||
{"label": "0,15", "matrix": [0, 15], "x": 15, "y": 0},
|
||||
{"label": "1,0", "matrix": [1, 0], "x": 0, "y": 1, "w": 1.5},
|
||||
{"label": "1,1", "matrix": [1, 1], "x": 1.5, "y": 1},
|
||||
{"label": "1,2", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "1,3", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "1,4", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "1,5", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "1,6", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "1,7", "matrix": [1, 7], "x": 7.5, "y": 1},
|
||||
{"label": "1,,8", "matrix": [1, 8], "x": 8.5, "y": 1},
|
||||
{"label": "1,9", "matrix": [1, 9], "x": 9.5, "y": 1},
|
||||
{"label": "1,10", "matrix": [1, 10], "x": 10.5, "y": 1},
|
||||
{"label": "1,11", "matrix": [1, 11], "x": 11.5, "y": 1},
|
||||
{"label": "1,12", "matrix": [1, 12], "x": 12.5, "y": 1},
|
||||
{"label": "1,13", "matrix": [1, 13], "x": 13.5, "y": 1, "w": 1.5},
|
||||
{"label": "1,14", "matrix": [1, 14], "x": 15, "y": 1},
|
||||
{"label": "2,0", "matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||
{"label": "2,1", "matrix": [2, 1], "x": 1.75, "y": 2},
|
||||
{"label": "2,2", "matrix": [2, 2], "x": 2.75, "y": 2},
|
||||
{"label": "2,3", "matrix": [2, 3], "x": 3.75, "y": 2},
|
||||
{"label": "2,4", "matrix": [2, 4], "x": 4.75, "y": 2},
|
||||
{"label": "2,5", "matrix": [2, 5], "x": 5.75, "y": 2},
|
||||
{"label": "2,6", "matrix": [2, 6], "x": 6.75, "y": 2},
|
||||
{"label": "2,7", "matrix": [2, 7], "x": 7.75, "y": 2},
|
||||
{"label": "2,8", "matrix": [2, 8], "x": 8.75, "y": 2},
|
||||
{"label": "2,9", "matrix": [2, 9], "x": 9.75, "y": 2},
|
||||
{"label": "2,10", "matrix": [2, 10], "x": 10.75, "y": 2},
|
||||
{"label": "2,11", "matrix": [2, 11], "x": 11.75, "y": 2},
|
||||
{"label": "2,13", "matrix": [2, 13], "x": 12.75, "y": 2, "w": 2.25},
|
||||
{"label": "2,14", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "3,0", "matrix": [3, 0], "x": 0, "y": 3, "w": 2.25},
|
||||
{"label": "3,2", "matrix": [3, 2], "x": 2.25, "y": 3},
|
||||
{"label": "3,3", "matrix": [3, 3], "x": 3.25, "y": 3},
|
||||
{"label": "3,4", "matrix": [3, 4], "x": 4.25, "y": 3},
|
||||
{"label": "3,5", "matrix": [3, 5], "x": 5.25, "y": 3},
|
||||
{"label": "3,6", "matrix": [3, 6], "x": 6.25, "y": 3},
|
||||
{"label": "3,7", "matrix": [3, 7], "x": 7.25, "y": 3},
|
||||
{"label": "3,8", "matrix": [3, 8], "x": 8.25, "y": 3},
|
||||
{"label": "3,9", "matrix": [3, 9], "x": 9.25, "y": 3},
|
||||
{"label": "3,10", "matrix": [3, 10], "x": 10.25, "y": 3},
|
||||
{"label": "3,11", "matrix": [3, 11], "x": 11.25, "y": 3},
|
||||
{"label": "3,12", "matrix": [3, 12], "x": 12.25, "y": 3, "w": 1.75},
|
||||
{"label": "3,13", "matrix": [3, 13], "x": 14, "y": 3},
|
||||
{"label": "3,14", "matrix": [3, 14], "x": 15, "y": 3},
|
||||
{"label": "4,0", "matrix": [4, 0], "x": 0, "y": 4, "w": 1.25},
|
||||
{"label": "4,1", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,2", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "4,3", "matrix": [4, 3], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "4,10", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.25},
|
||||
{"label": "4,11", "matrix": [4, 11], "x": 11.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,12", "matrix": [4, 12], "x": 13, "y": 4},
|
||||
{"label": "4,13", "matrix": [4, 13], "x": 14, "y": 4},
|
||||
{"label": "4,14", "matrix": [4, 14], "x": 15, "y": 4}
|
||||
]
|
||||
},
|
||||
"LAYOUT_65_ansi_blocker_split_bs": {
|
||||
"layout": [
|
||||
{"label": "0,0", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "0,1", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "0,2", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "0,3", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "0,4", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "0,5", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "0,6", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "0,7", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "0,8", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "0,9", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "0,10", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "0,11", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "0,12", "matrix": [0, 12], "x": 12, "y": 0},
|
||||
{"label": "0,13", "matrix": [0, 13], "x": 13, "y": 0},
|
||||
{"label": "0,14", "matrix": [0, 14], "x": 14, "y": 0},
|
||||
{"label": "0,15", "matrix": [0, 15], "x": 15, "y": 0},
|
||||
{"label": "1,0", "matrix": [1, 0], "x": 0, "y": 1, "w": 1.5},
|
||||
{"label": "1,1", "matrix": [1, 1], "x": 1.5, "y": 1},
|
||||
{"label": "1,2", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "1,3", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "1,4", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "1,5", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "1,6", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "1,7", "matrix": [1, 7], "x": 7.5, "y": 1},
|
||||
{"label": "1,,8", "matrix": [1, 8], "x": 8.5, "y": 1},
|
||||
{"label": "1,9", "matrix": [1, 9], "x": 9.5, "y": 1},
|
||||
{"label": "1,10", "matrix": [1, 10], "x": 10.5, "y": 1},
|
||||
{"label": "1,11", "matrix": [1, 11], "x": 11.5, "y": 1},
|
||||
{"label": "1,12", "matrix": [1, 12], "x": 12.5, "y": 1},
|
||||
{"label": "1,13", "matrix": [1, 13], "x": 13.5, "y": 1, "w": 1.5},
|
||||
{"label": "1,14", "matrix": [1, 14], "x": 15, "y": 1},
|
||||
{"label": "2,0", "matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||
{"label": "2,1", "matrix": [2, 1], "x": 1.75, "y": 2},
|
||||
{"label": "2,2", "matrix": [2, 2], "x": 2.75, "y": 2},
|
||||
{"label": "2,3", "matrix": [2, 3], "x": 3.75, "y": 2},
|
||||
{"label": "2,4", "matrix": [2, 4], "x": 4.75, "y": 2},
|
||||
{"label": "2,5", "matrix": [2, 5], "x": 5.75, "y": 2},
|
||||
{"label": "2,6", "matrix": [2, 6], "x": 6.75, "y": 2},
|
||||
{"label": "2,7", "matrix": [2, 7], "x": 7.75, "y": 2},
|
||||
{"label": "2,8", "matrix": [2, 8], "x": 8.75, "y": 2},
|
||||
{"label": "2,9", "matrix": [2, 9], "x": 9.75, "y": 2},
|
||||
{"label": "2,10", "matrix": [2, 10], "x": 10.75, "y": 2},
|
||||
{"label": "2,11", "matrix": [2, 11], "x": 11.75, "y": 2},
|
||||
{"label": "2,13", "matrix": [2, 13], "x": 12.75, "y": 2, "w": 2.25},
|
||||
{"label": "2,14", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "3,0", "matrix": [3, 0], "x": 0, "y": 3, "w": 2.25},
|
||||
{"label": "3,2", "matrix": [3, 2], "x": 2.25, "y": 3},
|
||||
{"label": "3,3", "matrix": [3, 3], "x": 3.25, "y": 3},
|
||||
{"label": "3,4", "matrix": [3, 4], "x": 4.25, "y": 3},
|
||||
{"label": "3,5", "matrix": [3, 5], "x": 5.25, "y": 3},
|
||||
{"label": "3,6", "matrix": [3, 6], "x": 6.25, "y": 3},
|
||||
{"label": "3,7", "matrix": [3, 7], "x": 7.25, "y": 3},
|
||||
{"label": "3,8", "matrix": [3, 8], "x": 8.25, "y": 3},
|
||||
{"label": "3,9", "matrix": [3, 9], "x": 9.25, "y": 3},
|
||||
{"label": "3,10", "matrix": [3, 10], "x": 10.25, "y": 3},
|
||||
{"label": "3,11", "matrix": [3, 11], "x": 11.25, "y": 3},
|
||||
{"label": "3,12", "matrix": [3, 12], "x": 12.25, "y": 3, "w": 1.75},
|
||||
{"label": "3,13", "matrix": [3, 13], "x": 14, "y": 3},
|
||||
{"label": "3,14", "matrix": [3, 14], "x": 15, "y": 3},
|
||||
{"label": "4,0", "matrix": [4, 0], "x": 0, "y": 4, "w": 1.25},
|
||||
{"label": "4,1", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,2", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "4,3", "matrix": [4, 3], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "4,10", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.25},
|
||||
{"label": "4,11", "matrix": [4, 11], "x": 11.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,12", "matrix": [4, 12], "x": 13, "y": 4},
|
||||
{"label": "4,13", "matrix": [4, 13], "x": 14, "y": 4},
|
||||
{"label": "4,14", "matrix": [4, 14], "x": 15, "y": 4}
|
||||
]
|
||||
},
|
||||
"LAYOUT_65_iso_blocker": {
|
||||
"layout": [
|
||||
{"label": "0,0", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "0,1", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "0,2", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "0,3", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "0,4", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "0,5", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "0,6", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "0,7", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "0,8", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "0,9", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "0,10", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "0,11", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "0,12", "matrix": [0, 12], "x": 12, "y": 0},
|
||||
{"label": "0,14", "matrix": [0, 14], "x": 13, "y": 0, "w": 2},
|
||||
{"label": "0,15", "matrix": [0, 15], "x": 15, "y": 0},
|
||||
{"label": "1,0", "matrix": [1, 0], "x": 0, "y": 1, "w": 1.5},
|
||||
{"label": "1,1", "matrix": [1, 1], "x": 1.5, "y": 1},
|
||||
{"label": "1,2", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "1,3", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "1,4", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "1,5", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "1,6", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "1,7", "matrix": [1, 7], "x": 7.5, "y": 1},
|
||||
{"label": "1,,8", "matrix": [1, 8], "x": 8.5, "y": 1},
|
||||
{"label": "1,9", "matrix": [1, 9], "x": 9.5, "y": 1},
|
||||
{"label": "1,10", "matrix": [1, 10], "x": 10.5, "y": 1},
|
||||
{"label": "1,11", "matrix": [1, 11], "x": 11.5, "y": 1},
|
||||
{"label": "1,12", "matrix": [1, 12], "x": 12.5, "y": 1},
|
||||
{"label": "1,14", "matrix": [1, 14], "x": 15, "y": 1},
|
||||
{"label": "2,0", "matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||
{"label": "2,1", "matrix": [2, 1], "x": 1.75, "y": 2},
|
||||
{"label": "2,2", "matrix": [2, 2], "x": 2.75, "y": 2},
|
||||
{"label": "2,3", "matrix": [2, 3], "x": 3.75, "y": 2},
|
||||
{"label": "2,4", "matrix": [2, 4], "x": 4.75, "y": 2},
|
||||
{"label": "2,5", "matrix": [2, 5], "x": 5.75, "y": 2},
|
||||
{"label": "2,6", "matrix": [2, 6], "x": 6.75, "y": 2},
|
||||
{"label": "2,7", "matrix": [2, 7], "x": 7.75, "y": 2},
|
||||
{"label": "2,8", "matrix": [2, 8], "x": 8.75, "y": 2},
|
||||
{"label": "2,9", "matrix": [2, 9], "x": 9.75, "y": 2},
|
||||
{"label": "2,10", "matrix": [2, 10], "x": 10.75, "y": 2},
|
||||
{"label": "2,11", "matrix": [2, 11], "x": 11.75, "y": 2},
|
||||
{"label": "2,12", "matrix": [2, 12], "x": 12.75, "y": 2},
|
||||
{"label": "2,13", "matrix": [2, 13], "x": 13.75, "y": 1, "w": 1.25, "h": 2},
|
||||
{"label": "2,14", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "3,0", "matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||
{"label": "3,1", "matrix": [3, 1], "x": 1.25, "y": 3},
|
||||
{"label": "3,2", "matrix": [3, 2], "x": 2.25, "y": 3},
|
||||
{"label": "3,3", "matrix": [3, 3], "x": 3.25, "y": 3},
|
||||
{"label": "3,4", "matrix": [3, 4], "x": 4.25, "y": 3},
|
||||
{"label": "3,5", "matrix": [3, 5], "x": 5.25, "y": 3},
|
||||
{"label": "3,6", "matrix": [3, 6], "x": 6.25, "y": 3},
|
||||
{"label": "3,7", "matrix": [3, 7], "x": 7.25, "y": 3},
|
||||
{"label": "3,8", "matrix": [3, 8], "x": 8.25, "y": 3},
|
||||
{"label": "3,9", "matrix": [3, 9], "x": 9.25, "y": 3},
|
||||
{"label": "3,10", "matrix": [3, 10], "x": 10.25, "y": 3},
|
||||
{"label": "3,11", "matrix": [3, 11], "x": 11.25, "y": 3},
|
||||
{"label": "3,12", "matrix": [3, 12], "x": 12.25, "y": 3, "w": 1.75},
|
||||
{"label": "3,13", "matrix": [3, 13], "x": 14, "y": 3},
|
||||
{"label": "3,14", "matrix": [3, 14], "x": 15, "y": 3},
|
||||
{"label": "4,0", "matrix": [4, 0], "x": 0, "y": 4, "w": 1.25},
|
||||
{"label": "4,1", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,2", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "4,3", "matrix": [4, 3], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "4,10", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.25},
|
||||
{"label": "4,11", "matrix": [4, 11], "x": 11.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,12", "matrix": [4, 12], "x": 13, "y": 4},
|
||||
{"label": "4,13", "matrix": [4, 13], "x": 14, "y": 4},
|
||||
{"label": "4,14", "matrix": [4, 14], "x": 15, "y": 4}
|
||||
]
|
||||
},
|
||||
"LAYOUT_65_iso_blocker_split_bs": {
|
||||
"layout": [
|
||||
{"label": "0,0", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "0,1", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "0,2", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "0,3", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "0,4", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "0,5", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "0,6", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "0,7", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "0,8", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "0,9", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "0,10", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "0,11", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "0,12", "matrix": [0, 12], "x": 12, "y": 0},
|
||||
{"label": "0,13", "matrix": [0, 13], "x": 13, "y": 0},
|
||||
{"label": "0,14", "matrix": [0, 14], "x": 14, "y": 0},
|
||||
{"label": "0,15", "matrix": [0, 15], "x": 15, "y": 0},
|
||||
{"label": "1,0", "matrix": [1, 0], "x": 0, "y": 1, "w": 1.5},
|
||||
{"label": "1,1", "matrix": [1, 1], "x": 1.5, "y": 1},
|
||||
{"label": "1,2", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "1,3", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "1,4", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "1,5", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "1,6", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "1,7", "matrix": [1, 7], "x": 7.5, "y": 1},
|
||||
{"label": "1,,8", "matrix": [1, 8], "x": 8.5, "y": 1},
|
||||
{"label": "1,9", "matrix": [1, 9], "x": 9.5, "y": 1},
|
||||
{"label": "1,10", "matrix": [1, 10], "x": 10.5, "y": 1},
|
||||
{"label": "1,11", "matrix": [1, 11], "x": 11.5, "y": 1},
|
||||
{"label": "1,12", "matrix": [1, 12], "x": 12.5, "y": 1},
|
||||
{"label": "1,14", "matrix": [1, 14], "x": 15, "y": 1},
|
||||
{"label": "2,0", "matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||
{"label": "2,1", "matrix": [2, 1], "x": 1.75, "y": 2},
|
||||
{"label": "2,2", "matrix": [2, 2], "x": 2.75, "y": 2},
|
||||
{"label": "2,3", "matrix": [2, 3], "x": 3.75, "y": 2},
|
||||
{"label": "2,4", "matrix": [2, 4], "x": 4.75, "y": 2},
|
||||
{"label": "2,5", "matrix": [2, 5], "x": 5.75, "y": 2},
|
||||
{"label": "2,6", "matrix": [2, 6], "x": 6.75, "y": 2},
|
||||
{"label": "2,7", "matrix": [2, 7], "x": 7.75, "y": 2},
|
||||
{"label": "2,8", "matrix": [2, 8], "x": 8.75, "y": 2},
|
||||
{"label": "2,9", "matrix": [2, 9], "x": 9.75, "y": 2},
|
||||
{"label": "2,10", "matrix": [2, 10], "x": 10.75, "y": 2},
|
||||
{"label": "2,11", "matrix": [2, 11], "x": 11.75, "y": 2},
|
||||
{"label": "2,12", "matrix": [2, 12], "x": 12.75, "y": 2},
|
||||
{"label": "2,13", "matrix": [2, 13], "x": 13.75, "y": 1, "w": 1.25, "h": 2},
|
||||
{"label": "2,14", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "3,0", "matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||
{"label": "3,1", "matrix": [3, 1], "x": 1.25, "y": 3},
|
||||
{"label": "3,2", "matrix": [3, 2], "x": 2.25, "y": 3},
|
||||
{"label": "3,3", "matrix": [3, 3], "x": 3.25, "y": 3},
|
||||
{"label": "3,4", "matrix": [3, 4], "x": 4.25, "y": 3},
|
||||
{"label": "3,5", "matrix": [3, 5], "x": 5.25, "y": 3},
|
||||
{"label": "3,6", "matrix": [3, 6], "x": 6.25, "y": 3},
|
||||
{"label": "3,7", "matrix": [3, 7], "x": 7.25, "y": 3},
|
||||
{"label": "3,8", "matrix": [3, 8], "x": 8.25, "y": 3},
|
||||
{"label": "3,9", "matrix": [3, 9], "x": 9.25, "y": 3},
|
||||
{"label": "3,10", "matrix": [3, 10], "x": 10.25, "y": 3},
|
||||
{"label": "3,11", "matrix": [3, 11], "x": 11.25, "y": 3},
|
||||
{"label": "3,12", "matrix": [3, 12], "x": 12.25, "y": 3, "w": 1.75},
|
||||
{"label": "3,13", "matrix": [3, 13], "x": 14, "y": 3},
|
||||
{"label": "3,14", "matrix": [3, 14], "x": 15, "y": 3},
|
||||
{"label": "4,0", "matrix": [4, 0], "x": 0, "y": 4, "w": 1.25},
|
||||
{"label": "4,1", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,2", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "4,3", "matrix": [4, 3], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "4,10", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.25},
|
||||
{"label": "4,11", "matrix": [4, 11], "x": 11.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,12", "matrix": [4, 12], "x": 13, "y": 4},
|
||||
{"label": "4,13", "matrix": [4, 13], "x": 14, "y": 4},
|
||||
{"label": "4,14", "matrix": [4, 14], "x": 15, "y": 4}
|
||||
]
|
||||
},
|
||||
"LAYOUT_all": {
|
||||
"layout": [
|
||||
{"label": "0,0", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "0,1", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "0,2", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "0,3", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "0,4", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "0,5", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "0,6", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "0,7", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "0,8", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "0,9", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "0,10", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "0,11", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "0,12", "matrix": [0, 12], "x": 12, "y": 0},
|
||||
{"label": "0,13", "matrix": [0, 13], "x": 13, "y": 0},
|
||||
{"label": "0,14", "matrix": [0, 14], "x": 14, "y": 0},
|
||||
{"label": "0,15", "matrix": [0, 15], "x": 15, "y": 0},
|
||||
{"label": "1,0", "matrix": [1, 0], "x": 0, "y": 1, "w": 1.5},
|
||||
{"label": "1,1", "matrix": [1, 1], "x": 1.5, "y": 1},
|
||||
{"label": "1,2", "matrix": [1, 2], "x": 2.5, "y": 1},
|
||||
{"label": "1,3", "matrix": [1, 3], "x": 3.5, "y": 1},
|
||||
{"label": "1,4", "matrix": [1, 4], "x": 4.5, "y": 1},
|
||||
{"label": "1,5", "matrix": [1, 5], "x": 5.5, "y": 1},
|
||||
{"label": "1,6", "matrix": [1, 6], "x": 6.5, "y": 1},
|
||||
{"label": "1,7", "matrix": [1, 7], "x": 7.5, "y": 1},
|
||||
{"label": "1,,8", "matrix": [1, 8], "x": 8.5, "y": 1},
|
||||
{"label": "1,9", "matrix": [1, 9], "x": 9.5, "y": 1},
|
||||
{"label": "1,10", "matrix": [1, 10], "x": 10.5, "y": 1},
|
||||
{"label": "1,11", "matrix": [1, 11], "x": 11.5, "y": 1},
|
||||
{"label": "1,12", "matrix": [1, 12], "x": 12.5, "y": 1},
|
||||
{"label": "1,13", "matrix": [1, 13], "x": 13.5, "y": 1, "w": 1.5},
|
||||
{"label": "1,14", "matrix": [1, 14], "x": 15, "y": 1},
|
||||
{"label": "2,0", "matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||
{"label": "2,1", "matrix": [2, 1], "x": 1.75, "y": 2},
|
||||
{"label": "2,2", "matrix": [2, 2], "x": 2.75, "y": 2},
|
||||
{"label": "2,3", "matrix": [2, 3], "x": 3.75, "y": 2},
|
||||
{"label": "2,4", "matrix": [2, 4], "x": 4.75, "y": 2},
|
||||
{"label": "2,5", "matrix": [2, 5], "x": 5.75, "y": 2},
|
||||
{"label": "2,6", "matrix": [2, 6], "x": 6.75, "y": 2},
|
||||
{"label": "2,7", "matrix": [2, 7], "x": 7.75, "y": 2},
|
||||
{"label": "2,8", "matrix": [2, 8], "x": 8.75, "y": 2},
|
||||
{"label": "2,9", "matrix": [2, 9], "x": 9.75, "y": 2},
|
||||
{"label": "2,10", "matrix": [2, 10], "x": 10.75, "y": 2},
|
||||
{"label": "2,11", "matrix": [2, 11], "x": 11.75, "y": 2},
|
||||
{"label": "2,12", "matrix": [2, 12], "x": 12.75, "y": 2},
|
||||
{"label": "2,13", "matrix": [2, 13], "x": 13.75, "y": 2, "w": 1.25},
|
||||
{"label": "2,14", "matrix": [2, 14], "x": 15, "y": 2},
|
||||
{"label": "3,0", "matrix": [3, 0], "x": 0, "y": 3, "w": 1.25},
|
||||
{"label": "3,1", "matrix": [3, 1], "x": 1.25, "y": 3},
|
||||
{"label": "3,2", "matrix": [3, 2], "x": 2.25, "y": 3},
|
||||
{"label": "3,3", "matrix": [3, 3], "x": 3.25, "y": 3},
|
||||
{"label": "3,4", "matrix": [3, 4], "x": 4.25, "y": 3},
|
||||
{"label": "3,5", "matrix": [3, 5], "x": 5.25, "y": 3},
|
||||
{"label": "3,6", "matrix": [3, 6], "x": 6.25, "y": 3},
|
||||
{"label": "3,7", "matrix": [3, 7], "x": 7.25, "y": 3},
|
||||
{"label": "3,8", "matrix": [3, 8], "x": 8.25, "y": 3},
|
||||
{"label": "3,9", "matrix": [3, 9], "x": 9.25, "y": 3},
|
||||
{"label": "3,10", "matrix": [3, 10], "x": 10.25, "y": 3},
|
||||
{"label": "3,11", "matrix": [3, 11], "x": 11.25, "y": 3},
|
||||
{"label": "3,12", "matrix": [3, 12], "x": 12.25, "y": 3, "w": 1.75},
|
||||
{"label": "3,13", "matrix": [3, 13], "x": 14, "y": 3},
|
||||
{"label": "3,14", "matrix": [3, 14], "x": 15, "y": 3},
|
||||
{"label": "4,0", "matrix": [4, 0], "x": 0, "y": 4, "w": 1.25},
|
||||
{"label": "4,1", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,2", "matrix": [4, 2], "x": 2.5, "y": 4, "w": 1.25},
|
||||
{"label": "4,3", "matrix": [4, 3], "x": 3.75, "y": 4, "w": 6.25},
|
||||
{"label": "4,10", "matrix": [4, 10], "x": 10, "y": 4, "w": 1.25},
|
||||
{"label": "4,11", "matrix": [4, 11], "x": 11.25, "y": 4, "w": 1.25},
|
||||
{"label": "4,12", "matrix": [4, 12], "x": 13, "y": 4},
|
||||
{"label": "4,13", "matrix": [4, 13], "x": 14, "y": 4},
|
||||
{"label": "4,14", "matrix": [4, 14], "x": 15, "y": 4}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
21
keyboards/mykeyclub/jris65/keymaps/default/keymap.json
Normal file
21
keyboards/mykeyclub/jris65/keymaps/default/keymap.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"keyboard": "mykeyclub/jris65",
|
||||
"keymap": "default",
|
||||
"layout": "LAYOUT_all",
|
||||
"layers": [
|
||||
[
|
||||
"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_PGUP",
|
||||
"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_CAPS", "KC_A", "KC_S", "KC_D", "KC_F", "KC_G", "KC_H", "KC_J", "KC_K", "KC_L", "KC_SCLN", "KC_QUOT", "KC_BSLS", "KC_ENT", "KC_END",
|
||||
"KC_LSFT", "KC_BSLS", "KC_Z", "KC_X", "KC_C", "KC_V", "KC_B", "KC_N", "KC_M", "KC_DOT", "KC_COMM", "KC_SLSH", "KC_RSFT", "KC_UP", "KC_DEL",
|
||||
"KC_LCTL", "KC_LGUI", "KC_LALT", "KC_SPC", "KC_RALT", "MO(1)", "KC_LEFT", "KC_DOWN", "KC_RGHT"
|
||||
],
|
||||
[
|
||||
"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", "QK_BOOT", "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", "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"
|
||||
]
|
||||
]
|
||||
}
|
35
keyboards/mykeyclub/jris65/readme.md
Normal file
35
keyboards/mykeyclub/jris65/readme.md
Normal file
@@ -0,0 +1,35 @@
|
||||
# JRIS65
|
||||
|
||||

|
||||
**Hotswap PCB**
|
||||
|
||||
A 65% keyboard sold by Mykeyclub.
|
||||
|
||||
* Keyboard Maintainer: [The QMK Community](https://github.com/qmk)
|
||||
* Hardware Supported: JRIS65 R1 hotswap.
|
||||
* Hardware Availability: intermitently via group buys from [Mykeyclub](https://www.mykeyclub.com/)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make mykeyclub/jris65/hotswap:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make mykeyclub/jris65/hotswap: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:
|
||||
|
||||
* **Keycode in layout**: Using the default firmware, assign a key to Reset (`QK_BOOT`) and press the assigned key.
|
||||
* **Physical reset button**: Briefly press the button on the back of the PCB
|
||||
|
||||
The QMK default keymap has FN+Backspace assigned to `QK_BOOT` so you can use that key sequence for subsequent flashing.
|
||||
|
||||
## Disclaimer
|
||||
|
||||
In May 2024 Mykeyclub was contacted to see if they had interest in contributing firmware to the QMK project they did not. This code is thus community supported.
|
||||
|
||||
This firmware has only been tested with JRIS65 R1 hotswap and is likely to work with R2 hotswap. The soldered variant of this PCB requires testing, with actual hardware, before being added.
|
5
keyboards/mykeyclub/readme.md
Normal file
5
keyboards/mykeyclub/readme.md
Normal file
@@ -0,0 +1,5 @@
|
||||
# Mykeyclub
|
||||
|
||||
Mykeyclub is a retailer of mechanical keyboards and related products. They also facilitate the design and manufacture of keyboard products.
|
||||
|
||||
**Website:** https://www.mykeyclub.com/
|
@@ -43,6 +43,10 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
|
||||
for (uint8_t i = 50; i <= 55; i++) {
|
||||
rgb_matrix_set_color(i, 255, 86, 0);
|
||||
}
|
||||
} else if ((rgb_matrix_get_mode() == RGB_MATRIX_TYPING_HEATMAP) || (rgb_matrix_get_mode() == RGB_MATRIX_DIGITAL_RAIN)) {
|
||||
for (uint8_t i = 50; i <= 55; i++) {
|
||||
rgb_matrix_set_color(i, 0, 0, 0);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
25
keyboards/novelkeys/nk_classic_tkl_iso/config.h
Normal file
25
keyboards/novelkeys/nk_classic_tkl_iso/config.h
Normal file
@@ -0,0 +1,25 @@
|
||||
/* Copyright 2024 Yiancar-Designs
|
||||
*
|
||||
* 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
|
||||
|
||||
/* RGB options */
|
||||
|
||||
#define WS2812_PWM_DRIVER PWMD3
|
||||
#define WS2812_PWM_CHANNEL 3
|
||||
#define WS2812_PWM_PAL_MODE 1
|
||||
#define WS2812_DMA_STREAM STM32_DMA1_STREAM3
|
||||
#define WS2812_DMA_CHANNEL 3
|
21
keyboards/novelkeys/nk_classic_tkl_iso/halconf.h
Normal file
21
keyboards/novelkeys/nk_classic_tkl_iso/halconf.h
Normal file
@@ -0,0 +1,21 @@
|
||||
/* Copyright 2024 Yiancar-Designs
|
||||
*
|
||||
* 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 HAL_USE_PWM TRUE
|
||||
|
||||
#include_next <halconf.h>
|
270
keyboards/novelkeys/nk_classic_tkl_iso/keyboard.json
Executable file
270
keyboards/novelkeys/nk_classic_tkl_iso/keyboard.json
Executable file
@@ -0,0 +1,270 @@
|
||||
{
|
||||
"manufacturer": "Yiancar-Designs",
|
||||
"keyboard_name": "NK_ Classic TKL ISO",
|
||||
"maintainer": "Yiancar",
|
||||
"bootloader": "stm32-dfu",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"command": false,
|
||||
"console": false,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"nkro": true,
|
||||
"rgb_matrix": true
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["B12", "B13", "B14", "B15", "A8", "A10", "A14", "A15", "B3", "B4", "B5", "B6", "B7", "B8", "B9", "A0", "A1"],
|
||||
"rows": ["B11", "B10", "B2", "B1", "A9", "A5"]
|
||||
},
|
||||
"processor": "STM32F072",
|
||||
"rgb_matrix": {
|
||||
"animations": {
|
||||
"alphas_mods": true,
|
||||
"band_pinwheel_sat": true,
|
||||
"band_pinwheel_val": true,
|
||||
"band_sat": true,
|
||||
"band_spiral_sat": true,
|
||||
"band_spiral_val": true,
|
||||
"band_val": true,
|
||||
"breathing": true,
|
||||
"cycle_all": true,
|
||||
"cycle_left_right": true,
|
||||
"cycle_out_in": true,
|
||||
"cycle_out_in_dual": true,
|
||||
"cycle_pinwheel": true,
|
||||
"cycle_spiral": true,
|
||||
"cycle_up_down": true,
|
||||
"digital_rain": true,
|
||||
"dual_beacon": true,
|
||||
"gradient_left_right": true,
|
||||
"gradient_up_down": true,
|
||||
"hue_breathing": true,
|
||||
"hue_pendulum": true,
|
||||
"hue_wave": true,
|
||||
"jellybean_raindrops": true,
|
||||
"multisplash": true,
|
||||
"pixel_flow": true,
|
||||
"pixel_fractal": true,
|
||||
"pixel_rain": true,
|
||||
"rainbow_beacon": true,
|
||||
"rainbow_moving_chevron": true,
|
||||
"rainbow_pinwheels": true,
|
||||
"raindrops": true,
|
||||
"solid_multisplash": true,
|
||||
"solid_reactive": true,
|
||||
"solid_reactive_cross": true,
|
||||
"solid_reactive_multicross": true,
|
||||
"solid_reactive_multinexus": true,
|
||||
"solid_reactive_multiwide": true,
|
||||
"solid_reactive_nexus": true,
|
||||
"solid_reactive_simple": true,
|
||||
"solid_reactive_wide": true,
|
||||
"solid_splash": true,
|
||||
"splash": true,
|
||||
"typing_heatmap": true
|
||||
},
|
||||
"driver": "ws2812",
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0, "flags": 1},
|
||||
{"matrix": [0, 1], "x": 26, "y": 0, "flags": 4},
|
||||
{"matrix": [0, 2], "x": 38, "y": 0, "flags": 4},
|
||||
{"matrix": [0, 3], "x": 51, "y": 0, "flags": 4},
|
||||
{"matrix": [0, 4], "x": 64, "y": 0, "flags": 4},
|
||||
{"matrix": [0, 5], "x": 83, "y": 0, "flags": 1},
|
||||
{"matrix": [0, 6], "x": 96, "y": 0, "flags": 1},
|
||||
{"matrix": [0, 7], "x": 109, "y": 0, "flags": 1},
|
||||
{"matrix": [0, 8], "x": 122, "y": 0, "flags": 1},
|
||||
{"matrix": [0, 9], "x": 141, "y": 0, "flags": 4},
|
||||
{"matrix": [0, 10], "x": 154, "y": 0, "flags": 4},
|
||||
{"matrix": [0, 11], "x": 166, "y": 0, "flags": 4},
|
||||
{"matrix": [0, 12], "x": 179, "y": 0, "flags": 4},
|
||||
{"matrix": [0, 14], "x": 195, "y": 0, "flags": 1},
|
||||
{"matrix": [0, 15], "x": 208, "y": 0, "flags": 1},
|
||||
{"matrix": [0, 16], "x": 221, "y": 0, "flags": 1},
|
||||
{"matrix": [1, 16], "x": 221, "y": 15, "flags": 1},
|
||||
{"matrix": [1, 15], "x": 208, "y": 15, "flags": 1},
|
||||
{"matrix": [1, 14], "x": 195, "y": 15, "flags": 1},
|
||||
{"matrix": [1, 13], "x": 173, "y": 15, "flags": 1},
|
||||
{"matrix": [1, 12], "x": 154, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 11], "x": 141, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 10], "x": 128, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 9], "x": 115, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 8], "x": 102, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 7], "x": 90, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 6], "x": 77, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 5], "x": 64, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 4], "x": 51, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 3], "x": 38, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 2], "x": 26, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 1], "x": 13, "y": 15, "flags": 4},
|
||||
{"matrix": [1, 0], "x": 0, "y": 15, "flags": 4},
|
||||
{"matrix": [2, 0], "x": 3, "y": 27, "flags": 1},
|
||||
{"matrix": [2, 1], "x": 19, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 2], "x": 32, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 3], "x": 45, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 4], "x": 58, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 5], "x": 70, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 6], "x": 83, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 7], "x": 96, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 8], "x": 109, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 9], "x": 122, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 10], "x": 134, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 11], "x": 147, "y": 27, "flags": 4},
|
||||
{"matrix": [2, 12], "x": 160, "y": 27, "flags": 4},
|
||||
{"matrix": [3, 13], "x": 178, "y": 21, "flags": 1},
|
||||
{"matrix": [2, 14], "x": 195, "y": 27, "flags": 1},
|
||||
{"matrix": [2, 15], "x": 208, "y": 27, "flags": 1},
|
||||
{"matrix": [2, 16], "x": 221, "y": 27, "flags": 1},
|
||||
{"x": 224, "y": 34, "flags": 9},
|
||||
{"x": 218, "y": 34, "flags": 9},
|
||||
{"x": 211, "y": 34, "flags": 9},
|
||||
{"x": 205, "y": 34, "flags": 9},
|
||||
{"x": 198, "y": 34, "flags": 9},
|
||||
{"x": 192, "y": 34, "flags": 9},
|
||||
{"matrix": [3, 12], "x": 163, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 11], "x": 150, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 10], "x": 138, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 9], "x": 125, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 8], "x": 112, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 7], "x": 99, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 6], "x": 86, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 5], "x": 74, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 4], "x": 61, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 3], "x": 48, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 2], "x": 35, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 1], "x": 22, "y": 40, "flags": 4},
|
||||
{"matrix": [3, 0], "x": 5, "y": 40, "flags": 1},
|
||||
{"matrix": [4, 0], "x": 1, "y": 52, "flags": 1},
|
||||
{"matrix": [4, 1], "x": 16, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 2], "x": 29, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 3], "x": 42, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 4], "x": 54, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 5], "x": 67, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 6], "x": 80, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 7], "x": 93, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 8], "x": 106, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 9], "x": 118, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 10], "x": 131, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 11], "x": 144, "y": 52, "flags": 4},
|
||||
{"matrix": [4, 12], "x": 168, "y": 52, "flags": 1},
|
||||
{"matrix": [4, 15], "x": 208, "y": 52, "flags": 1},
|
||||
{"matrix": [5, 16], "x": 221, "y": 64, "flags": 1},
|
||||
{"matrix": [5, 15], "x": 208, "y": 64, "flags": 1},
|
||||
{"matrix": [5, 14], "x": 195, "y": 64, "flags": 1},
|
||||
{"matrix": [5, 13], "x": 176, "y": 64, "flags": 1},
|
||||
{"matrix": [5, 12], "x": 160, "y": 64, "flags": 1},
|
||||
{"matrix": [5, 11], "x": 144, "y": 64, "flags": 1},
|
||||
{"matrix": [5, 6], "x": 90, "y": 64, "flags": 4},
|
||||
{"matrix": [5, 2], "x": 35, "y": 64, "flags": 1},
|
||||
{"matrix": [5, 1], "x": 19, "y": 64, "flags": 1},
|
||||
{"matrix": [5, 0], "x": 3, "y": 64, "flags": 1}
|
||||
],
|
||||
"max_brightness": 120,
|
||||
"sleep": true
|
||||
},
|
||||
"url": "www.yiancar-designs.com",
|
||||
"usb": {
|
||||
"device_version": "0.0.1",
|
||||
"pid": "0x4E55",
|
||||
"vid": "0x8968"
|
||||
},
|
||||
"ws2812": {
|
||||
"driver": "pwm",
|
||||
"pin": "B0"
|
||||
},
|
||||
"community_layouts": ["tkl_iso_tsangan"],
|
||||
"layouts": {
|
||||
"LAYOUT_tkl_iso_tsangan": {
|
||||
"layout": [
|
||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"matrix": [0, 1], "x": 2, "y": 0},
|
||||
{"matrix": [0, 2], "x": 3, "y": 0},
|
||||
{"matrix": [0, 3], "x": 4, "y": 0},
|
||||
{"matrix": [0, 4], "x": 5, "y": 0},
|
||||
{"matrix": [0, 5], "x": 6.5, "y": 0},
|
||||
{"matrix": [0, 6], "x": 7.5, "y": 0},
|
||||
{"matrix": [0, 7], "x": 8.5, "y": 0},
|
||||
{"matrix": [0, 8], "x": 9.5, "y": 0},
|
||||
{"matrix": [0, 9], "x": 11, "y": 0},
|
||||
{"matrix": [0, 10], "x": 12, "y": 0},
|
||||
{"matrix": [0, 11], "x": 13, "y": 0},
|
||||
{"matrix": [0, 12], "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": [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": [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": [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": [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},
|
||||
{"matrix": [3, 13], "x": 13.75, "y": 2.25, "w": 1.25, "h": 2},
|
||||
{"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": 2.75},
|
||||
{"matrix": [4, 15], "x": 16.25, "y": 4.25},
|
||||
{"matrix": [5, 0], "x": 0, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 1], "x": 1.5, "y": 5.25},
|
||||
{"matrix": [5, 2], "x": 2.5, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 6], "x": 4, "y": 5.25, "w": 7},
|
||||
{"matrix": [5, 11], "x": 11, "y": 5.25, "w": 1.5},
|
||||
{"matrix": [5, 12], "x": 12.5, "y": 5.25},
|
||||
{"matrix": [5, 13], "x": 13.5, "y": 5.25, "w": 1.5},
|
||||
{"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}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,73 @@
|
||||
/* Copyright 2024 Yiancar-Designs
|
||||
*
|
||||
* 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 my_keycodes {
|
||||
RETRO_RGB = QK_USER_0
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[0] = LAYOUT_tkl_iso_tsangan( /* Base */
|
||||
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_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_INS, KC_HOME, KC_PGUP,
|
||||
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_DEL, KC_END, KC_PGDN,
|
||||
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, KC_UP,
|
||||
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT),
|
||||
|
||||
[1] = LAYOUT_tkl_iso_tsangan( /* FN */
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_VOLU, KC_VOLD, KC_MUTE,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, RGB_TOG, RGB_MOD, RGB_HUD, RGB_HUI, RGB_SAD, RGB_SAI, RGB_VAD, RGB_VAI, RGB_SPD, RGB_SPI, _______, _______,
|
||||
_______, _______, _______, RETRO_RGB, _______, _______, _______, _______, _______, _______),
|
||||
|
||||
};
|
||||
|
||||
bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
|
||||
if (host_keyboard_led_state().caps_lock) {
|
||||
for (uint8_t i = 50; i <= 55; i++) {
|
||||
rgb_matrix_set_color(i, 255, 86, 0);
|
||||
}
|
||||
} else if ((rgb_matrix_get_mode() == RGB_MATRIX_TYPING_HEATMAP) || (rgb_matrix_get_mode() == RGB_MATRIX_DIGITAL_RAIN)) {
|
||||
for (uint8_t i = 50; i <= 55; i++) {
|
||||
rgb_matrix_set_color(i, 0, 0, 0);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||
switch (keycode) {
|
||||
case RETRO_RGB:
|
||||
if (record->event.pressed) {
|
||||
switch (rgb_matrix_get_flags()) {
|
||||
case LED_FLAG_ALL: {
|
||||
rgb_matrix_set_flags(LED_FLAG_INDICATOR);
|
||||
}
|
||||
break;
|
||||
default: {
|
||||
rgb_matrix_set_flags(LED_FLAG_ALL);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return false; // Skip all further processing of this key
|
||||
default:
|
||||
return true; // Process all other keycodes normally
|
||||
}
|
||||
}
|
22
keyboards/novelkeys/nk_classic_tkl_iso/mcuconf.h
Normal file
22
keyboards/novelkeys/nk_classic_tkl_iso/mcuconf.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/* Copyright 2024 Yiancar-Designs
|
||||
*
|
||||
* 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
|
||||
|
||||
#include_next <mcuconf.h>
|
||||
|
||||
#undef STM32_PWM_USE_TIM3
|
||||
#define STM32_PWM_USE_TIM3 TRUE
|
32
keyboards/novelkeys/nk_classic_tkl_iso/readme.md
Normal file
32
keyboards/novelkeys/nk_classic_tkl_iso/readme.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# NK Classic TKL
|
||||
|
||||
This is a TKL ISO PCB. It supports VIA and full per-key RGB.
|
||||
|
||||
* Keyboard Maintainer: [Yiancar](https://yiancar-designs.com/) and on [GitHub](https://github.com/yiancar)
|
||||
* Hardware Supported: A TKL keyboard with STM32F072CB or APM compatible
|
||||
* Hardware Availability: https://novelkeys.com/
|
||||
|
||||
## Instructions
|
||||
|
||||
### Build
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make novelkeys/nk_classic_tkl_iso:default
|
||||
|
||||
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).
|
||||
|
||||
### Reset
|
||||
|
||||
- Unplug
|
||||
- Hold Escape
|
||||
- Plug In
|
||||
- Unplug
|
||||
- Release Escape
|
||||
|
||||
### Flash
|
||||
|
||||
- Unplug
|
||||
- Hold Escape
|
||||
- Plug In
|
||||
- Flash using QMK Toolbox or dfu-util (`make novelkeys/nk_classic_tkl_iso:<keymap>:dfu-util`)
|
2
keyboards/novelkeys/nk_classic_tkl_iso/rules.mk
Normal file
2
keyboards/novelkeys/nk_classic_tkl_iso/rules.mk
Normal file
@@ -0,0 +1,2 @@
|
||||
# Wildcard to allow APM32 MCU
|
||||
DFU_SUFFIX_ARGS = -v FFFF -p FFFF
|
25
keyboards/noxary/valhalla_v2/valhalla_v2.c
Normal file
25
keyboards/noxary/valhalla_v2/valhalla_v2.c
Normal file
@@ -0,0 +1,25 @@
|
||||
/* Copyright 2023 Gondolindrim <gondolindrim@acheronproject.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 "quantum.h"
|
||||
|
||||
bool led_update_kb(led_t led_state) {
|
||||
if (!led_update_user(led_state)) {
|
||||
return false;
|
||||
}
|
||||
(led_state.caps_lock && is_backlight_enabled()) ? backlight_set(get_backlight_level()) : backlight_set(0);
|
||||
return true;
|
||||
}
|
171
keyboards/thumbsup/keymaps/default/keymap.c
Normal file
171
keyboards/thumbsup/keymaps/default/keymap.c
Normal file
@@ -0,0 +1,171 @@
|
||||
/* Copyright 2022 Alexander (Sasha) Karmanov
|
||||
*
|
||||
* 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
|
||||
|
||||
// Defines names for use in layer keycodes and the keymap
|
||||
enum layer_names {
|
||||
_QWERTY,
|
||||
_CURSORLEFT,
|
||||
_CURSORRGHT,
|
||||
_NUMBERS,
|
||||
_EXTRARIGHT
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
/* Qwerty
|
||||
* ,-----------------------------------------+ +-----------------------------------------.
|
||||
* | Esc | Q | W | E | R | T | | Y | U | I | O | P |BSpc |
|
||||
* |------+------+------+------+------+------+ +------+------+------+------+------+------|
|
||||
* | Tab | A | S | D | F | G | | H | J | K | L | ; |Enter |
|
||||
Hold:
|
||||
Extra-Rt
|
||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||
* | Ctrl | Z | X | C | V | B | | N | M | , | . | / |RCtrl |
|
||||
* +------+------+------+------+------+------+ +------+------+------+------+------+------+
|
||||
. | GUI | Alt | | | | | | RAlt | Menu | .
|
||||
| +------+------+ | | | | +------+------+ |
|
||||
Hold: | | LSft |CursLt| |CursRt| RSft | |
|
||||
Single hit: | | |Space | |Space | | |
|
||||
| +------+------| |------+------+ |
|
||||
+------------------------------> SPACE SPACE <-----------------------------+
|
||||
|
||||
*/
|
||||
[_QWERTY] = LAYOUT(
|
||||
KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
|
||||
LT(_EXTRARIGHT,KC_TAB), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_PENT,
|
||||
KC_LCTL, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RCTL,
|
||||
KC_SPC, KC_LGUI, KC_LALT, KC_LSFT, LT(_CURSORLEFT,KC_SPC), LT(_CURSORRGHT ,KC_SPC), KC_RSFT, KC_RALT, KC_APP, KC_SPC
|
||||
),
|
||||
|
||||
|
||||
/*
|
||||
|
||||
Layers below are used on top of QWERTY layer defined above.
|
||||
(Except the PLOVER/STENO layers.)
|
||||
+-------+
|
||||
The keys which are shown empty, like this: | |, represent a transparent key,
|
||||
+-------+
|
||||
meaning the key from the underlaying layer (i.e. QWERTY) will be used.
|
||||
In the keymaps those keys are defined as "_______".
|
||||
|
||||
+-------+ +-------+
|
||||
The keys which are shown solid, like this: | XXXXX | or this | ... |, represent an opaque/blocking key?
|
||||
+-------+ +-------+
|
||||
Such key is not doing anything in that layer nor allowing the key from the underlaying layer
|
||||
to be invoked.
|
||||
In the keymaps those keys are defined as "XXXXXXX".
|
||||
|
||||
Most of the modifiers are the same in all layers.
|
||||
So in most layers they are defined as transparent keys,
|
||||
letting the keys from QWERTY layer to do the work.
|
||||
|
||||
With that idea all the layers below leave the unmodified keys as transparent keys.
|
||||
In the same time - the layers block the keys that have no sense to be used
|
||||
in that given layer. For instance in the cursor control layers
|
||||
some of the keys are not used in the layer, but they are blocked to avoid
|
||||
alpha-keys from QWERTY layer to appear.
|
||||
|
||||
For the same reason the keymaps below are shown simplified,
|
||||
without separate thumbcluster.
|
||||
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/* Cursor Control on the right (Right Space)
|
||||
* ,-----------------------------------------------------------------------------------.
|
||||
* | Esc |Break |WheelD|MousUp|WheelU| Del | Ins | Home | Up | End | ` | Del |
|
||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
* | |SelAll|MousLt|MousDn|MousRt| ... | PgUp | Left | Down |Right | ... | |
|
||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
* | | Undo | Cut | Copy | Paste| ... | PgDn |MsBtLe|MsBtMi|MsBtRt| ... | |
|
||||
* `------+------+------+------+------+------+------+------+------+------+------+------.
|
||||
* | | | | | X | | | |
|
||||
* `-------------------------------------------------------'
|
||||
*/
|
||||
[_CURSORRGHT] = LAYOUT(
|
||||
_______, KC_BRK, KC_WH_D, KC_MS_U, KC_WH_U, KC_DEL, KC_PGUP, KC_HOME, KC_UP, KC_END, KC_GRV, KC_DEL,
|
||||
KC_ENT, LCTL(KC_A), KC_MS_L, KC_MS_D, KC_MS_R, XXXXXXX, KC_PGDN, KC_LEFT, KC_DOWN, KC_RGHT, XXXXXXX, _______,
|
||||
_______, LCTL(KC_Z), LSFT(KC_DEL), LCTL(KC_INS), LSFT(KC_INS), XXXXXXX, KC_INS, KC_BTN1, KC_BTN3, KC_BTN2, XXXXXXX, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
|
||||
|
||||
|
||||
/* Cursor Control on the left (Left Space)
|
||||
* ,-----------------------------------------------------------------------------------.
|
||||
* | |Break | Home | Up | End | Ins | Del |WheelU|MousUp|WheelD| ` | Del |
|
||||
* |------+------+------+------+------+------+-------------+------+------+------+------|
|
||||
* | Enter|SelAll|Right | Down | Left | PgUp | xxx |MousLt|MousDn|MousRt| xxx |Enter |
|
||||
* |------+------+------+------+------+------+------|------+------+------+------+------|
|
||||
* | | xxx |MsBtRt|MsBtMi|MsBtLe| PgDn | xxx | Cut | Copy | Paste| xxx | |
|
||||
* `------+------+------+------+------+------+------+------+------+------+------+------.
|
||||
* | | | | X | | | | |
|
||||
* `-------------------------------------------------------'
|
||||
*/
|
||||
[_CURSORLEFT] = LAYOUT(
|
||||
_______, KC_BRK, KC_HOME, KC_UP, KC_END, KC_PGUP, KC_DEL, KC_WH_U, KC_MS_U, KC_WH_D, KC_GRV, KC_DEL,
|
||||
KC_ENT, LCTL(KC_A), KC_LEFT, KC_DOWN, KC_RGHT, KC_PGDN, XXXXXXX, KC_MS_L, KC_MS_D, KC_MS_R, XXXXXXX, _______,
|
||||
_______, XXXXXXX, KC_BTN2, KC_BTN3, KC_BTN1, KC_INS, XXXXXXX, LCTL(KC_DEL), LCTL(KC_INS), LSFT(KC_INS), XXXXXXX, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
|
||||
|
||||
/* Numbers on the home row, FNs on the top row, symbols in the second row
|
||||
* (Lower or Raise)
|
||||
* ,-----------------------------------------------------------------------------------.
|
||||
* | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 |BackSp|
|
||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
* | | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10| Enter|
|
||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
* | | F11 | F12 | LAlt |LShift| LAlt | RAlt |RShift| , | . | / | |
|
||||
* `------+------+------+------+------+------+------+------+------+------+------+------.
|
||||
* | | | | | | | | |
|
||||
* `-------------------------------------------------------'
|
||||
*/
|
||||
[_NUMBERS] = LAYOUT(
|
||||
_______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
|
||||
LT(_EXTRARIGHT,KC_TAB), 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_LALT, KC_LSFT, KC_LALT, KC_RALT, KC_RSFT, KC_COMM, KC_DOT, KC_SLSH, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
|
||||
/* ExtraRightSide (the keys from the right side which did not fit into the matrix)
|
||||
* ,-----------------------------------------------------------------------------------.
|
||||
* | Esc |BREAK |PLOVR2|PLOVER|TxBOLT|TxBlt2| ` | = | ( | ) | - | |
|
||||
* |------+------+------+------+------+-------------+------+------+------+------+------|
|
||||
* |******| | | | | |PrtScr| | | | ' | |
|
||||
This is the
|
||||
key turning
|
||||
this layer on
|
||||
* |------+------+------+------+------+------|------+------+------+------+------+------|
|
||||
* | | | |NumPad|Qwerty| | | | [ | ] | \ | |
|
||||
* `------+------+------+------+------+------+------+------+------+------+------+------.
|
||||
* | | | | | | | | |
|
||||
* `-------------------------------------------------------'
|
||||
*/
|
||||
[_EXTRARIGHT] = LAYOUT(
|
||||
_______, KC_BRK, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_GRV, KC_EQL, KC_LPRN, KC_RPRN, KC_MINS, _______,
|
||||
_______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_PSCR, XXXXXXX, XXXXXXX, XXXXXXX, KC_QUOT, _______,
|
||||
_______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LBRC, KC_RBRC, KC_BSLS, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
)
|
||||
};
|
||||
|
||||
layer_state_t layer_state_set_user(layer_state_t state) {
|
||||
return update_tri_layer_state(state, _CURSORLEFT, _CURSORRGHT, _NUMBERS);
|
||||
}
|
28
keyboards/thumbsup/rev9_promicro_4x12/config.h
Normal file
28
keyboards/thumbsup/rev9_promicro_4x12/config.h
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
Copyright 2024 Alexander (Sasha) Karmanov (ak66666)
|
||||
|
||||
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
|
||||
|
||||
|
||||
//Cirque ProGlide Touchpad configuration
|
||||
#define POINTING_DEVICE_ROTATION_90
|
||||
#define CIRQUE_PINNACLE_TAP_ENABLE
|
||||
#define CIRQUE_PINNACLE_SECONDARY_TAP_ENABLE
|
||||
#define POINTING_DEVICE_GESTURES_SCROLL_ENABLE
|
||||
|
||||
#define CIRQUE_PINNACLE_POSITION_MODE CIRQUE_PINNACLE_ABSOLUTE_MODE
|
77
keyboards/thumbsup/rev9_promicro_4x12/keyboard.json
Normal file
77
keyboards/thumbsup/rev9_promicro_4x12/keyboard.json
Normal file
@@ -0,0 +1,77 @@
|
||||
{
|
||||
"manufacturer": "Alexander (Sasha) Karmanov",
|
||||
"keyboard_name": "ThumbsUp! v9",
|
||||
"maintainer": "u/ak66666",
|
||||
"development_board": "promicro",
|
||||
"diode_direction": "COL2ROW",
|
||||
"features": {
|
||||
"bootmagic": true,
|
||||
"extrakey": true,
|
||||
"mousekey": true,
|
||||
"pointing_device": true
|
||||
},
|
||||
"dynamic_keymap": {
|
||||
"layer_count": 6
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["B2", "B6", "B5", "B4", "E6", "D7", "B3", "F4", "F5", "F6", "F7", "B1"],
|
||||
"rows": ["D3", "D2", "D4", "C6"]
|
||||
},
|
||||
"usb": {
|
||||
"device_version": "1.0.0",
|
||||
"pid": "0x0090",
|
||||
"vid": "0x5361"
|
||||
},
|
||||
"layouts": {
|
||||
"LAYOUT": {
|
||||
"layout": [
|
||||
{"label": "ESC", "matrix": [0, 0], "x": 0, "y": 0},
|
||||
{"label": "Q", "matrix": [0, 1], "x": 1, "y": 0},
|
||||
{"label": "W", "matrix": [0, 2], "x": 2, "y": 0},
|
||||
{"label": "E", "matrix": [0, 3], "x": 3, "y": 0},
|
||||
{"label": "R", "matrix": [0, 4], "x": 4, "y": 0},
|
||||
{"label": "T", "matrix": [0, 5], "x": 5, "y": 0},
|
||||
{"label": "Y", "matrix": [0, 6], "x": 6, "y": 0},
|
||||
{"label": "U", "matrix": [0, 7], "x": 7, "y": 0},
|
||||
{"label": "I", "matrix": [0, 8], "x": 8, "y": 0},
|
||||
{"label": "O", "matrix": [0, 9], "x": 9, "y": 0},
|
||||
{"label": "P", "matrix": [0, 10], "x": 10, "y": 0},
|
||||
{"label": "BKSPC", "matrix": [0, 11], "x": 11, "y": 0},
|
||||
{"label": "TAB", "matrix": [1, 0], "x": 0, "y": 1},
|
||||
{"label": "A", "matrix": [1, 1], "x": 1, "y": 1},
|
||||
{"label": "S", "matrix": [1, 2], "x": 2, "y": 1},
|
||||
{"label": "D", "matrix": [1, 3], "x": 3, "y": 1},
|
||||
{"label": "F", "matrix": [1, 4], "x": 4, "y": 1},
|
||||
{"label": "G", "matrix": [1, 5], "x": 5, "y": 1},
|
||||
{"label": "H", "matrix": [1, 6], "x": 6, "y": 1},
|
||||
{"label": "J", "matrix": [1, 7], "x": 7, "y": 1},
|
||||
{"label": "K", "matrix": [1, 8], "x": 8, "y": 1},
|
||||
{"label": "L", "matrix": [1, 9], "x": 9, "y": 1},
|
||||
{"label": ";", "matrix": [1, 10], "x": 10, "y": 1},
|
||||
{"label": "ENTER", "matrix": [1, 11], "x": 11, "y": 1},
|
||||
{"label": "LCTRL", "matrix": [2, 0], "x": 0, "y": 2},
|
||||
{"label": "Z", "matrix": [2, 1], "x": 1, "y": 2},
|
||||
{"label": "X", "matrix": [2, 2], "x": 2, "y": 2},
|
||||
{"label": "C", "matrix": [2, 3], "x": 3, "y": 2},
|
||||
{"label": "V", "matrix": [2, 4], "x": 4, "y": 2},
|
||||
{"label": "B", "matrix": [2, 5], "x": 5, "y": 2},
|
||||
{"label": "N", "matrix": [2, 6], "x": 6, "y": 2},
|
||||
{"label": "M", "matrix": [2, 7], "x": 7, "y": 2},
|
||||
{"label": ",", "matrix": [2, 8], "x": 8, "y": 2},
|
||||
{"label": ".", "matrix": [2, 9], "x": 9, "y": 2},
|
||||
{"label": "/", "matrix": [2, 10], "x": 10, "y": 2},
|
||||
{"label": "RCTRL", "matrix": [2, 11], "x": 11, "y": 2},
|
||||
{"label": "SPACE", "matrix": [3, 1], "x": 1, "y": 3},
|
||||
{"label": "WIN", "matrix": [3, 2], "x": 2, "y": 3},
|
||||
{"label": "LALT", "matrix": [3, 3], "x": 3, "y": 3},
|
||||
{"label": "LSHIFT", "matrix": [3, 5], "x": 4, "y": 3},
|
||||
{"label": "RAISE", "matrix": [3, 4], "x": 5, "y": 3},
|
||||
{"label": "LOWER", "matrix": [3, 7], "x": 6, "y": 3},
|
||||
{"label": "RSHIFT", "matrix": [3, 6], "x": 7, "y": 3},
|
||||
{"label": "RALT", "matrix": [3, 8], "x": 8, "y": 3},
|
||||
{"label": "MENU", "matrix": [3, 9], "x": 9, "y": 3},
|
||||
{"label": "SPACE", "matrix": [3, 10], "x": 10, "y": 3}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
27
keyboards/thumbsup/rev9_promicro_4x12/readme.md
Normal file
27
keyboards/thumbsup/rev9_promicro_4x12/readme.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# ThumbsUp! v9
|
||||
|
||||

|
||||
|
||||
A yet another version of the ThumbsUp! keyboard, a three-level PCB-based keyboard supporting Kailh Choc (1350) switches.
|
||||
This v9 version got 4x12 key layout with 2- or 3-key thumbcluster and an optional touchpad.
|
||||
|
||||
|
||||
* Keyboard Maintainer: [Alexander (Sasha) Karmanov](https://github.com/ak66666)
|
||||
* Hardware Supported: AtMega32u4 ProMicro-compatibles
|
||||
* Hardware Availability: https://www.etsy.com/ca/listing/1641077896/thumbsup-v9-ergonomic-mechanical
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make thumbsup/rev9_promicro_4x12:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make thumbsup/rev9_promicro_4x12: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:
|
||||
|
||||
* **Physical reset button**: Press twice the button on the bottom side of the middle PCB.
|
1
keyboards/thumbsup/rev9_promicro_4x12/rules.mk
Normal file
1
keyboards/thumbsup/rev9_promicro_4x12/rules.mk
Normal file
@@ -0,0 +1 @@
|
||||
POINTING_DEVICE_DRIVER = cirque_pinnacle_i2c
|
@@ -102,6 +102,8 @@ __attribute__((weak)) uint16_t combo_count(void) {
|
||||
return combo_count_raw();
|
||||
}
|
||||
|
||||
_Static_assert(ARRAY_SIZE(key_combos) <= (QK_KB), "Number of combos is abnormally high. Are you using SAFE_RANGE in an enum for combos?");
|
||||
|
||||
combo_t* combo_get_raw(uint16_t combo_idx) {
|
||||
if (combo_idx >= combo_count_raw()) {
|
||||
return NULL;
|
||||
@@ -127,6 +129,8 @@ __attribute__((weak)) uint16_t tap_dance_count(void) {
|
||||
return tap_dance_count_raw();
|
||||
}
|
||||
|
||||
_Static_assert(ARRAY_SIZE(tap_dance_actions) <= (QK_TAP_DANCE_MAX - QK_TAP_DANCE), "Number of tap dance actions exceeds maximum. Are you using SAFE_RANGE in tap dance enum?");
|
||||
|
||||
tap_dance_action_t* tap_dance_get_raw(uint16_t tap_dance_idx) {
|
||||
if (tap_dance_idx >= tap_dance_count_raw()) {
|
||||
return NULL;
|
||||
@@ -153,6 +157,8 @@ __attribute__((weak)) uint16_t key_override_count(void) {
|
||||
return key_override_count_raw();
|
||||
}
|
||||
|
||||
_Static_assert(ARRAY_SIZE(key_overrides) <= (QK_KB), "Number of key overrides is abnormally high. Are you using SAFE_RANGE in an enum for key overrides?");
|
||||
|
||||
const key_override_t* key_override_get_raw(uint16_t key_override_idx) {
|
||||
if (key_override_idx >= key_override_count_raw()) {
|
||||
return NULL;
|
||||
|
@@ -5,6 +5,7 @@ _qmk_install() {
|
||||
|
||||
. /etc/os-release
|
||||
if [ "$VERSION_ID" -ge "39" ]; then
|
||||
sudo dnf copr -h >/dev/null 2>&1 || sudo dnf $SKIP_PROMPT install dnf-plugins-core
|
||||
sudo dnf $SKIP_PROMPT copr enable erovia/dfu-programmer
|
||||
fi
|
||||
|
||||
|
Reference in New Issue
Block a user