Data-Driven Keyboard Conversions: 0-9 (#23357)
This commit is contained in:
parent
831deac212
commit
76bd5142cf
116 changed files with 630 additions and 1277 deletions
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2021 0xC7
|
|
||||||
|
|
||||||
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
|
|
|
@ -20,6 +20,12 @@
|
||||||
"mousekey": false,
|
"mousekey": false,
|
||||||
"nkro": false
|
"nkro": false
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["D0", "D1", "D2", "D3", "D5", "D4", "D6", "D7", "F7", "F6", "F5", "F4", "F1", "F0"],
|
"cols": ["D0", "D1", "D2", "D3", "D5", "D4", "D6", "D7", "F7", "F6", "F5", "F4", "F1", "F0"],
|
||||||
"rows": ["B0", "B1", "B2", "B3", "B7"]
|
"rows": ["B0", "B1", "B2", "B3", "B7"]
|
||||||
|
|
|
@ -19,10 +19,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
/* default setup after eeprom reset */
|
/* default setup after eeprom reset */
|
||||||
#define RGBLIGHT_DEFAULT_MODE RGBLIGHT_EFFECT_BREATHING + 2
|
#define RGBLIGHT_DEFAULT_MODE RGBLIGHT_EFFECT_BREATHING + 2
|
||||||
|
|
||||||
/* 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
|
|
||||||
/* Oled Size */
|
/* Oled Size */
|
||||||
#define OLED_DISPLAY_128X64
|
#define OLED_DISPLAY_128X64
|
||||||
#define OLED_FONT_END 255
|
#define OLED_FONT_END 255
|
||||||
|
|
|
@ -19,6 +19,10 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"qmk": {
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
},
|
||||||
"tap_keycode_delay": 10
|
"tap_keycode_delay": 10
|
||||||
},
|
},
|
||||||
"qmk_lufa_bootloader": {
|
"qmk_lufa_bootloader": {
|
||||||
|
@ -80,9 +84,11 @@
|
||||||
{"x": 0, "y": 0, "matrix": [0, 0]},
|
{"x": 0, "y": 0, "matrix": [0, 0]},
|
||||||
{"x": 1, "y": 0, "matrix": [0, 1]},
|
{"x": 1, "y": 0, "matrix": [0, 1]},
|
||||||
{"x": 2, "y": 0, "matrix": [0, 2]},
|
{"x": 2, "y": 0, "matrix": [0, 2]},
|
||||||
|
|
||||||
{"x": 0, "y": 1, "matrix": [1, 0]},
|
{"x": 0, "y": 1, "matrix": [1, 0]},
|
||||||
{"x": 1, "y": 1, "matrix": [1, 1]},
|
{"x": 1, "y": 1, "matrix": [1, 1]},
|
||||||
{"x": 2, "y": 1, "matrix": [1, 2]},
|
{"x": 2, "y": 1, "matrix": [1, 2]},
|
||||||
|
|
||||||
{"x": 0, "y": 2, "matrix": [2, 0]},
|
{"x": 0, "y": 2, "matrix": [2, 0]},
|
||||||
{"x": 1, "y": 2, "matrix": [2, 1]},
|
{"x": 1, "y": 2, "matrix": [2, 1]},
|
||||||
{"x": 2, "y": 2, "matrix": [2, 2]}
|
{"x": 2, "y": 2, "matrix": [2, 2]}
|
||||||
|
|
|
@ -16,11 +16,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#pragma once
|
#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
|
|
||||||
|
|
||||||
/* oled custom font */
|
/* oled custom font */
|
||||||
#define OLED_FONT_END 255
|
#define OLED_FONT_END 255
|
||||||
#define OLED_FONT_H "gfxfont.c"
|
#define OLED_FONT_H "gfxfont.c"
|
||||||
|
|
|
@ -32,6 +32,10 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"qmk": {
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
},
|
||||||
"tap_keycode_delay": 10
|
"tap_keycode_delay": 10
|
||||||
},
|
},
|
||||||
"processor": "atmega328p",
|
"processor": "atmega328p",
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2018 MechMerlin
|
|
||||||
|
|
||||||
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
|
|
|
@ -31,6 +31,12 @@
|
||||||
"levels": 5,
|
"levels": 5,
|
||||||
"breathing": true
|
"breathing": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"rgblight": {
|
"rgblight": {
|
||||||
"saturation_steps": 8,
|
"saturation_steps": 8,
|
||||||
"brightness_steps": 8,
|
"brightness_steps": 8,
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2019 Bubnick
|
|
||||||
|
|
||||||
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
|
|
|
@ -26,6 +26,12 @@
|
||||||
"rows": ["B3", "B2", "B1", "B0", "D4"]
|
"rows": ["B3", "B2", "B1", "B0", "D4"]
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "B7"
|
"pin": "B7"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
#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
|
|
|
@ -18,6 +18,12 @@
|
||||||
"nkro": true,
|
"nkro": true,
|
||||||
"rgblight": true
|
"rgblight": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["F0", "F1", "E6", "C7", "C6", "B7", "D4", "B1", "B0", "B5", "B4", "D7", "D6", "B3", "F4"],
|
"cols": ["F0", "F1", "E6", "C7", "C6", "B7", "D4", "B1", "B0", "B5", "B4", "D7", "D6", "B3", "F4"],
|
||||||
"rows": ["D0", "D1", "D2", "D3", "D5"]
|
"rows": ["D0", "D1", "D2", "D3", "D5"]
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
// Copyright 2022 ziptyze (@ziptyze)
|
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
|
|
||||||
#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
|
|
|
@ -24,6 +24,12 @@
|
||||||
"nkro": false,
|
"nkro": false,
|
||||||
"rgb_matrix": true
|
"rgb_matrix": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"ws2812": {
|
"ws2812": {
|
||||||
"pin": "GP17",
|
"pin": "GP17",
|
||||||
"driver": "vendor"
|
"driver": "vendor"
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
// Copyright 2022 ziptyze (@ziptyze)
|
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
|
|
||||||
#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
|
|
|
@ -23,6 +23,12 @@
|
||||||
"nkro": false,
|
"nkro": false,
|
||||||
"rgb_matrix": true
|
"rgb_matrix": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"ws2812": {
|
"ws2812": {
|
||||||
"pin": "GP15",
|
"pin": "GP15",
|
||||||
"driver": "vendor"
|
"driver": "vendor"
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
// Copyright 2022 ziptyze (@ziptyze)
|
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||||
|
|
||||||
#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
|
|
|
@ -23,6 +23,12 @@
|
||||||
"nkro": false,
|
"nkro": false,
|
||||||
"rgb_matrix": true
|
"rgb_matrix": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"ws2812": {
|
"ws2812": {
|
||||||
"pin": "GP19",
|
"pin": "GP19",
|
||||||
"driver": "vendor"
|
"driver": "vendor"
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2019 MechMerlin
|
|
||||||
|
|
||||||
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
|
|
|
@ -86,6 +86,12 @@
|
||||||
"nkro": false,
|
"nkro": false,
|
||||||
"rgb_matrix": true
|
"rgb_matrix": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["D4", "C6", "F6", "F7"],
|
"cols": ["D4", "C6", "F6", "F7"],
|
||||||
"rows": ["D1", "D0", "F4", "F5"]
|
"rows": ["D1", "D0", "F4", "F5"]
|
||||||
|
|
|
@ -18,11 +18,6 @@
|
||||||
|
|
||||||
#define MOUSEKEY_MOVE_DELTA 25
|
#define MOUSEKEY_MOVE_DELTA 25
|
||||||
|
|
||||||
/* 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
|
* Feature disable options
|
||||||
* These options are also useful to firmware size reduction.
|
* These options are also useful to firmware size reduction.
|
||||||
|
|
|
@ -59,6 +59,12 @@
|
||||||
"nkro": false,
|
"nkro": false,
|
||||||
"rgb_matrix": true
|
"rgb_matrix": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["D5", "D6", "C2", "D0"],
|
"cols": ["D5", "D6", "C2", "D0"],
|
||||||
"rows": ["D1", "D2", "D3", "D4"]
|
"rows": ["D1", "D2", "D3", "D4"]
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
#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
|
|
|
@ -1,33 +0,0 @@
|
||||||
{
|
|
||||||
"usb": {
|
|
||||||
"pid": "0x0161",
|
|
||||||
"device_version": "0.0.1"
|
|
||||||
},
|
|
||||||
"rgblight": {
|
|
||||||
"saturation_steps": 8,
|
|
||||||
"brightness_steps": 8,
|
|
||||||
"led_count": 1,
|
|
||||||
"animations": {
|
|
||||||
"breathing": true,
|
|
||||||
"rainbow_mood": true,
|
|
||||||
"rainbow_swirl": true,
|
|
||||||
"snake": true,
|
|
||||||
"knight": true,
|
|
||||||
"christmas": true,
|
|
||||||
"static_gradient": true,
|
|
||||||
"rgb_test": true,
|
|
||||||
"alternating": true,
|
|
||||||
"twinkle": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ws2812": {
|
|
||||||
"pin": "B1"
|
|
||||||
},
|
|
||||||
"matrix_pins": {
|
|
||||||
"cols": ["D1", "D0", "D4", "C6"],
|
|
||||||
"rows": ["F4", "F5", "F6", "F7"]
|
|
||||||
},
|
|
||||||
"diode_direction": "COL2ROW",
|
|
||||||
"processor": "atmega32u4",
|
|
||||||
"bootloader": "caterina"
|
|
||||||
}
|
|
99
keyboards/1upkeyboards/sweet16/v1/keyboard.json
Normal file
99
keyboards/1upkeyboards/sweet16/v1/keyboard.json
Normal file
|
@ -0,0 +1,99 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Sweet16",
|
||||||
|
"manufacturer": "1up Keyboards",
|
||||||
|
"url": "",
|
||||||
|
"maintainer": "skullydazed",
|
||||||
|
"usb": {
|
||||||
|
"vid": "0x6F75",
|
||||||
|
"pid": "0x0161",
|
||||||
|
"device_version": "0.0.1"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"nkro": true,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"lto": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"rgblight": {
|
||||||
|
"saturation_steps": 8,
|
||||||
|
"brightness_steps": 8,
|
||||||
|
"led_count": 1,
|
||||||
|
"animations": {
|
||||||
|
"breathing": true,
|
||||||
|
"rainbow_mood": true,
|
||||||
|
"rainbow_swirl": true,
|
||||||
|
"snake": true,
|
||||||
|
"knight": true,
|
||||||
|
"christmas": true,
|
||||||
|
"static_gradient": true,
|
||||||
|
"rgb_test": true,
|
||||||
|
"alternating": true,
|
||||||
|
"twinkle": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "B1"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D1", "D0", "D4", "C6"],
|
||||||
|
"rows": ["F4", "F5", "F6", "F7"]
|
||||||
|
},
|
||||||
|
"diode_direction": "COL2ROW",
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"bootloader": "caterina",
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT_ortho_4x4": {
|
||||||
|
"layout": [
|
||||||
|
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||||
|
{"matrix": [0, 1], "x": 1, "y": 0},
|
||||||
|
{"matrix": [0, 2], "x": 2, "y": 0},
|
||||||
|
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||||
|
|
||||||
|
{"matrix": [1, 0], "x": 0, "y": 1},
|
||||||
|
{"matrix": [1, 1], "x": 1, "y": 1},
|
||||||
|
{"matrix": [1, 2], "x": 2, "y": 1},
|
||||||
|
{"matrix": [1, 3], "x": 3, "y": 1},
|
||||||
|
|
||||||
|
{"matrix": [2, 0], "x": 0, "y": 2},
|
||||||
|
{"matrix": [2, 1], "x": 1, "y": 2},
|
||||||
|
{"matrix": [2, 2], "x": 2, "y": 2},
|
||||||
|
{"matrix": [2, 3], "x": 3, "y": 2},
|
||||||
|
|
||||||
|
{"matrix": [3, 0], "x": 0, "y": 3},
|
||||||
|
{"matrix": [3, 1], "x": 1, "y": 3},
|
||||||
|
{"matrix": [3, 2], "x": 2, "y": 3},
|
||||||
|
{"matrix": [3, 3], "x": 3, "y": 3}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"LAYOUT_numpad_4x4": {
|
||||||
|
"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, "h": 2},
|
||||||
|
|
||||||
|
{"matrix": [1, 0], "x": 0, "y": 1},
|
||||||
|
{"matrix": [1, 1], "x": 1, "y": 1},
|
||||||
|
{"matrix": [1, 2], "x": 2, "y": 1},
|
||||||
|
|
||||||
|
{"matrix": [2, 0], "x": 0, "y": 2},
|
||||||
|
{"matrix": [2, 1], "x": 1, "y": 2},
|
||||||
|
{"matrix": [2, 2], "x": 2, "y": 2},
|
||||||
|
{"matrix": [2, 3], "x": 3, "y": 2, "h": 2},
|
||||||
|
|
||||||
|
{"matrix": [3, 1], "x": 0, "y": 3, "w": 2},
|
||||||
|
{"matrix": [3, 2], "x": 2, "y": 3}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,4 +0,0 @@
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
|
|
||||||
LTO_ENABLE = yes
|
|
|
@ -1,22 +0,0 @@
|
||||||
/* Copyright 2022 ziptyze
|
|
||||||
*
|
|
||||||
* 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
|
|
|
@ -21,6 +21,12 @@
|
||||||
"nkro": false,
|
"nkro": false,
|
||||||
"rgb_matrix": true
|
"rgb_matrix": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"ws2812": {
|
"ws2812": {
|
||||||
"pin": "GP6",
|
"pin": "GP6",
|
||||||
"driver": "vendor"
|
"driver": "vendor"
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
/* Copyright 2022 ziptyze
|
|
||||||
*
|
|
||||||
* 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
|
|
|
@ -20,6 +20,12 @@
|
||||||
"nkro": false,
|
"nkro": false,
|
||||||
"rgb_matrix": true
|
"rgb_matrix": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"ws2812": {
|
"ws2812": {
|
||||||
"pin": "D7"
|
"pin": "D7"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
"keyboard_name": "ALETH42",
|
|
||||||
"manufacturer": "25KEYS",
|
|
||||||
"url": "http://www.sho-k.co.uk/tech/aleth42",
|
|
||||||
"maintainer": "monksoffunk",
|
|
||||||
"usb": {
|
|
||||||
"vid": "0x04D8",
|
|
||||||
"pid": "0xEAC8"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,23 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2020 monksoffunk
|
|
||||||
|
|
||||||
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
|
|
|
@ -1,7 +1,27 @@
|
||||||
{
|
{
|
||||||
|
"keyboard_name": "ALETH42",
|
||||||
|
"manufacturer": "25KEYS",
|
||||||
|
"url": "http://www.sho-k.co.uk/tech/aleth42",
|
||||||
|
"maintainer": "monksoffunk",
|
||||||
"usb": {
|
"usb": {
|
||||||
|
"vid": "0x04D8",
|
||||||
|
"pid": "0xEAC8",
|
||||||
"device_version": "0.0.0"
|
"device_version": "0.0.0"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"console": true,
|
||||||
|
"rgblight": true,
|
||||||
|
"encoder": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["D0", "D1", "D2", "D3", "D4", "D5", "D6", "C2", "C4", "C5", "C6"],
|
"cols": ["D0", "D1", "D2", "D3", "D4", "D5", "D6", "C2", "C4", "C5", "C6"],
|
||||||
"rows": ["B0", "B1", "B2", "B3"]
|
"rows": ["B0", "B1", "B2", "B3"]
|
|
@ -1,12 +0,0 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
||||||
CONSOLE_ENABLE = yes # 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 = yes # Enable keyboard RGB underglow
|
|
||||||
ENCODER_ENABLE = yes
|
|
|
@ -1,23 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2020 monksoffunk
|
|
||||||
|
|
||||||
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
|
|
|
@ -1,7 +1,28 @@
|
||||||
{
|
{
|
||||||
|
"keyboard_name": "ALETH42",
|
||||||
|
"manufacturer": "25KEYS",
|
||||||
|
"url": "http://www.sho-k.co.uk/tech/aleth42",
|
||||||
|
"maintainer": "monksoffunk",
|
||||||
"usb": {
|
"usb": {
|
||||||
|
"vid": "0x04D8",
|
||||||
|
"pid": "0xEAC8",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"console": true,
|
||||||
|
"backlight": true,
|
||||||
|
"rgblight": true,
|
||||||
|
"encoder": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["D5", "D3", "D2", "D1", "D0", "D6", "D4", "F7", "F0", "F1", "F4"],
|
"cols": ["D5", "D3", "D2", "D1", "D0", "D6", "D4", "F7", "F0", "F1", "F4"],
|
||||||
"rows": ["B4", "B0", "B2", "B1"]
|
"rows": ["B4", "B0", "B2", "B1"]
|
|
@ -1,12 +0,0 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
||||||
CONSOLE_ENABLE = yes # Console for debug
|
|
||||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = no # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
||||||
ENCODER_ENABLE = yes
|
|
|
@ -8,6 +8,14 @@
|
||||||
"pid": "0xCA42",
|
"pid": "0xCA42",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgblight": true,
|
||||||
|
"encoder": true,
|
||||||
|
"oled": true
|
||||||
|
},
|
||||||
"encoder": {
|
"encoder": {
|
||||||
"rotary": [
|
"rotary": [
|
||||||
{"pin_a": "B6", "pin_b": "B2"},
|
{"pin_a": "B6", "pin_b": "B2"},
|
|
@ -1,16 +1 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = no # 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 = yes # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
ENCODER_ENABLE = yes
|
|
||||||
OLED_ENABLE = yes
|
|
||||||
|
|
||||||
SRC += ./common/oled_helper.c
|
SRC += ./common/oled_helper.c
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
{
|
|
||||||
"manufacturer": "25KEYS",
|
|
||||||
"url": "https://github.com/monksoffunk/zinc",
|
|
||||||
"maintainer": "monksoffunk",
|
|
||||||
"usb": {
|
|
||||||
"vid": "0x04D8",
|
|
||||||
"pid": "0xEA3B",
|
|
||||||
"device_version": "0.0.1"
|
|
||||||
},
|
|
||||||
"rgb_matrix": {
|
|
||||||
"driver": "ws2812"
|
|
||||||
},
|
|
||||||
"processor": "atmega32u4",
|
|
||||||
"bootloader": "caterina"
|
|
||||||
}
|
|
|
@ -1,16 +1,35 @@
|
||||||
{
|
{
|
||||||
"keyboard_name": "Zinc rev.1",
|
"keyboard_name": "Zinc rev.1",
|
||||||
|
"manufacturer": "25KEYS",
|
||||||
|
"url": "https://github.com/monksoffunk/zinc",
|
||||||
|
"maintainer": "monksoffunk",
|
||||||
|
"usb": {
|
||||||
|
"vid": "0x04D8",
|
||||||
|
"pid": "0xEA3B",
|
||||||
|
"device_version": "0.0.1"
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"bootloader": "caterina",
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["F4", "D4", "C6", "D7", "E6", "B4"],
|
"cols": ["F4", "D4", "C6", "D7", "E6", "B4"],
|
||||||
"rows": ["F6", "F7", "B1", "B3"]
|
"rows": ["F6", "F7", "B1", "B3"]
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": false
|
||||||
|
},
|
||||||
"split": {
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
"soft_serial_pin": "D2"
|
"soft_serial_pin": "D2"
|
||||||
},
|
},
|
||||||
"tapping": {
|
"tapping": {
|
||||||
"term": 100
|
"term": 100
|
||||||
},
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
"rgblight": {
|
"rgblight": {
|
||||||
"hue_steps": 10
|
"hue_steps": 10
|
||||||
},
|
},
|
|
@ -1 +0,0 @@
|
||||||
SPLIT_KEYBOARD = yes
|
|
|
@ -1,16 +1,35 @@
|
||||||
{
|
{
|
||||||
"keyboard_name": "Zinc rev.A",
|
"keyboard_name": "Zinc rev.A",
|
||||||
|
"manufacturer": "25KEYS",
|
||||||
|
"url": "https://github.com/monksoffunk/zinc",
|
||||||
|
"maintainer": "monksoffunk",
|
||||||
|
"usb": {
|
||||||
|
"vid": "0x04D8",
|
||||||
|
"pid": "0xEA3B",
|
||||||
|
"device_version": "0.0.1"
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"bootloader": "caterina",
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["F4", "F5", "F6", "F7", "B1", "B3"],
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3"],
|
||||||
"rows": ["D4", "C6", "D7", "E6"]
|
"rows": ["D4", "C6", "D7", "E6"]
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": false
|
||||||
|
},
|
||||||
"split": {
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
"soft_serial_pin": "D2"
|
"soft_serial_pin": "D2"
|
||||||
},
|
},
|
||||||
"tapping": {
|
"tapping": {
|
||||||
"term": 100
|
"term": 100
|
||||||
},
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
"rgblight": {
|
"rgblight": {
|
||||||
"hue_steps": 10
|
"hue_steps": 10
|
||||||
},
|
},
|
|
@ -1 +0,0 @@
|
||||||
SPLIT_KEYBOARD = yes
|
|
|
@ -1,17 +1,3 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = no # 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
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
|
|
||||||
RGB_MATRIX_ENABLE = no
|
|
||||||
|
|
||||||
DEFAULT_FOLDER = 25keys/zinc/rev1
|
DEFAULT_FOLDER = 25keys/zinc/rev1
|
||||||
|
|
||||||
#SRC += i2c.c
|
#SRC += i2c.c
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
#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
|
|
|
@ -17,6 +17,12 @@
|
||||||
"mousekey": false,
|
"mousekey": false,
|
||||||
"nkro": false
|
"nkro": false
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["B3", "B4", "B5", "B6", "B7", "C7", "B2"],
|
"cols": ["B3", "B4", "B5", "B6", "B7", "C7", "B2"],
|
||||||
"rows": ["C4", "C5"]
|
"rows": ["C4", "C5"]
|
||||||
|
|
|
@ -21,11 +21,6 @@
|
||||||
//#define MASTER_RIGHT
|
//#define MASTER_RIGHT
|
||||||
//#define EE_HANDS
|
//#define EE_HANDS
|
||||||
|
|
||||||
/* 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
|
* Feature disable options
|
||||||
* These options are also useful to firmware size reduction.
|
* These options are also useful to firmware size reduction.
|
||||||
|
|
|
@ -13,7 +13,21 @@
|
||||||
"rows": ["D4", "C6", "D7", "E6", "B4"]
|
"rows": ["D4", "C6", "D7", "E6", "B4"]
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"command": true,
|
||||||
|
"nkro": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"split": {
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
"soft_serial_pin": "D0"
|
"soft_serial_pin": "D0"
|
||||||
},
|
},
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
|
@ -1,15 +0,0 @@
|
||||||
# Build Options
|
|
||||||
# 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 = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
|
|
||||||
# Enable generic behavior for split boards
|
|
||||||
SPLIT_KEYBOARD = yes
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2019 Arda Kilicdagi
|
|
||||||
|
|
||||||
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
|
|
|
@ -23,6 +23,12 @@
|
||||||
"mousekey": false,
|
"mousekey": false,
|
||||||
"nkro": false
|
"nkro": false
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"direct": [
|
"direct": [
|
||||||
["E6", "D7", "C6", "D4"]
|
["E6", "D7", "C6", "D4"]
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
#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
|
|
|
@ -15,6 +15,19 @@
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"console": true,
|
||||||
|
"command": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"community_layouts": ["ortho_4x4", "ortho_4x12"],
|
"community_layouts": ["ortho_4x4", "ortho_4x12"],
|
||||||
"layouts": {
|
"layouts": {
|
||||||
"LAYOUT_ortho_4x4": {
|
"LAYOUT_ortho_4x4": {
|
|
@ -1,15 +1,3 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
||||||
CONSOLE_ENABLE = yes # Console for debug
|
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = no # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
|
|
||||||
# Disable unsupported hardware
|
# Disable unsupported hardware
|
||||||
RGBLIGHT_SUPPORTED = no
|
RGBLIGHT_SUPPORTED = no
|
||||||
AUDIO_SUPPORTED = no
|
AUDIO_SUPPORTED = no
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
|
|
||||||
|
|
||||||
#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
|
|
|
@ -16,6 +16,12 @@
|
||||||
"mousekey": true,
|
"mousekey": true,
|
||||||
"nkro": false
|
"nkro": false
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["D7", "E6", "B4", "B5", "B6", "B7", "D6", "F7", "F6", "F5", "F4", "F1", "F0", "B3", "B1"],
|
"cols": ["D7", "E6", "B4", "B5", "B6", "B7", "D6", "F7", "F6", "F5", "F4", "F1", "F0", "B3", "B1"],
|
||||||
"rows": ["B2", "D1", "D0", "D4", "C6"]
|
"rows": ["B2", "D1", "D0", "D4", "C6"]
|
||||||
|
|
|
@ -21,11 +21,6 @@
|
||||||
//#define MASTER_RIGHT
|
//#define MASTER_RIGHT
|
||||||
//#define EE_HANDS
|
//#define EE_HANDS
|
||||||
|
|
||||||
/* 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
|
* Feature disable options
|
||||||
* These options are also useful to firmware size reduction.
|
* These options are also useful to firmware size reduction.
|
||||||
|
|
|
@ -13,7 +13,21 @@
|
||||||
"rows": ["D7", "E6"]
|
"rows": ["D7", "E6"]
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"command": true,
|
||||||
|
"nkro": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"split": {
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
"soft_serial_pin": "D0"
|
"soft_serial_pin": "D0"
|
||||||
},
|
},
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
|
@ -1,15 +0,0 @@
|
||||||
# Build Options
|
|
||||||
# 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 = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
|
|
||||||
# Enable generic behavior for split boards
|
|
||||||
SPLIT_KEYBOARD = yes
|
|
|
@ -21,11 +21,6 @@
|
||||||
//#define MASTER_RIGHT
|
//#define MASTER_RIGHT
|
||||||
//#define EE_HANDS
|
//#define EE_HANDS
|
||||||
|
|
||||||
/* 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
|
* Feature disable options
|
||||||
* These options are also useful to firmware size reduction.
|
* These options are also useful to firmware size reduction.
|
||||||
|
|
|
@ -13,7 +13,21 @@
|
||||||
"rows": ["D7", "E6", "B4"]
|
"rows": ["D7", "E6", "B4"]
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"command": true,
|
||||||
|
"nkro": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"split": {
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
"soft_serial_pin": "D0"
|
"soft_serial_pin": "D0"
|
||||||
},
|
},
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
|
@ -1,15 +0,0 @@
|
||||||
# Build Options
|
|
||||||
# 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 = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
|
|
||||||
# Enable generic behavior for split boards
|
|
||||||
SPLIT_KEYBOARD = yes
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2019 Boy_314
|
|
||||||
|
|
||||||
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
|
|
|
@ -13,7 +13,21 @@
|
||||||
"rows": ["D4", "C6", "D7", "E6"]
|
"rows": ["D4", "C6", "D7", "E6"]
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": false,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"console": true,
|
||||||
|
"command": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"split": {
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
"soft_serial_pin": "D0"
|
"soft_serial_pin": "D0"
|
||||||
},
|
},
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
|
@ -1,15 +0,0 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
|
||||||
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
||||||
CONSOLE_ENABLE = yes # Console for debug
|
|
||||||
COMMAND_ENABLE = yes # 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
|
|
||||||
|
|
||||||
# Enable generic behavior for split boards
|
|
||||||
SPLIT_KEYBOARD = yes
|
|
|
@ -1,38 +0,0 @@
|
||||||
/* Copyright 2018
|
|
||||||
*
|
|
||||||
* 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,19 +1,110 @@
|
||||||
{
|
{
|
||||||
"keyboard_name": "i75",
|
"keyboard_name": "i75",
|
||||||
"manufacturer": "di0ib",
|
"manufacturer": "di0ib",
|
||||||
"url": "",
|
"url": "",
|
||||||
"maintainer": "qmk",
|
"maintainer": "qmk",
|
||||||
"features": {
|
"usb": {
|
||||||
"bootmagic": true,
|
"vid": "0x4025",
|
||||||
"command": true,
|
"pid": "0x0A0C",
|
||||||
"console": true,
|
"device_version": "1.7.5"
|
||||||
"extrakey": true,
|
},
|
||||||
"mousekey": true,
|
"features": {
|
||||||
"nkro": false
|
"bootmagic": true,
|
||||||
},
|
"mousekey": true,
|
||||||
"usb": {
|
"extrakey": true,
|
||||||
"vid": "0x4025",
|
"console": true,
|
||||||
"pid": "0x0A0C",
|
"command": true
|
||||||
"device_version": "1.7.5"
|
},
|
||||||
}
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"community_layouts": ["ortho_5x15"],
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT_ortho_5x15": {
|
||||||
|
"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": [1, 0], "x": 9, "y": 0},
|
||||||
|
{"matrix": [1, 1], "x": 10, "y": 0},
|
||||||
|
{"matrix": [1, 2], "x": 11, "y": 0},
|
||||||
|
{"matrix": [1, 3], "x": 12, "y": 0},
|
||||||
|
{"matrix": [1, 4], "x": 13, "y": 0},
|
||||||
|
{"matrix": [1, 5], "x": 14, "y": 0},
|
||||||
|
|
||||||
|
{"matrix": [1, 6], "x": 0, "y": 1},
|
||||||
|
{"matrix": [1, 7], "x": 1, "y": 1},
|
||||||
|
{"matrix": [1, 8], "x": 2, "y": 1},
|
||||||
|
{"matrix": [2, 0], "x": 3, "y": 1},
|
||||||
|
{"matrix": [2, 1], "x": 4, "y": 1},
|
||||||
|
{"matrix": [2, 2], "x": 5, "y": 1},
|
||||||
|
{"matrix": [2, 3], "x": 6, "y": 1},
|
||||||
|
{"matrix": [2, 4], "x": 7, "y": 1},
|
||||||
|
{"matrix": [2, 5], "x": 8, "y": 1},
|
||||||
|
{"matrix": [2, 6], "x": 9, "y": 1},
|
||||||
|
{"matrix": [2, 7], "x": 10, "y": 1},
|
||||||
|
{"matrix": [2, 8], "x": 11, "y": 1},
|
||||||
|
{"matrix": [3, 0], "x": 12, "y": 1},
|
||||||
|
{"matrix": [3, 1], "x": 13, "y": 1},
|
||||||
|
{"matrix": [3, 2], "x": 14, "y": 1},
|
||||||
|
|
||||||
|
{"matrix": [3, 3], "x": 0, "y": 2},
|
||||||
|
{"matrix": [3, 4], "x": 1, "y": 2},
|
||||||
|
{"matrix": [3, 5], "x": 2, "y": 2},
|
||||||
|
{"matrix": [3, 6], "x": 3, "y": 2},
|
||||||
|
{"matrix": [3, 7], "x": 4, "y": 2},
|
||||||
|
{"matrix": [3, 8], "x": 5, "y": 2},
|
||||||
|
{"matrix": [4, 0], "x": 6, "y": 2},
|
||||||
|
{"matrix": [4, 1], "x": 7, "y": 2},
|
||||||
|
{"matrix": [4, 2], "x": 8, "y": 2},
|
||||||
|
{"matrix": [4, 3], "x": 9, "y": 2},
|
||||||
|
{"matrix": [4, 4], "x": 10, "y": 2},
|
||||||
|
{"matrix": [4, 5], "x": 11, "y": 2},
|
||||||
|
{"matrix": [4, 6], "x": 12, "y": 2},
|
||||||
|
{"matrix": [4, 7], "x": 13, "y": 2},
|
||||||
|
{"matrix": [4, 8], "x": 14, "y": 2},
|
||||||
|
|
||||||
|
{"matrix": [5, 0], "x": 0, "y": 3},
|
||||||
|
{"matrix": [5, 1], "x": 1, "y": 3},
|
||||||
|
{"matrix": [5, 2], "x": 2, "y": 3},
|
||||||
|
{"matrix": [5, 3], "x": 3, "y": 3},
|
||||||
|
{"matrix": [5, 4], "x": 4, "y": 3},
|
||||||
|
{"matrix": [5, 5], "x": 5, "y": 3},
|
||||||
|
{"matrix": [5, 6], "x": 6, "y": 3},
|
||||||
|
{"matrix": [5, 7], "x": 7, "y": 3},
|
||||||
|
{"matrix": [5, 8], "x": 8, "y": 3},
|
||||||
|
{"matrix": [6, 0], "x": 9, "y": 3},
|
||||||
|
{"matrix": [6, 1], "x": 10, "y": 3},
|
||||||
|
{"matrix": [6, 2], "x": 11, "y": 3},
|
||||||
|
{"matrix": [6, 3], "x": 12, "y": 3},
|
||||||
|
{"matrix": [6, 4], "x": 13, "y": 3},
|
||||||
|
{"matrix": [6, 5], "x": 14, "y": 3},
|
||||||
|
|
||||||
|
{"matrix": [6, 6], "x": 0, "y": 4},
|
||||||
|
{"matrix": [6, 7], "x": 1, "y": 4},
|
||||||
|
{"matrix": [6, 8], "x": 2, "y": 4},
|
||||||
|
{"matrix": [7, 0], "x": 3, "y": 4},
|
||||||
|
{"matrix": [7, 1], "x": 4, "y": 4},
|
||||||
|
{"matrix": [7, 2], "x": 5, "y": 4},
|
||||||
|
{"matrix": [7, 3], "x": 6, "y": 4},
|
||||||
|
{"matrix": [7, 4], "x": 7, "y": 4},
|
||||||
|
{"matrix": [7, 5], "x": 8, "y": 4},
|
||||||
|
{"matrix": [7, 6], "x": 9, "y": 4},
|
||||||
|
{"matrix": [7, 7], "x": 10, "y": 4},
|
||||||
|
{"matrix": [7, 8], "x": 11, "y": 4},
|
||||||
|
{"matrix": [8, 0], "x": 12, "y": 4},
|
||||||
|
{"matrix": [8, 1], "x": 13, "y": 4},
|
||||||
|
{"matrix": [8, 2], "x": 14, "y": 4}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,91 +5,5 @@
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina"
|
||||||
"community_layouts": ["ortho_5x15"],
|
|
||||||
"layouts": {
|
|
||||||
"LAYOUT_ortho_5x15": {
|
|
||||||
"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": [1, 0], "x": 9, "y": 0},
|
|
||||||
{"matrix": [1, 1], "x": 10, "y": 0},
|
|
||||||
{"matrix": [1, 2], "x": 11, "y": 0},
|
|
||||||
{"matrix": [1, 3], "x": 12, "y": 0},
|
|
||||||
{"matrix": [1, 4], "x": 13, "y": 0},
|
|
||||||
{"matrix": [1, 5], "x": 14, "y": 0},
|
|
||||||
|
|
||||||
{"matrix": [1, 6], "x": 0, "y": 1},
|
|
||||||
{"matrix": [1, 7], "x": 1, "y": 1},
|
|
||||||
{"matrix": [1, 8], "x": 2, "y": 1},
|
|
||||||
{"matrix": [2, 0], "x": 3, "y": 1},
|
|
||||||
{"matrix": [2, 1], "x": 4, "y": 1},
|
|
||||||
{"matrix": [2, 2], "x": 5, "y": 1},
|
|
||||||
{"matrix": [2, 3], "x": 6, "y": 1},
|
|
||||||
{"matrix": [2, 4], "x": 7, "y": 1},
|
|
||||||
{"matrix": [2, 5], "x": 8, "y": 1},
|
|
||||||
{"matrix": [2, 6], "x": 9, "y": 1},
|
|
||||||
{"matrix": [2, 7], "x": 10, "y": 1},
|
|
||||||
{"matrix": [2, 8], "x": 11, "y": 1},
|
|
||||||
{"matrix": [3, 0], "x": 12, "y": 1},
|
|
||||||
{"matrix": [3, 1], "x": 13, "y": 1},
|
|
||||||
{"matrix": [3, 2], "x": 14, "y": 1},
|
|
||||||
|
|
||||||
{"matrix": [3, 3], "x": 0, "y": 2},
|
|
||||||
{"matrix": [3, 4], "x": 1, "y": 2},
|
|
||||||
{"matrix": [3, 5], "x": 2, "y": 2},
|
|
||||||
{"matrix": [3, 6], "x": 3, "y": 2},
|
|
||||||
{"matrix": [3, 7], "x": 4, "y": 2},
|
|
||||||
{"matrix": [3, 8], "x": 5, "y": 2},
|
|
||||||
{"matrix": [4, 0], "x": 6, "y": 2},
|
|
||||||
{"matrix": [4, 1], "x": 7, "y": 2},
|
|
||||||
{"matrix": [4, 2], "x": 8, "y": 2},
|
|
||||||
{"matrix": [4, 3], "x": 9, "y": 2},
|
|
||||||
{"matrix": [4, 4], "x": 10, "y": 2},
|
|
||||||
{"matrix": [4, 5], "x": 11, "y": 2},
|
|
||||||
{"matrix": [4, 6], "x": 12, "y": 2},
|
|
||||||
{"matrix": [4, 7], "x": 13, "y": 2},
|
|
||||||
{"matrix": [4, 8], "x": 14, "y": 2},
|
|
||||||
|
|
||||||
{"matrix": [5, 0], "x": 0, "y": 3},
|
|
||||||
{"matrix": [5, 1], "x": 1, "y": 3},
|
|
||||||
{"matrix": [5, 2], "x": 2, "y": 3},
|
|
||||||
{"matrix": [5, 3], "x": 3, "y": 3},
|
|
||||||
{"matrix": [5, 4], "x": 4, "y": 3},
|
|
||||||
{"matrix": [5, 5], "x": 5, "y": 3},
|
|
||||||
{"matrix": [5, 6], "x": 6, "y": 3},
|
|
||||||
{"matrix": [5, 7], "x": 7, "y": 3},
|
|
||||||
{"matrix": [5, 8], "x": 8, "y": 3},
|
|
||||||
{"matrix": [6, 0], "x": 9, "y": 3},
|
|
||||||
{"matrix": [6, 1], "x": 10, "y": 3},
|
|
||||||
{"matrix": [6, 2], "x": 11, "y": 3},
|
|
||||||
{"matrix": [6, 3], "x": 12, "y": 3},
|
|
||||||
{"matrix": [6, 4], "x": 13, "y": 3},
|
|
||||||
{"matrix": [6, 5], "x": 14, "y": 3},
|
|
||||||
|
|
||||||
{"matrix": [6, 6], "x": 0, "y": 4},
|
|
||||||
{"matrix": [6, 7], "x": 1, "y": 4},
|
|
||||||
{"matrix": [6, 8], "x": 2, "y": 4},
|
|
||||||
{"matrix": [7, 0], "x": 3, "y": 4},
|
|
||||||
{"matrix": [7, 1], "x": 4, "y": 4},
|
|
||||||
{"matrix": [7, 2], "x": 5, "y": 4},
|
|
||||||
{"matrix": [7, 3], "x": 6, "y": 4},
|
|
||||||
{"matrix": [7, 4], "x": 7, "y": 4},
|
|
||||||
{"matrix": [7, 5], "x": 8, "y": 4},
|
|
||||||
{"matrix": [7, 6], "x": 9, "y": 4},
|
|
||||||
{"matrix": [7, 7], "x": 10, "y": 4},
|
|
||||||
{"matrix": [7, 8], "x": 11, "y": 4},
|
|
||||||
{"matrix": [8, 0], "x": 12, "y": 4},
|
|
||||||
{"matrix": [8, 1], "x": 13, "y": 4},
|
|
||||||
{"matrix": [8, 2], "x": 14, "y": 4}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,91 +5,5 @@
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "halfkay",
|
"bootloader": "halfkay"
|
||||||
"community_layouts": ["ortho_5x15"],
|
|
||||||
"layouts": {
|
|
||||||
"LAYOUT_ortho_5x15": {
|
|
||||||
"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": [1, 0], "x": 9, "y": 0},
|
|
||||||
{"matrix": [1, 1], "x": 10, "y": 0},
|
|
||||||
{"matrix": [1, 2], "x": 11, "y": 0},
|
|
||||||
{"matrix": [1, 3], "x": 12, "y": 0},
|
|
||||||
{"matrix": [1, 4], "x": 13, "y": 0},
|
|
||||||
{"matrix": [1, 5], "x": 14, "y": 0},
|
|
||||||
|
|
||||||
{"matrix": [1, 6], "x": 0, "y": 1},
|
|
||||||
{"matrix": [1, 7], "x": 1, "y": 1},
|
|
||||||
{"matrix": [1, 8], "x": 2, "y": 1},
|
|
||||||
{"matrix": [2, 0], "x": 3, "y": 1},
|
|
||||||
{"matrix": [2, 1], "x": 4, "y": 1},
|
|
||||||
{"matrix": [2, 2], "x": 5, "y": 1},
|
|
||||||
{"matrix": [2, 3], "x": 6, "y": 1},
|
|
||||||
{"matrix": [2, 4], "x": 7, "y": 1},
|
|
||||||
{"matrix": [2, 5], "x": 8, "y": 1},
|
|
||||||
{"matrix": [2, 6], "x": 9, "y": 1},
|
|
||||||
{"matrix": [2, 7], "x": 10, "y": 1},
|
|
||||||
{"matrix": [2, 8], "x": 11, "y": 1},
|
|
||||||
{"matrix": [3, 0], "x": 12, "y": 1},
|
|
||||||
{"matrix": [3, 1], "x": 13, "y": 1},
|
|
||||||
{"matrix": [3, 2], "x": 14, "y": 1},
|
|
||||||
|
|
||||||
{"matrix": [3, 3], "x": 0, "y": 2},
|
|
||||||
{"matrix": [3, 4], "x": 1, "y": 2},
|
|
||||||
{"matrix": [3, 5], "x": 2, "y": 2},
|
|
||||||
{"matrix": [3, 6], "x": 3, "y": 2},
|
|
||||||
{"matrix": [3, 7], "x": 4, "y": 2},
|
|
||||||
{"matrix": [3, 8], "x": 5, "y": 2},
|
|
||||||
{"matrix": [4, 0], "x": 6, "y": 2},
|
|
||||||
{"matrix": [4, 1], "x": 7, "y": 2},
|
|
||||||
{"matrix": [4, 2], "x": 8, "y": 2},
|
|
||||||
{"matrix": [4, 3], "x": 9, "y": 2},
|
|
||||||
{"matrix": [4, 4], "x": 10, "y": 2},
|
|
||||||
{"matrix": [4, 5], "x": 11, "y": 2},
|
|
||||||
{"matrix": [4, 6], "x": 12, "y": 2},
|
|
||||||
{"matrix": [4, 7], "x": 13, "y": 2},
|
|
||||||
{"matrix": [4, 8], "x": 14, "y": 2},
|
|
||||||
|
|
||||||
{"matrix": [5, 0], "x": 0, "y": 3},
|
|
||||||
{"matrix": [5, 1], "x": 1, "y": 3},
|
|
||||||
{"matrix": [5, 2], "x": 2, "y": 3},
|
|
||||||
{"matrix": [5, 3], "x": 3, "y": 3},
|
|
||||||
{"matrix": [5, 4], "x": 4, "y": 3},
|
|
||||||
{"matrix": [5, 5], "x": 5, "y": 3},
|
|
||||||
{"matrix": [5, 6], "x": 6, "y": 3},
|
|
||||||
{"matrix": [5, 7], "x": 7, "y": 3},
|
|
||||||
{"matrix": [5, 8], "x": 8, "y": 3},
|
|
||||||
{"matrix": [6, 0], "x": 9, "y": 3},
|
|
||||||
{"matrix": [6, 1], "x": 10, "y": 3},
|
|
||||||
{"matrix": [6, 2], "x": 11, "y": 3},
|
|
||||||
{"matrix": [6, 3], "x": 12, "y": 3},
|
|
||||||
{"matrix": [6, 4], "x": 13, "y": 3},
|
|
||||||
{"matrix": [6, 5], "x": 14, "y": 3},
|
|
||||||
|
|
||||||
{"matrix": [6, 6], "x": 0, "y": 4},
|
|
||||||
{"matrix": [6, 7], "x": 1, "y": 4},
|
|
||||||
{"matrix": [6, 8], "x": 2, "y": 4},
|
|
||||||
{"matrix": [7, 0], "x": 3, "y": 4},
|
|
||||||
{"matrix": [7, 1], "x": 4, "y": 4},
|
|
||||||
{"matrix": [7, 2], "x": 5, "y": 4},
|
|
||||||
{"matrix": [7, 3], "x": 6, "y": 4},
|
|
||||||
{"matrix": [7, 4], "x": 7, "y": 4},
|
|
||||||
{"matrix": [7, 5], "x": 8, "y": 4},
|
|
||||||
{"matrix": [7, 6], "x": 9, "y": 4},
|
|
||||||
{"matrix": [7, 7], "x": 10, "y": 4},
|
|
||||||
{"matrix": [7, 8], "x": 11, "y": 4},
|
|
||||||
{"matrix": [8, 0], "x": 12, "y": 4},
|
|
||||||
{"matrix": [8, 1], "x": 13, "y": 4},
|
|
||||||
{"matrix": [8, 2], "x": 14, "y": 4}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
#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
|
|
|
@ -18,6 +18,12 @@
|
||||||
"nkro": true,
|
"nkro": true,
|
||||||
"rgblight": true
|
"rgblight": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "B6"],
|
"cols": ["F4", "F5", "F6", "F7", "B1", "B3", "B2", "B6"],
|
||||||
"rows": ["D3", "D2", "D1", "D0", "D4", "C6", "D7", "E6"]
|
"rows": ["D3", "D2", "D1", "D0", "D4", "C6", "D7", "E6"]
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2012 Jun Wako <wakojun@gmail.com>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
/* 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
|
|
|
@ -17,6 +17,12 @@
|
||||||
"mousekey": true,
|
"mousekey": true,
|
||||||
"nkro": true
|
"nkro": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["D3", "D2", "D1", "D0", "D4", "C6", "D7", "E6", "B4"],
|
"cols": ["D3", "D2", "D1", "D0", "D4", "C6", "D7", "E6", "B4"],
|
||||||
"rows": ["B6", "B2", "B3", "B1", "F7", "F6", "F5", "F4"]
|
"rows": ["B6", "B2", "B3", "B1", "F7", "F6", "F5", "F4"]
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/* Copyright 2019
|
|
||||||
*
|
|
||||||
* 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
|
|
|
@ -18,6 +18,12 @@
|
||||||
"mousekey": true,
|
"mousekey": true,
|
||||||
"nkro": true
|
"nkro": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"direct": [
|
"direct": [
|
||||||
["F4", "F5", "F6"],
|
["F4", "F5", "F6"],
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/* Copyright 2018
|
|
||||||
*
|
|
||||||
* 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
|
|
|
@ -13,6 +13,21 @@
|
||||||
"rows": ["D3", "D2", "D1", "D0"]
|
"rows": ["D3", "D2", "D1", "D0"]
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"command": true,
|
||||||
|
"nkro": true,
|
||||||
|
"backlight": true,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"backlight": {
|
"backlight": {
|
||||||
"pin": "B5"
|
"pin": "B5"
|
||||||
},
|
},
|
|
@ -1,15 +1,2 @@
|
||||||
# Build Options
|
|
||||||
# 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 = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
|
|
||||||
# Disable unsupported hardware
|
# Disable unsupported hardware
|
||||||
AUDIO_SUPPORTED = no
|
AUDIO_SUPPORTED = no
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
/* Copyright 2021
|
|
||||||
*
|
|
||||||
* 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
|
|
||||||
|
|
||||||
//more detailed config options start below:
|
|
||||||
|
|
||||||
/* 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
|
|
|
@ -11,9 +11,36 @@
|
||||||
"mousekey": true,
|
"mousekey": true,
|
||||||
"nkro": false
|
"nkro": false
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"usb": {
|
"usb": {
|
||||||
"vid": "0x4025",
|
"vid": "0x4025",
|
||||||
"pid": "0x6060",
|
"pid": "0x6060",
|
||||||
"device_version": "0.0.1"
|
"device_version": "0.0.1"
|
||||||
|
},
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT_ortho_4x3": {
|
||||||
|
"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": 0, "y": 1},
|
||||||
|
{"matrix": [0, 4], "x": 1, "y": 1},
|
||||||
|
{"matrix": [0, 5], "x": 2, "y": 1},
|
||||||
|
|
||||||
|
{"matrix": [0, 6], "x": 0, "y": 2},
|
||||||
|
{"matrix": [0, 7], "x": 1, "y": 2},
|
||||||
|
{"matrix": [0, 8], "x": 2, "y": 2},
|
||||||
|
|
||||||
|
{"matrix": [0, 9], "x": 0, "y": 3},
|
||||||
|
{"matrix": [0, 10], "x": 1, "y": 3},
|
||||||
|
{"matrix": [0, 11], "x": 2, "y": 3}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,26 +5,5 @@
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina"
|
||||||
"layouts": {
|
|
||||||
"LAYOUT_ortho_4x3": {
|
|
||||||
"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": 0, "y": 1},
|
|
||||||
{"matrix": [0, 4], "x": 1, "y": 1},
|
|
||||||
{"matrix": [0, 5], "x": 2, "y": 1},
|
|
||||||
|
|
||||||
{"matrix": [0, 6], "x": 0, "y": 2},
|
|
||||||
{"matrix": [0, 7], "x": 1, "y": 2},
|
|
||||||
{"matrix": [0, 8], "x": 2, "y": 2},
|
|
||||||
|
|
||||||
{"matrix": [0, 9], "x": 0, "y": 3},
|
|
||||||
{"matrix": [0, 10], "x": 1, "y": 3},
|
|
||||||
{"matrix": [0, 11], "x": 2, "y": 3}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,26 +5,5 @@
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "halfkay",
|
"bootloader": "halfkay"
|
||||||
"layouts": {
|
|
||||||
"LAYOUT_ortho_4x3": {
|
|
||||||
"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": 0, "y": 1},
|
|
||||||
{"matrix": [0, 4], "x": 1, "y": 1},
|
|
||||||
{"matrix": [0, 5], "x": 2, "y": 1},
|
|
||||||
|
|
||||||
{"matrix": [0, 6], "x": 0, "y": 2},
|
|
||||||
{"matrix": [0, 7], "x": 1, "y": 2},
|
|
||||||
{"matrix": [0, 8], "x": 2, "y": 2},
|
|
||||||
|
|
||||||
{"matrix": [0, 9], "x": 0, "y": 3},
|
|
||||||
{"matrix": [0, 10], "x": 1, "y": 3},
|
|
||||||
{"matrix": [0, 11], "x": 2, "y": 3}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
/* Locking resynchronize hack */
|
|
||||||
#define LOCKING_RESYNC_ENABLE
|
|
||||||
|
|
||||||
/* eliminate lag on space cadet mods */
|
|
||||||
#define PERMISSIVE_HOLD
|
|
|
@ -37,6 +37,15 @@
|
||||||
"nkro": true,
|
"nkro": true,
|
||||||
"rgblight": true
|
"rgblight": true
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": false,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tapping": {
|
||||||
|
"permissive_hold": true
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["B4", "E6", "D7", "C6", "D4", "D0"],
|
"cols": ["B4", "E6", "D7", "C6", "D4", "D0"],
|
||||||
"rows": ["F7", "B1", "B3", "B2", "B6"]
|
"rows": ["F7", "B1", "B3", "B2", "B6"]
|
||||||
|
|
|
@ -28,10 +28,5 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
/* COL2ROW, ROW2COL*/
|
/* COL2ROW, ROW2COL*/
|
||||||
#define DIODE_DIRECTION COL2ROW
|
#define DIODE_DIRECTION COL2ROW
|
||||||
|
|
||||||
/* 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
|
|
||||||
|
|
||||||
/* Enable GNAP matrix serial output */
|
/* Enable GNAP matrix serial output */
|
||||||
#define GNAP_ENABLE
|
#define GNAP_ENABLE
|
||||||
|
|
|
@ -10,6 +10,19 @@
|
||||||
},
|
},
|
||||||
"processor": "atmega32u4",
|
"processor": "atmega32u4",
|
||||||
"bootloader": "caterina",
|
"bootloader": "caterina",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"command": true,
|
||||||
|
"nkro": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"layouts": {
|
"layouts": {
|
||||||
"LAYOUT": {
|
"LAYOUT": {
|
||||||
"layout": [
|
"layout": [
|
|
@ -1,16 +1,3 @@
|
||||||
# Build Options
|
|
||||||
# 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 = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
|
|
||||||
# custom matrix setup
|
|
||||||
CUSTOM_MATRIX = yes
|
CUSTOM_MATRIX = yes
|
||||||
SRC += matrix.c
|
SRC += matrix.c
|
||||||
UART_DRIVER_REQUIRED = yes
|
UART_DRIVER_REQUIRED = yes
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2020 Alec Penland
|
|
||||||
Copyright 2020 Garret Gartner
|
|
||||||
|
|
||||||
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
|
|
|
@ -16,6 +16,12 @@
|
||||||
"mousekey": true,
|
"mousekey": true,
|
||||||
"nkro": false
|
"nkro": false
|
||||||
},
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"matrix_pins": {
|
"matrix_pins": {
|
||||||
"cols": ["E6", "B0", "B1", "B2", "B3", "B7", "F6", "F5", "F4", "C7", "F7", "C6", "B6", "D4"],
|
"cols": ["E6", "B0", "B1", "B2", "B3", "B7", "F6", "F5", "F4", "C7", "F7", "C6", "B6", "D4"],
|
||||||
"rows": ["D3", "D5", "D7", "D6"]
|
"rows": ["D3", "D5", "D7", "D6"]
|
||||||
|
|
|
@ -4,6 +4,13 @@
|
||||||
"pid": "0x0011",
|
"pid": "0x0011",
|
||||||
"device_version": "0.0.2"
|
"device_version": "0.0.2"
|
||||||
},
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"nkro": true,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
"rgblight": {
|
"rgblight": {
|
||||||
"saturation_steps": 8,
|
"saturation_steps": 8,
|
||||||
"brightness_steps": 8,
|
"brightness_steps": 8,
|
|
@ -1,16 +1,2 @@
|
||||||
# Build Options
|
|
||||||
# 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 = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
|
||||||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
||||||
AUDIO_ENABLE = no # Audio output
|
|
||||||
|
|
||||||
# Wildcard to allow APM32 MCU
|
# Wildcard to allow APM32 MCU
|
||||||
DFU_SUFFIX_ARGS = -p FFFF -v FFFF
|
DFU_SUFFIX_ARGS = -p FFFF -v FFFF
|
||||||
|
|
||||||
|
|
|
@ -25,11 +25,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#define WS2812_SPI_SCK_PIN A5
|
#define WS2812_SPI_SCK_PIN A5
|
||||||
#define WS2812_SPI_SCK_PAL_MODE 0
|
#define WS2812_SPI_SCK_PAL_MODE 0
|
||||||
|
|
||||||
/* 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
|
|
||||||
|
|
||||||
/* Indicator leds */
|
/* Indicator leds */
|
||||||
#define LOCK_LIGHTS TRUE
|
#define LOCK_LIGHTS TRUE
|
||||||
#define DISPLAY_LAYERS TRUE
|
#define DISPLAY_LAYERS TRUE
|
||||||
|
|
|
@ -13,6 +13,22 @@
|
||||||
"rows": ["A2", "A1", "B8", "A10", "C15", "A15", "B7", "B6", "C14", "C13"]
|
"rows": ["A2", "A1", "B8", "A10", "C15", "A15", "B7", "B6", "C14", "C13"]
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"console": true,
|
||||||
|
"command": true,
|
||||||
|
"nkro": true,
|
||||||
|
"backlight": true,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"dynamic_keymap": {
|
"dynamic_keymap": {
|
||||||
"layer_count": 5
|
"layer_count": 5
|
||||||
},
|
},
|
|
@ -1,15 +1,2 @@
|
||||||
# Build Options
|
|
||||||
# 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 = yes # Console for debug
|
|
||||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = yes
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
|
|
||||||
# Wildcard to allow APM32 MCU
|
# Wildcard to allow APM32 MCU
|
||||||
DFU_SUFFIX_ARGS = -p FFFF -v FFFF
|
DFU_SUFFIX_ARGS = -p FFFF -v FFFF
|
||||||
|
|
||||||
|
|
|
@ -23,11 +23,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
/* Underglow */
|
/* Underglow */
|
||||||
#define WS2812_EXTERNAL_PULLUP
|
#define WS2812_EXTERNAL_PULLUP
|
||||||
|
|
||||||
/* 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
|
|
||||||
|
|
||||||
/* Indicator leds */
|
/* Indicator leds */
|
||||||
#define LAYER_1 B14
|
#define LAYER_1 B14
|
||||||
#define LAYER_2 B15
|
#define LAYER_2 B15
|
||||||
|
|
|
@ -13,6 +13,21 @@
|
||||||
"rows": ["A2", "A1", "B8", "A10", "C15", "A15", "B7", "B6", "C14", "C13"]
|
"rows": ["A2", "A1", "B8", "A10", "C15", "A15", "B7", "B6", "C14", "C13"]
|
||||||
},
|
},
|
||||||
"diode_direction": "COL2ROW",
|
"diode_direction": "COL2ROW",
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"command": true,
|
||||||
|
"nkro": true,
|
||||||
|
"backlight": true,
|
||||||
|
"rgblight": true
|
||||||
|
},
|
||||||
|
"qmk": {
|
||||||
|
"locking": {
|
||||||
|
"enabled": true,
|
||||||
|
"resync": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"dynamic_keymap": {
|
"dynamic_keymap": {
|
||||||
"layer_count": 5
|
"layer_count": 5
|
||||||
},
|
},
|
|
@ -1,15 +1,2 @@
|
||||||
# Build Options
|
|
||||||
# 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 = yes # Commands for debug and configuration
|
|
||||||
NKRO_ENABLE = yes # Enable N-Key Rollover
|
|
||||||
BACKLIGHT_ENABLE = yes
|
|
||||||
RGBLIGHT_ENABLE = yes
|
|
||||||
|
|
||||||
# Wildcard to allow APM32 MCU
|
# Wildcard to allow APM32 MCU
|
||||||
DFU_SUFFIX_ARGS = -p FFFF -v FFFF
|
DFU_SUFFIX_ARGS = -p FFFF -v FFFF
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,8 @@
|
||||||
"extrakey": true,
|
"extrakey": true,
|
||||||
"mousekey": false,
|
"mousekey": false,
|
||||||
"nkro": true,
|
"nkro": true,
|
||||||
"rgblight": true
|
"rgblight": true,
|
||||||
|
"key_lock": true
|
||||||
},
|
},
|
||||||
"rgblight": {
|
"rgblight": {
|
||||||
"led_count": 12,
|
"led_count": 12,
|
|
@ -1,4 +0,0 @@
|
||||||
# Build Options
|
|
||||||
# change yes to no to disable
|
|
||||||
#
|
|
||||||
KEY_LOCK_ENABLE = yes
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue