-
-
Notifications
You must be signed in to change notification settings - Fork 40.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New Keyboard: SpiderIsland 25 key rgb hotswap keyboard #11748
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,41 @@ | ||
/* Copyright 2021 jereksel | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "config_common.h" | ||
|
||
/* USB Device descriptor parameter */ | ||
#define VENDOR_ID 0xFEED | ||
#define PRODUCT_ID 0x0000 | ||
#define DEVICE_VER 0x0001 | ||
#define MANUFACTURER SpiderIsland | ||
#define PRODUCT Winry 25tc | ||
|
||
#define MATRIX_ROWS 5 | ||
#define MATRIX_COLS 5 | ||
|
||
#define MATRIX_ROW_PINS { E6, F0, D6, D2, B6 } | ||
#define MATRIX_COL_PINS { F5, C7, B7, B2, B4 } | ||
|
||
#define DIODE_DIRECTION COL2ROW | ||
|
||
#define RGB_DI_PIN D5 | ||
#define RGBLED_NUM 40 | ||
#define RGBLIGHT_HUE_STEP 8 | ||
#define RGBLIGHT_SAT_STEP 8 | ||
#define RGBLIGHT_VAL_STEP 8 | ||
#define RGBLIGHT_LIMIT_VAL 150 /* The maximum brightness level */ |
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,38 @@ | ||
{ | ||
"keyboard_name": "Winry 25tc", | ||
"url": "", | ||
"maintainer": "qmk", | ||
"width": 5, | ||
"height": 5, | ||
"layouts": { | ||
"LAYOUT": { | ||
"layout": [ | ||
{"label":"K00 (E6,F5)", "x":0, "y":0}, | ||
{"label":"K01 (E6,C7)", "x":1, "y":0}, | ||
{"label":"K02 (E6,B7)", "x":2, "y":0}, | ||
{"label":"K03 (E6,B2)", "x":3, "y":0}, | ||
{"label":"K04 (E6,B4)", "x":4, "y":0}, | ||
{"label":"K10 (F0,F5)", "x":0, "y":1}, | ||
{"label":"K11 (F0,C7)", "x":1, "y":1}, | ||
{"label":"K12 (F0,B7)", "x":2, "y":1}, | ||
{"label":"K13 (F0,B2)", "x":3, "y":1}, | ||
{"label":"K14 (F0,B4)", "x":4, "y":1}, | ||
{"label":"K20 (D6,F5)", "x":0, "y":2}, | ||
{"label":"K21 (D6,C7)", "x":1, "y":2}, | ||
{"label":"K22 (D6,B7)", "x":2, "y":2}, | ||
{"label":"K23 (D6,B2)", "x":3, "y":2}, | ||
{"label":"K24 (D6,B4)", "x":4, "y":2}, | ||
{"label":"K30 (D2,F5)", "x":0, "y":3}, | ||
{"label":"K31 (D2,C7)", "x":1, "y":3}, | ||
{"label":"K32 (D2,B7)", "x":2, "y":3}, | ||
{"label":"K33 (D2,B2)", "x":3, "y":3}, | ||
{"label":"K34 (D2,B4)", "x":4, "y":3}, | ||
{"label":"K40 (B6,F5)", "x":0, "y":4}, | ||
{"label":"K41 (B6,C7)", "x":1, "y":4}, | ||
{"label":"K42 (B6,B7)", "x":2, "y":4}, | ||
{"label":"K43 (B6,B2)", "x":3, "y":4}, | ||
{"label":"K44 (B6,B4)", "x":4, "y":4} | ||
] | ||
} | ||
} | ||
} |
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,39 @@ | ||
/* Copyright 2021 jereksel | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include QMK_KEYBOARD_H | ||
|
||
enum my_layers { | ||
_FIRST_LAYER, | ||
_SECOND_LAYER | ||
}; | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[_FIRST_LAYER] = LAYOUT( | ||
KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, KC_ESC, | ||
KC_P7, KC_P8, KC_P9, KC_PPLS, RGB_TOG, | ||
KC_P4, KC_P5, KC_P6, KC_PENT, RGB_MOD, | ||
KC_P1, KC_P2, KC_P3, KC_UP, MO(_SECOND_LAYER), | ||
KC_P0, KC_PDOT, KC_LEFT, KC_DOWN, KC_RGHT | ||
), | ||
[_SECOND_LAYER] = LAYOUT( | ||
KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, | ||
KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, | ||
KC_F11, KC_F12, KC_MUTE, KC_VOLD, KC_VOLU, | ||
KC_MPLY, KC_MSTP, KC_MPRV, KC_MNXT, _______, | ||
KC_RSFT, KC_RALT, KC_RGUI, KC_APP, KC_RCTL | ||
), | ||
}; |
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,12 @@ | ||
# SpiderIsland 25-key RGB Backlight Hot Swap Mechanical Keyboard | ||
|
||
Keyboard from [SpiderIsland on AliExpress](https://a.aliexpress.com/_dVJsSpR). Seller provides [kbfirmware](https://kbfirmware.com/) JSON config that was converted to QMK. | ||
|
||
* Keyboard Maintainer: [jereksel](https://github.com/jereksel) | ||
* Hardware Availability: https://aliexpress.com/item/1005001523579896.html | ||
|
||
Make example for this keyboard (after setting up your build environment): | ||
|
||
make spiderisland/winry25tc:default | ||
|
||
**Reset Key**: Located on the other side of the keyboard. |
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,22 @@ | ||
# MCU name | ||
MCU = atmega32u4 | ||
|
||
# Bootloader selection | ||
BOOTLOADER = atmel-dfu | ||
|
||
# Build Options | ||
# change yes to no to disable | ||
# | ||
BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration | ||
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 | ||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
NKRO_ENABLE = no # USB Nkey Rollover | ||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
|
||
KEY_LOCK_ENABLE = yes # Enable KC_LOCK support | ||
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,17 @@ | ||
/* Copyright 2021 jereksel | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#include "winry25tc.h" |
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,33 @@ | ||||||||
/* Copyright 2021 jereksel | ||||||||
* | ||||||||
* This program is free software: you can redistribute it and/or modify | ||||||||
* it under the terms of the GNU General Public License as published by | ||||||||
* the Free Software Foundation, either version 2 of the License, or | ||||||||
* (at your option) any later version. | ||||||||
* | ||||||||
* This program is distributed in the hope that it will be useful, | ||||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||||||
* GNU General Public License for more details. | ||||||||
* | ||||||||
* You should have received a copy of the GNU General Public License | ||||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||||||||
*/ | ||||||||
|
||||||||
#pragma once | ||||||||
|
||||||||
#include "quantum.h" | ||||||||
|
||||||||
#define LAYOUT( \ | ||||||||
K00, K01, K02, K03, K04, \ | ||||||||
K10, K11, K12, K13, K14, \ | ||||||||
K20, K21, K22, K23, K24, \ | ||||||||
K30, K31, K32, K33, K34, \ | ||||||||
K40, K41, K42, K43, K44 \ | ||||||||
) { \ | ||||||||
{ K00, K01, K02, K03, K04 }, \ | ||||||||
{ K10, K11, K12, K13, K14 }, \ | ||||||||
{ K20, K21, K22, K23, K24 }, \ | ||||||||
{ K30, K31, K32, K33, K34 }, \ | ||||||||
{ K40, K41, K42, K43, K44 }, \ | ||||||||
} | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Multi-line |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bootmagic lite may be preferable here as the default keymap doesn't have a lot of the keys required to trigger the full bootmagic sequence.