forked from mirrors/qmk_firmware
refactor: projectcain/vault35 (#22558)
This commit is contained in:
parent
75a43ddf55
commit
81d601b725
7 changed files with 141 additions and 110 deletions
45
keyboards/projectcain/vault35/atmega32u4/info.json
Normal file
45
keyboards/projectcain/vault35/atmega32u4/info.json
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"bootloader": "atmel-dfu",
|
||||||
|
"build": {
|
||||||
|
"lto": true
|
||||||
|
},
|
||||||
|
"encoder": {
|
||||||
|
"rotary": [
|
||||||
|
{"pin_a": "D7", "pin_b": "D6", "resolution": 2}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"encoder": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"nkro": true,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B1", "D3", "F0", "F1", "F4", "F5", "F6", "F7", "C6", "B6", "B5"],
|
||||||
|
"rows": ["B4", "D4", "B0", "C7"]
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"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
|
||||||
|
},
|
||||||
|
"brightness_steps": 8,
|
||||||
|
"led_count": 12,
|
||||||
|
"saturation_steps": 8,
|
||||||
|
"sleep": true
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "D5"
|
||||||
|
}
|
||||||
|
}
|
1
keyboards/projectcain/vault35/atmega32u4/rules.mk
Normal file
1
keyboards/projectcain/vault35/atmega32u4/rules.mk
Normal file
|
@ -0,0 +1 @@
|
||||||
|
# This file intentionally left blank
|
|
@ -1,36 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2021 projectcain
|
|
||||||
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
|
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
|
||||||
#define LOCKING_SUPPORT_ENABLE
|
|
||||||
/* Locking resynchronize hack */
|
|
||||||
#define LOCKING_RESYNC_ENABLE
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Feature disable options
|
|
||||||
* These options are also useful to firmware size reduction.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* disable debug print */
|
|
||||||
//#define NO_DEBUG
|
|
||||||
|
|
||||||
/* disable print */
|
|
||||||
//#define NO_PRINT
|
|
||||||
|
|
||||||
/* disable action features */
|
|
||||||
//#define NO_ACTION_LAYER
|
|
||||||
//#define NO_ACTION_TAPPING
|
|
||||||
//#define NO_ACTION_ONESHOT
|
|
|
@ -1,27 +1,22 @@
|
||||||
{
|
{
|
||||||
"keyboard_name": "Vault35",
|
|
||||||
"manufacturer": "projectcain",
|
"manufacturer": "projectcain",
|
||||||
"url": "",
|
"keyboard_name": "Vault35",
|
||||||
"maintainer": "projectcain",
|
"maintainer": "projectcain",
|
||||||
"usb": {
|
|
||||||
"vid": "0xFEED",
|
|
||||||
"pid": "0x6060",
|
|
||||||
"device_version": "0.0.1"
|
|
||||||
},
|
|
||||||
"matrix_pins": {
|
|
||||||
"cols": ["B1", "D3", "F0", "F1", "F4", "F5", "F6", "F7", "C6", "B6", "B5"],
|
|
||||||
"rows": ["B4", "D4", "B0", "C7"]
|
|
||||||
},
|
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
"encoder": {
|
"qmk": {
|
||||||
"rotary": [
|
"locking": {
|
||||||
{"pin_a": "D6", "pin_b": "D7", "resolution": 2}
|
"enabled": true,
|
||||||
]
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"url": "https://mechvault.net",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "0.0.1",
|
||||||
|
"pid": "0x6060",
|
||||||
|
"vid": "0xFEED"
|
||||||
},
|
},
|
||||||
"processor": "atmega32u4",
|
|
||||||
"bootloader": "atmel-dfu",
|
|
||||||
"layouts": {
|
"layouts": {
|
||||||
"LAYOUT_split_4space": {
|
"LAYOUT_all": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||||
{"matrix": [0, 1], "x": 1, "y": 0},
|
{"matrix": [0, 1], "x": 1, "y": 0},
|
||||||
|
@ -33,8 +28,7 @@
|
||||||
{"matrix": [0, 7], "x": 7, "y": 0},
|
{"matrix": [0, 7], "x": 7, "y": 0},
|
||||||
{"matrix": [0, 8], "x": 8, "y": 0},
|
{"matrix": [0, 8], "x": 8, "y": 0},
|
||||||
{"matrix": [0, 9], "x": 9, "y": 0},
|
{"matrix": [0, 9], "x": 9, "y": 0},
|
||||||
{"matrix": [0, 10], "x": 10, "y": 0},
|
{"matrix": [0, 10], "x": 10, "y": 0, "encoder": 0},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25},
|
||||||
{"matrix": [1, 1], "x": 1.25, "y": 1},
|
{"matrix": [1, 1], "x": 1.25, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.25, "y": 1},
|
{"matrix": [1, 2], "x": 2.25, "y": 1},
|
||||||
|
@ -45,7 +39,6 @@
|
||||||
{"matrix": [1, 7], "x": 7.25, "y": 1},
|
{"matrix": [1, 7], "x": 7.25, "y": 1},
|
||||||
{"matrix": [1, 8], "x": 8.25, "y": 1},
|
{"matrix": [1, 8], "x": 8.25, "y": 1},
|
||||||
{"matrix": [1, 9], "x": 9.25, "y": 1, "w": 1.75},
|
{"matrix": [1, 9], "x": 9.25, "y": 1, "w": 1.75},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 1], "x": 1.75, "y": 2},
|
{"matrix": [2, 1], "x": 1.75, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 2.75, "y": 2},
|
{"matrix": [2, 2], "x": 2.75, "y": 2},
|
||||||
|
@ -56,16 +49,16 @@
|
||||||
{"matrix": [2, 7], "x": 7.75, "y": 2},
|
{"matrix": [2, 7], "x": 7.75, "y": 2},
|
||||||
{"matrix": [2, 8], "x": 8.75, "y": 2},
|
{"matrix": [2, 8], "x": 8.75, "y": 2},
|
||||||
{"matrix": [2, 9], "x": 9.75, "y": 2, "w": 1.25},
|
{"matrix": [2, 9], "x": 9.75, "y": 2, "w": 1.25},
|
||||||
|
|
||||||
{"matrix": [3, 1], "x": 1.5, "y": 3},
|
{"matrix": [3, 1], "x": 1.5, "y": 3},
|
||||||
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 1.75},
|
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 5], "x": 5.5, "y": 3, "w": 1.75},
|
{"matrix": [3, 4], "x": 5.25, "y": 3},
|
||||||
{"matrix": [3, 6], "x": 7.25, "y": 3, "w": 1.25},
|
{"matrix": [3, 5], "x": 6.25, "y": 3, "w": 1.5},
|
||||||
{"matrix": [3, 7], "x": 8.5, "y": 3}
|
{"matrix": [3, 6], "x": 7.75, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 7], "x": 9, "y": 3}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_split_3space": {
|
"LAYOUT_full_space": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||||
{"matrix": [0, 1], "x": 1, "y": 0},
|
{"matrix": [0, 1], "x": 1, "y": 0},
|
||||||
|
@ -77,8 +70,7 @@
|
||||||
{"matrix": [0, 7], "x": 7, "y": 0},
|
{"matrix": [0, 7], "x": 7, "y": 0},
|
||||||
{"matrix": [0, 8], "x": 8, "y": 0},
|
{"matrix": [0, 8], "x": 8, "y": 0},
|
||||||
{"matrix": [0, 9], "x": 9, "y": 0},
|
{"matrix": [0, 9], "x": 9, "y": 0},
|
||||||
{"matrix": [0, 10], "x": 10, "y": 0},
|
{"matrix": [0, 10], "x": 10, "y": 0, "encoder": 0},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25},
|
||||||
{"matrix": [1, 1], "x": 1.25, "y": 1},
|
{"matrix": [1, 1], "x": 1.25, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.25, "y": 1},
|
{"matrix": [1, 2], "x": 2.25, "y": 1},
|
||||||
|
@ -89,7 +81,6 @@
|
||||||
{"matrix": [1, 7], "x": 7.25, "y": 1},
|
{"matrix": [1, 7], "x": 7.25, "y": 1},
|
||||||
{"matrix": [1, 8], "x": 8.25, "y": 1},
|
{"matrix": [1, 8], "x": 8.25, "y": 1},
|
||||||
{"matrix": [1, 9], "x": 9.25, "y": 1, "w": 1.75},
|
{"matrix": [1, 9], "x": 9.25, "y": 1, "w": 1.75},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 1], "x": 1.75, "y": 2},
|
{"matrix": [2, 1], "x": 1.75, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 2.75, "y": 2},
|
{"matrix": [2, 2], "x": 2.75, "y": 2},
|
||||||
|
@ -100,11 +91,8 @@
|
||||||
{"matrix": [2, 7], "x": 7.75, "y": 2},
|
{"matrix": [2, 7], "x": 7.75, "y": 2},
|
||||||
{"matrix": [2, 8], "x": 8.75, "y": 2},
|
{"matrix": [2, 8], "x": 8.75, "y": 2},
|
||||||
{"matrix": [2, 9], "x": 9.75, "y": 2, "w": 1.25},
|
{"matrix": [2, 9], "x": 9.75, "y": 2, "w": 1.25},
|
||||||
|
|
||||||
{"matrix": [3, 1], "x": 1.5, "y": 3},
|
{"matrix": [3, 1], "x": 1.5, "y": 3},
|
||||||
{"matrix": [3, 3], "x": 2.5, "y": 3, "w": 2.25},
|
{"matrix": [3, 4], "x": 2.5, "y": 3, "w": 6},
|
||||||
{"matrix": [3, 4], "x": 4.75, "y": 3},
|
|
||||||
{"matrix": [3, 5], "x": 5.75, "y": 3, "w": 2.75},
|
|
||||||
{"matrix": [3, 7], "x": 8.5, "y": 3}
|
{"matrix": [3, 7], "x": 8.5, "y": 3}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -120,8 +108,7 @@
|
||||||
{"matrix": [0, 7], "x": 7, "y": 0},
|
{"matrix": [0, 7], "x": 7, "y": 0},
|
||||||
{"matrix": [0, 8], "x": 8, "y": 0},
|
{"matrix": [0, 8], "x": 8, "y": 0},
|
||||||
{"matrix": [0, 9], "x": 9, "y": 0},
|
{"matrix": [0, 9], "x": 9, "y": 0},
|
||||||
{"matrix": [0, 10], "x": 10, "y": 0},
|
{"matrix": [0, 10], "x": 10, "y": 0, "encoder": 0},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25},
|
||||||
{"matrix": [1, 1], "x": 1.25, "y": 1},
|
{"matrix": [1, 1], "x": 1.25, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.25, "y": 1},
|
{"matrix": [1, 2], "x": 2.25, "y": 1},
|
||||||
|
@ -132,7 +119,6 @@
|
||||||
{"matrix": [1, 7], "x": 7.25, "y": 1},
|
{"matrix": [1, 7], "x": 7.25, "y": 1},
|
||||||
{"matrix": [1, 8], "x": 8.25, "y": 1},
|
{"matrix": [1, 8], "x": 8.25, "y": 1},
|
||||||
{"matrix": [1, 9], "x": 9.25, "y": 1, "w": 1.75},
|
{"matrix": [1, 9], "x": 9.25, "y": 1, "w": 1.75},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 1], "x": 1.75, "y": 2},
|
{"matrix": [2, 1], "x": 1.75, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 2.75, "y": 2},
|
{"matrix": [2, 2], "x": 2.75, "y": 2},
|
||||||
|
@ -143,14 +129,13 @@
|
||||||
{"matrix": [2, 7], "x": 7.75, "y": 2},
|
{"matrix": [2, 7], "x": 7.75, "y": 2},
|
||||||
{"matrix": [2, 8], "x": 8.75, "y": 2},
|
{"matrix": [2, 8], "x": 8.75, "y": 2},
|
||||||
{"matrix": [2, 9], "x": 9.75, "y": 2, "w": 1.25},
|
{"matrix": [2, 9], "x": 9.75, "y": 2, "w": 1.25},
|
||||||
|
|
||||||
{"matrix": [3, 1], "x": 1.5, "y": 3},
|
{"matrix": [3, 1], "x": 1.5, "y": 3},
|
||||||
{"matrix": [3, 3], "x": 2.5, "y": 3, "w": 3},
|
{"matrix": [3, 3], "x": 2.5, "y": 3, "w": 3},
|
||||||
{"matrix": [3, 5], "x": 5.5, "y": 3, "w": 3},
|
{"matrix": [3, 5], "x": 5.5, "y": 3, "w": 3},
|
||||||
{"matrix": [3, 7], "x": 8.5, "y": 3}
|
{"matrix": [3, 7], "x": 8.5, "y": 3}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"LAYOUT_full_space": {
|
"LAYOUT_split_3space": {
|
||||||
"layout": [
|
"layout": [
|
||||||
{"matrix": [0, 0], "x": 0, "y": 0},
|
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||||
{"matrix": [0, 1], "x": 1, "y": 0},
|
{"matrix": [0, 1], "x": 1, "y": 0},
|
||||||
|
@ -162,8 +147,7 @@
|
||||||
{"matrix": [0, 7], "x": 7, "y": 0},
|
{"matrix": [0, 7], "x": 7, "y": 0},
|
||||||
{"matrix": [0, 8], "x": 8, "y": 0},
|
{"matrix": [0, 8], "x": 8, "y": 0},
|
||||||
{"matrix": [0, 9], "x": 9, "y": 0},
|
{"matrix": [0, 9], "x": 9, "y": 0},
|
||||||
{"matrix": [0, 10], "x": 10, "y": 0},
|
{"matrix": [0, 10], "x": 10, "y": 0, "encoder": 0},
|
||||||
|
|
||||||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25},
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25},
|
||||||
{"matrix": [1, 1], "x": 1.25, "y": 1},
|
{"matrix": [1, 1], "x": 1.25, "y": 1},
|
||||||
{"matrix": [1, 2], "x": 2.25, "y": 1},
|
{"matrix": [1, 2], "x": 2.25, "y": 1},
|
||||||
|
@ -174,7 +158,6 @@
|
||||||
{"matrix": [1, 7], "x": 7.25, "y": 1},
|
{"matrix": [1, 7], "x": 7.25, "y": 1},
|
||||||
{"matrix": [1, 8], "x": 8.25, "y": 1},
|
{"matrix": [1, 8], "x": 8.25, "y": 1},
|
||||||
{"matrix": [1, 9], "x": 9.25, "y": 1, "w": 1.75},
|
{"matrix": [1, 9], "x": 9.25, "y": 1, "w": 1.75},
|
||||||
|
|
||||||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||||
{"matrix": [2, 1], "x": 1.75, "y": 2},
|
{"matrix": [2, 1], "x": 1.75, "y": 2},
|
||||||
{"matrix": [2, 2], "x": 2.75, "y": 2},
|
{"matrix": [2, 2], "x": 2.75, "y": 2},
|
||||||
|
@ -185,9 +168,51 @@
|
||||||
{"matrix": [2, 7], "x": 7.75, "y": 2},
|
{"matrix": [2, 7], "x": 7.75, "y": 2},
|
||||||
{"matrix": [2, 8], "x": 8.75, "y": 2},
|
{"matrix": [2, 8], "x": 8.75, "y": 2},
|
||||||
{"matrix": [2, 9], "x": 9.75, "y": 2, "w": 1.25},
|
{"matrix": [2, 9], "x": 9.75, "y": 2, "w": 1.25},
|
||||||
|
|
||||||
{"matrix": [3, 1], "x": 1.5, "y": 3},
|
{"matrix": [3, 1], "x": 1.5, "y": 3},
|
||||||
{"matrix": [3, 4], "x": 2.5, "y": 3, "w": 6},
|
{"matrix": [3, 3], "x": 2.5, "y": 3, "w": 2.25},
|
||||||
|
{"matrix": [3, 4], "x": 4.75, "y": 3},
|
||||||
|
{"matrix": [3, 5], "x": 5.75, "y": 3, "w": 2.75},
|
||||||
|
{"matrix": [3, 7], "x": 8.5, "y": 3}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"LAYOUT_split_4space": {
|
||||||
|
"layout": [
|
||||||
|
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||||
|
{"matrix": [0, 1], "x": 1, "y": 0},
|
||||||
|
{"matrix": [0, 2], "x": 2, "y": 0},
|
||||||
|
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||||
|
{"matrix": [0, 4], "x": 4, "y": 0},
|
||||||
|
{"matrix": [0, 5], "x": 5, "y": 0},
|
||||||
|
{"matrix": [0, 6], "x": 6, "y": 0},
|
||||||
|
{"matrix": [0, 7], "x": 7, "y": 0},
|
||||||
|
{"matrix": [0, 8], "x": 8, "y": 0},
|
||||||
|
{"matrix": [0, 9], "x": 9, "y": 0},
|
||||||
|
{"matrix": [0, 10], "x": 10, "y": 0, "encoder": 0},
|
||||||
|
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25},
|
||||||
|
{"matrix": [1, 1], "x": 1.25, "y": 1},
|
||||||
|
{"matrix": [1, 2], "x": 2.25, "y": 1},
|
||||||
|
{"matrix": [1, 3], "x": 3.25, "y": 1},
|
||||||
|
{"matrix": [1, 4], "x": 4.25, "y": 1},
|
||||||
|
{"matrix": [1, 5], "x": 5.25, "y": 1},
|
||||||
|
{"matrix": [1, 6], "x": 6.25, "y": 1},
|
||||||
|
{"matrix": [1, 7], "x": 7.25, "y": 1},
|
||||||
|
{"matrix": [1, 8], "x": 8.25, "y": 1},
|
||||||
|
{"matrix": [1, 9], "x": 9.25, "y": 1, "w": 1.75},
|
||||||
|
{"matrix": [2, 0], "x": 0, "y": 2, "w": 1.75},
|
||||||
|
{"matrix": [2, 1], "x": 1.75, "y": 2},
|
||||||
|
{"matrix": [2, 2], "x": 2.75, "y": 2},
|
||||||
|
{"matrix": [2, 3], "x": 3.75, "y": 2},
|
||||||
|
{"matrix": [2, 4], "x": 4.75, "y": 2},
|
||||||
|
{"matrix": [2, 5], "x": 5.75, "y": 2},
|
||||||
|
{"matrix": [2, 6], "x": 6.75, "y": 2},
|
||||||
|
{"matrix": [2, 7], "x": 7.75, "y": 2},
|
||||||
|
{"matrix": [2, 8], "x": 8.75, "y": 2},
|
||||||
|
{"matrix": [2, 9], "x": 9.75, "y": 2, "w": 1.25},
|
||||||
|
{"matrix": [3, 1], "x": 1.5, "y": 3},
|
||||||
|
{"matrix": [3, 2], "x": 2.5, "y": 3, "w": 1.25},
|
||||||
|
{"matrix": [3, 3], "x": 3.75, "y": 3, "w": 1.75},
|
||||||
|
{"matrix": [3, 5], "x": 5.5, "y": 3, "w": 1.75},
|
||||||
|
{"matrix": [3, 6], "x": 7.25, "y": 3, "w": 1.25},
|
||||||
{"matrix": [3, 7], "x": 8.5, "y": 3}
|
{"matrix": [3, 7], "x": 8.5, "y": 3}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,19 +1,18 @@
|
||||||
|
/* Copyright 2021 projectcain
|
||||||
/* Copyright 2021 projectcain
|
*
|
||||||
*
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* 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
|
||||||
* it under the terms of the GNU General Public License as published by
|
* the Free Software Foundation, either version 2 of the License, or
|
||||||
* the Free Software Foundation, either version 2 of the License, or
|
* (at your option) any later version.
|
||||||
* (at your option) any later version.
|
*
|
||||||
*
|
* This program is distributed in the hope that it will be useful,
|
||||||
* This program is distributed in the hope that it will be useful,
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* GNU General Public License for more details.
|
||||||
* GNU General Public License for more details.
|
*
|
||||||
*
|
* You should have received a copy of the GNU General Public License
|
||||||
* You should have received a copy of the GNU General Public License
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
*/
|
||||||
*/
|
|
||||||
|
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
enum layers{
|
enum layers{
|
||||||
|
@ -64,3 +63,11 @@ combo_t key_combos[] = {
|
||||||
[KL_SLSH] = COMBO(kl_combo, S(KC_SLSH)),
|
[KL_SLSH] = COMBO(kl_combo, S(KC_SLSH)),
|
||||||
[JK_MINUS] = COMBO(jk_combo, KC_MINUS)
|
[JK_MINUS] = COMBO(jk_combo, KC_MINUS)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(ENCODER_MAP_ENABLE)
|
||||||
|
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
|
||||||
|
[BASE] = { ENCODER_CCW_CW(KC_PGUP, KC_PGDN) },
|
||||||
|
[NUM] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS) },
|
||||||
|
[SYM] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS) }
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
COMBO_ENABLE = yes
|
COMBO_ENABLE = yes
|
||||||
|
ENCODER_MAP_ENABLE = yes
|
||||||
|
|
|
@ -1,13 +1 @@
|
||||||
# Build Options
|
DEFAULT_FOLDER = projectcain/vault35/atmega32u4
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
||||||
CONSOLE_ENABLE = no # Console for debug
|
|
||||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = no # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
ENCODER_ENABLE = yes
|
|
||||||
|
|
Loading…
Reference in a new issue