forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d33a20
commit 1cc0f00
Showing
4 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright 2022 Charly Delay <[email protected]> (@0xcharly) | ||
* | ||
* 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 | ||
|
||
/* Handedness. */ | ||
#define MASTER_RIGHT | ||
|
||
// To use the handedness pin, resistors need to be installed on the adapter PCB. | ||
// If so, uncomment the following code, and undefine MASTER_RIGHT above. | ||
// #define SPLIT_HAND_PIN GP15 | ||
// #define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left. | ||
|
||
/* Reset. */ | ||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET | ||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17 | ||
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"keyboard_name": "Skeletyl KeeBoar", | ||
"usb": { | ||
"device_version": "2.0.0" | ||
}, | ||
"features": { | ||
"bootmagic": true, | ||
"mousekey": false, | ||
"extrakey": true, | ||
}, | ||
"rgb_matrix": { | ||
"driver": "ws2812" | ||
}, | ||
"matrix_pins": { | ||
"cols": ["GP28", "GP10", "GP6", "GP7", "GP8"], | ||
"rows": ["GP26", "GP5", "GP4", "GP9"] | ||
}, | ||
"diode_direction": "ROW2COL", | ||
"split": { | ||
"enabled": true, | ||
"soft_serial_pin": "GP1" | ||
}, | ||
"processor": "RP2040", | ||
"bootloader": "rp2040" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Splinky controller | ||
|
||
The splinky is a Pro-Micro/Elite-C replacement with USB-C and RP2040. | ||
|
||
See [plut0nium/0xB2](https://github.com/plut0nium/0xB2/#releases) to figure out the right version for you (v2 or v3). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
AUDIO_SUPPORTED = no # Audio is not supported | ||
|
||
SERIAL_DRIVER = vendor |