forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Keyboard] Add Switchplate 910 keyboard (qmk#13235)
Co-authored-by: Ryan <[email protected]>
- Loading branch information
Showing
10 changed files
with
581 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,87 @@ | ||
/* | ||
Copyright 2021 Stefan Karsch | ||
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 0x54F3 | ||
#define PRODUCT_ID 0x2065 | ||
#define DEVICE_VER 0x0001 | ||
#define MANUFACTURER Switchplate Peripherals | ||
#define PRODUCT 910 | ||
|
||
/* key matrix size */ | ||
#define MATRIX_ROWS 5 | ||
#define MATRIX_COLS 15 | ||
|
||
/* | ||
* Keyboard Matrix Assignments | ||
* | ||
* Change this to how you wired your keyboard | ||
* COLS: AVR pins used for columns, left to right | ||
* ROWS: AVR pins used for rows, top to bottom | ||
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
* | ||
*/ | ||
#define MATRIX_ROW_PINS { F4, F5, F6, F7, D1 } | ||
#define MATRIX_COL_PINS { D2, D3, D5, D4, D6, D7, B4, B5, B6, C6, C7, B3, B2, B0, B1 } | ||
#define UNUSED_PINS | ||
|
||
/* COL2ROW, ROW2COL*/ | ||
#define DIODE_DIRECTION COL2ROW | ||
|
||
#define BACKLIGHT_PIN B7 | ||
// #define BACKLIGHT_BREATHING | ||
#define BACKLIGHT_LEVELS 3 | ||
|
||
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
#define DEBOUNCE 5 | ||
|
||
/* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
//#define MATRIX_HAS_GHOST | ||
|
||
/* 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 | ||
|
||
/* disable these deprecated features by default */ | ||
#define NO_ACTION_MACRO | ||
#define NO_ACTION_FUNCTION | ||
|
||
/* Bootmagic Lite key configuration */ | ||
// #define BOOTMAGIC_LITE_ROW 0 | ||
// #define BOOTMAGIC_LITE_COLUMN 0 |
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,297 @@ | ||
{ | ||
"keyboard_name": "southpaw910", | ||
"url": "", | ||
"maintainer": "MxBluE", | ||
"width": 22.5, | ||
"height": 6.25, | ||
"layouts": { | ||
"LAYOUT_all": { | ||
"layout": [ | ||
{ | ||
"x": 0, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 1, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 2, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 3, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 4, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 5, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 6, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 7, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 8, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 9, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 10, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 11, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 12, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 13, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 14, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 15, | ||
"y": 0 | ||
}, | ||
{ | ||
"x": 0, | ||
"y": 1, | ||
"w": 1.5 | ||
}, | ||
{ | ||
"x": 1.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 2.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 3.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 4.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 5.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 6.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 7.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 8.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 9.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 10.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 11.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 12.5, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 13.5, | ||
"y": 1, | ||
"w": 1.5 | ||
}, | ||
{ | ||
"x": 15, | ||
"y": 1 | ||
}, | ||
{ | ||
"x": 0, | ||
"y": 2, | ||
"w": 1.75 | ||
}, | ||
{ | ||
"x": 1.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 2.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 3.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 4.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 5.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 6.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 7.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 8.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 9.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 10.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 11.75, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 12.75, | ||
"y": 2, | ||
"w": 2.25 | ||
}, | ||
{ | ||
"x": 15, | ||
"y": 2 | ||
}, | ||
{ | ||
"x": 0, | ||
"y": 3, | ||
"w": 2.25 | ||
}, | ||
{ | ||
"x": 2.25, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 3.25, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 4.25, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 5.25, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 6.25, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 7.25, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 8.25, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 9.25, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 10.25, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 11.25, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 12.25, | ||
"y": 3, | ||
"w": 1.75 | ||
}, | ||
{ | ||
"x": 14, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 15, | ||
"y": 3 | ||
}, | ||
{ | ||
"x": 0, | ||
"y": 4, | ||
"w": 1.25 | ||
}, | ||
{ | ||
"x": 1.25, | ||
"y": 4, | ||
"w": 1.25 | ||
}, | ||
{ | ||
"x": 2.5, | ||
"y": 4, | ||
"w": 1.25 | ||
}, | ||
{ | ||
"x": 3.75, | ||
"y": 4, | ||
"w": 6.25 | ||
}, | ||
{ | ||
"x": 10, | ||
"y": 4, | ||
"w": 1.25 | ||
}, | ||
{ | ||
"x": 11.25, | ||
"y": 4, | ||
"w": 1.25 | ||
}, | ||
{ | ||
"x": 13, | ||
"y": 4 | ||
}, | ||
{ | ||
"x": 14, | ||
"y": 4 | ||
}, | ||
{ | ||
"x": 15, | ||
"y": 4 | ||
} | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.