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.
Merge remote-tracking branch 'origin/master' into develop
- Loading branch information
Showing
7 changed files
with
181 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,23 @@ | ||
/* | ||
Copyright 2023 kisakeyluxury | ||
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 |
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,69 @@ | ||
{ | ||
"keyboard_name": "fraserqaz", | ||
"manufacturer": "iceage", | ||
"maintainer": "kisakey-luxury", | ||
"usb": { | ||
"vid": "0xFEED", | ||
"pid": "0x6060", | ||
"device_version": "0.0.1" | ||
}, | ||
"features": { | ||
"bootmagic": true, | ||
"mousekey": true, | ||
"extrakey": true, | ||
"nkro": true | ||
}, | ||
"matrix_pins": { | ||
"cols": ["D0", "D1", "D2", "D3", "F7", "F6", "F5", "F4", "F1", "F0"], | ||
"rows": ["D5", "D4", "D6", "C6"] | ||
}, | ||
"diode_direction": "COL2ROW", | ||
"development_board": "promicro", | ||
"layouts": { | ||
"LAYOUT": { | ||
"layout": [ | ||
{"matrix": [0, 0], "x": 0, "y": 0}, | ||
{"matrix": [0, 1], "x": 1, "y": 0}, | ||
{"matrix": [0, 2], "x": 2, "y": 0}, | ||
{"matrix": [0, 3], "x": 3, "y": 0}, | ||
{"matrix": [0, 4], "x": 4, "y": 0}, | ||
{"matrix": [0, 5], "x": 5, "y": 0}, | ||
{"matrix": [0, 6], "x": 6, "y": 0}, | ||
{"matrix": [0, 7], "x": 7, "y": 0}, | ||
{"matrix": [0, 8], "x": 8, "y": 0}, | ||
{"matrix": [0, 9], "x": 9, "y": 0, "w": 1.25}, | ||
|
||
{"matrix": [1, 0], "x": 0, "y": 1, "w": 1.25}, | ||
{"matrix": [1, 1], "x": 1.25, "y": 1}, | ||
{"matrix": [1, 2], "x": 2.25, "y": 1}, | ||
{"matrix": [1, 3], "x": 3.25, "y": 1}, | ||
{"matrix": [1, 4], "x": 4.25, "y": 1}, | ||
{"matrix": [1, 5], "x": 5.25, "y": 1}, | ||
{"matrix": [1, 6], "x": 6.25, "y": 1}, | ||
{"matrix": [1, 7], "x": 7.25, "y": 1}, | ||
{"matrix": [1, 8], "x": 8.25, "y": 1}, | ||
{"matrix": [1, 9], "x": 9.25, "y": 1}, | ||
|
||
{"matrix": [2, 0], "x": 0, "y": 2, "w": 1.75}, | ||
{"matrix": [2, 2], "x": 1.75, "y": 2}, | ||
{"matrix": [2, 3], "x": 2.75, "y": 2}, | ||
{"matrix": [2, 4], "x": 3.75, "y": 2}, | ||
{"matrix": [2, 5], "x": 4.75, "y": 2}, | ||
{"matrix": [2, 6], "x": 5.75, "y": 2}, | ||
{"matrix": [2, 7], "x": 6.75, "y": 2}, | ||
{"matrix": [2, 8], "x": 7.75, "y": 2}, | ||
{"matrix": [2, 9], "x": 8.75, "y": 2, "w": 1.5}, | ||
|
||
{"matrix": [3, 0], "x": 0, "y": 3}, | ||
{"matrix": [3, 1], "x": 1, "y": 3}, | ||
{"matrix": [3, 2], "x": 2, "y": 3}, | ||
{"matrix": [3, 4], "x": 3, "y": 3}, | ||
{"matrix": [3, 5], "x": 4, "y": 3, "w": 2.25}, | ||
{"matrix": [3, 6], "x": 6.25, "y": 3}, | ||
{"matrix": [3, 7], "x": 7.25, "y": 3}, | ||
{"matrix": [3, 8], "x": 8.25, "y": 3}, | ||
{"matrix": [3, 9], "x": 9.25, "y": 3}, | ||
] | ||
} | ||
} | ||
} |
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,20 @@ | ||
/* | ||
Copyright 2023 kisakeyluxury | ||
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 | ||
|
||
#define COMBO_TERM 200 |
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,43 @@ | ||
/* | ||
Copyright 2023 kisakeyluxury | ||
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 layers{ | ||
_BASE | ||
}; | ||
|
||
enum combo_events { | ||
COMBO_ESC | ||
}; | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[_BASE] = LAYOUT( | ||
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, | ||
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_ENT, | ||
KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, | ||
KC_1, KC_2, KC_3, KC_4, KC_SPACE, KC_4, KC_3, KC_2, QK_BOOT | ||
) | ||
}; | ||
|
||
#ifdef COMBO_ENABLE | ||
const uint16_t PROGMEM combo_esc[] = {KC_E, KC_W, COMBO_END}; | ||
|
||
combo_t key_combos[] = { | ||
[COMBO_ESC] = COMBO(combo_esc,KC_ESC), | ||
}; | ||
#endif |
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 @@ | ||
COMBO_ENABLE = yes |
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,24 @@ | ||
# qtz | ||
|
||
35% keyboard designed by Iceage | ||
|
||
![pcb image](https://i.imgur.com/D2OmIkUh.png) | ||
|
||
* Keyboard Maintainer: [kisakey-luxury](https://github.com/kisakey-luxury) | ||
* Hardware Supported: *not released yet* | ||
* Hardware Availability: *not released yet* | ||
|
||
Make example for this keyboard (after setting up your build environment): | ||
|
||
make kisakeyluxury/qtz:default | ||
|
||
Flashing example for this keyboard: | ||
|
||
make kisakeyluxury/qtz:default:flash | ||
|
||
## Bootloader | ||
|
||
Enter the bootloader in 2 ways: | ||
|
||
* **Physical reset button**: Briefly press the button on the back of the PCB under the "Z" key | ||
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available (default is bottom-right most key) |
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 @@ | ||
# intentionally left blank |