aboutsummaryrefslogtreecommitdiff
path: root/keyboards/studiokestra
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/studiokestra')
-rw-r--r--keyboards/studiokestra/cascade/cascade.c18
-rw-r--r--keyboards/studiokestra/cascade/cascade.h73
-rw-r--r--keyboards/studiokestra/cascade/config.h84
-rw-r--r--keyboards/studiokestra/cascade/info.json207
-rw-r--r--keyboards/studiokestra/cascade/keymaps/default/keymap.c41
-rw-r--r--keyboards/studiokestra/cascade/keymaps/default/readme.md3
-rw-r--r--keyboards/studiokestra/cascade/keymaps/default_tsangan_hhkb/keymap.c40
-rw-r--r--keyboards/studiokestra/cascade/keymaps/default_tsangan_hhkb/readme.md3
-rw-r--r--keyboards/studiokestra/cascade/keymaps/via/keymap.c57
-rw-r--r--keyboards/studiokestra/cascade/keymaps/via/readme.md3
-rw-r--r--keyboards/studiokestra/cascade/keymaps/via/rules.mk1
-rw-r--r--keyboards/studiokestra/cascade/readme.md23
-rw-r--r--keyboards/studiokestra/cascade/rules.mk22
13 files changed, 575 insertions, 0 deletions
diff --git a/keyboards/studiokestra/cascade/cascade.c b/keyboards/studiokestra/cascade/cascade.c
new file mode 100644
index 000000000..e5c4ba279
--- /dev/null
+++ b/keyboards/studiokestra/cascade/cascade.c
@@ -0,0 +1,18 @@
1/*
2Copyright 2021 Studio Kestra
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include "cascade.h"
diff --git a/keyboards/studiokestra/cascade/cascade.h b/keyboards/studiokestra/cascade/cascade.h
new file mode 100644
index 000000000..ad1d44089
--- /dev/null
+++ b/keyboards/studiokestra/cascade/cascade.h
@@ -0,0 +1,73 @@
1/*
2Copyright 2021 Studio Kestra
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "quantum.h"
21
22/* This a shortcut to help you visually see your layout.
23 *
24 * The first section contains all of the arguments representing the physical
25 * layout of the board and position of the keys.
26 *
27 * The second converts the arguments into a two-dimensional array which
28 * represents the switch matrix.
29 */
30#define LAYOUT_all( \
31 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K113, \
32 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K213, \
33 K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, \
34 K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K313, \
35 K400, K401, K402, K406, K410, K411, K412, K413 \
36) \
37{ \
38 { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013 }, \
39 { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113 }, \
40 { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213 }, \
41 { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, KC_NO, K313 }, \
42 { K400, K401, K402, KC_NO, KC_NO, KC_NO, K406, KC_NO, KC_NO, KC_NO, K410, K411, K412, K413 } \
43}
44
45#define LAYOUT_60_ansi( \
46 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, \
47 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K213, \
48 K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, \
49 K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, \
50 K400, K401, K402, K406, K410, K411, K412, K413 \
51) \
52{ \
53 { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013 }, \
54 { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, KC_NO}, \
55 { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213 }, \
56 { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, KC_NO, KC_NO}, \
57 { K400, K401, K402, KC_NO, KC_NO, KC_NO, K406, KC_NO, KC_NO, KC_NO, K410, K411, K412, K413 } \
58}
59
60#define LAYOUT_60_tsangan_hhkb( \
61 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K113, \
62 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K213, \
63 K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, \
64 K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K313, \
65 K400, K401, K402, K406, K411, K412, K413 \
66) \
67{ \
68 { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013 }, \
69 { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113 }, \
70 { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213 }, \
71 { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, KC_NO, K313 }, \
72 { K400, K401, K402, KC_NO, KC_NO, KC_NO, K406, KC_NO, KC_NO, KC_NO, KC_NO, K411, K412, K413 } \
73}
diff --git a/keyboards/studiokestra/cascade/config.h b/keyboards/studiokestra/cascade/config.h
new file mode 100644
index 000000000..88b2a583c
--- /dev/null
+++ b/keyboards/studiokestra/cascade/config.h
@@ -0,0 +1,84 @@
1/*
2Copyright 2021 Studio Kestra
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "config_common.h"
21
22/* USB Device descriptor parameter */
23#define VENDOR_ID 0x7C10
24#define PRODUCT_ID 0x6001
25#define DEVICE_VER 0x0001
26#define MANUFACTURER Studio Kestra
27#define PRODUCT Cascade
28
29#define MATRIX_ROWS 5
30#define MATRIX_COLS 14
31
32#define MATRIX_ROW_PINS { F0, B1, D4, F4, F1 }
33#define MATRIX_COL_PINS { E6, D5, D1, D0, F5, F6, F7, C7, C6, B6, B5, B4, D6, D7 }
34
35/* COL2ROW, ROW2COL*/
36#define DIODE_DIRECTION COL2ROW
37
38
39#define RGB_DI_PIN B0
40#ifdef RGB_DI_PIN
41 #define RGBLED_NUM 16
42 #define RGBLIGHT_HUE_STEP 8
43 #define RGBLIGHT_SAT_STEP 8
44 #define RGBLIGHT_VAL_STEP 8
45 #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
46 #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
47/*== all animations enable ==*/
48 #define RGBLIGHT_ANIMATIONS
49// /*== or choose animations ==*/
50// #define RGBLIGHT_EFFECT_BREATHING
51// #define RGBLIGHT_EFFECT_RAINBOW_MOOD
52// #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
53// #define RGBLIGHT_EFFECT_SNAKE
54// #define RGBLIGHT_EFFECT_KNIGHT
55// #define RGBLIGHT_EFFECT_CHRISTMAS
56// #define RGBLIGHT_EFFECT_STATIC_GRADIENT
57// #define RGBLIGHT_EFFECT_RGB_TEST
58// #define RGBLIGHT_EFFECT_ALTERNATING
59// /*== customize breathing effect ==*/
60// /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/
61 #define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
62// /*==== use exp() and sin() ====*/
63// #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
64// #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
65#endif
66
67/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
68#define DEBOUNCE 5
69
70/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
71#define LOCKING_SUPPORT_ENABLE
72/* Locking resynchronize hack */
73#define LOCKING_RESYNC_ENABLE
74
75/* disable action features */
76//#define NO_ACTION_LAYER
77//#define NO_ACTION_TAPPING
78//#define NO_ACTION_ONESHOT
79//#define NO_ACTION_MACRO
80//#define NO_ACTION_FUNCTION
81
82/* Bootmagic Lite key configuration */
83#define BOOTMAGIC_LITE_ROW 0
84#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/studiokestra/cascade/info.json b/keyboards/studiokestra/cascade/info.json
new file mode 100644
index 000000000..760c85d5b
--- /dev/null
+++ b/keyboards/studiokestra/cascade/info.json
@@ -0,0 +1,207 @@
1{
2 "keyboard_name": "Cascade",
3 "url": "https://studiokestra.ca/cascade/",
4 "maintainer": "Studio Kestra",
5 "width": 15,
6 "height": 5,
7 "layouts": {
8 "LAYOUT_all": {
9 "layout": [
10 {"label":"Esc", "x":0, "y":0},
11 {"label":"!", "x":1, "y":0},
12 {"label":"@", "x":2, "y":0},
13 {"label":"#", "x":3, "y":0},
14 {"label":"$", "x":4, "y":0},
15 {"label":"%", "x":5, "y":0},
16 {"label":"^", "x":6, "y":0},
17 {"label":"&", "x":7, "y":0},
18 {"label":"*", "x":8, "y":0},
19 {"label":"(", "x":9, "y":0},
20 {"label":")", "x":10, "y":0},
21 {"label":"_", "x":11, "y":0},
22 {"label":"+", "x":12, "y":0},
23 {"label":"~", "x":13, "y":0},
24 {"label":"|", "x":14, "y":0},
25 {"label":"Tab", "x":0, "y":1, "w":1.5},
26 {"label":"Q", "x":1.5, "y":1},
27 {"label":"W", "x":2.5, "y":1},
28 {"label":"E", "x":3.5, "y":1},
29 {"label":"R", "x":4.5, "y":1},
30 {"label":"T", "x":5.5, "y":1},
31 {"label":"Y", "x":6.5, "y":1},
32 {"label":"U", "x":7.5, "y":1},
33 {"label":"I", "x":8.5, "y":1},
34 {"label":"O", "x":9.5, "y":1},
35 {"label":"P", "x":10.5, "y":1},
36 {"label":"{", "x":11.5, "y":1},
37 {"label":"}", "x":12.5, "y":1},
38 {"label":"Backspace", "x":13.5, "y":1, "w":1.5},
39 {"label":"Caps Lock", "x":0, "y":2, "w":1.75},
40 {"label":"A", "x":1.75, "y":2},
41 {"label":"S", "x":2.75, "y":2},
42 {"label":"D", "x":3.75, "y":2},
43 {"label":"F", "x":4.75, "y":2},
44 {"label":"G", "x":5.75, "y":2},
45 {"label":"H", "x":6.75, "y":2},
46 {"label":"J", "x":7.75, "y":2},
47 {"label":"K", "x":8.75, "y":2},
48 {"label":"L", "x":9.75, "y":2},
49 {"label":":", "x":10.75, "y":2},
50 {"label":"\"", "x":11.75, "y":2},
51 {"label":"Enter", "x":12.75, "y":2, "w":2.25},
52 {"label":"Shift", "x":0, "y":3, "w":2.25},
53 {"label":"Z", "x":2.25, "y":3},
54 {"label":"X", "x":3.25, "y":3},
55 {"label":"C", "x":4.25, "y":3},
56 {"label":"V", "x":5.25, "y":3},
57 {"label":"B", "x":6.25, "y":3},
58 {"label":"N", "x":7.25, "y":3},
59 {"label":"M", "x":8.25, "y":3},
60 {"label":"<", "x":9.25, "y":3},
61 {"label":">", "x":10.25, "y":3},
62 {"label":"?", "x":11.25, "y":3},
63 {"label":"Shift", "x":12.25, "y":3, "w":1.75},
64 {"label":"Fn", "x":14, "y":3},
65 {"label":"Ctrl", "x":0, "y":4, "w":1.25},
66 {"label":"Win", "x":1.25, "y":4, "w":1.25},
67 {"label":"Alt", "x":2.5, "y":4, "w":1.25},
68 {"x":3.75, "y":4, "w":6.25},
69 {"label":"Alt", "x":10, "y":4, "w":1.25},
70 {"label":"Win", "x":11.25, "y":4, "w":1.25},
71 {"label":"Menu", "x":12.5, "y":4, "w":1.25},
72 {"label":"Ctrl", "x":13.75, "y":4, "w":1.25}
73 ]
74 },
75 "LAYOUT_60_ansi": {
76 "layout": [
77 {"label":"Esc", "x":0, "y":0},
78 {"label":"!", "x":1, "y":0},
79 {"label":"@", "x":2, "y":0},
80 {"label":"#", "x":3, "y":0},
81 {"label":"$", "x":4, "y":0},
82 {"label":"%", "x":5, "y":0},
83 {"label":"^", "x":6, "y":0},
84 {"label":"&", "x":7, "y":0},
85 {"label":"*", "x":8, "y":0},
86 {"label":"(", "x":9, "y":0},
87 {"label":")", "x":10, "y":0},
88 {"label":"_", "x":11, "y":0},
89 {"label":"+", "x":12, "y":0},
90 {"label":"Backspace", "x":13, "y":0, "w":2},
91 {"label":"Tab", "x":0, "y":1, "w":1.5},
92 {"label":"Q", "x":1.5, "y":1},
93 {"label":"W", "x":2.5, "y":1},
94 {"label":"E", "x":3.5, "y":1},
95 {"label":"R", "x":4.5, "y":1},
96 {"label":"T", "x":5.5, "y":1},
97 {"label":"Y", "x":6.5, "y":1},
98 {"label":"U", "x":7.5, "y":1},
99 {"label":"I", "x":8.5, "y":1},
100 {"label":"O", "x":9.5, "y":1},
101 {"label":"P", "x":10.5, "y":1},
102 {"label":"{", "x":11.5, "y":1},
103 {"label":"}", "x":12.5, "y":1},
104 {"label":"|", "x":13.5, "y":1, "w":1.5},
105 {"label":"Caps Lock", "x":0, "y":2, "w":1.75},
106 {"label":"A", "x":1.75, "y":2},
107 {"label":"S", "x":2.75, "y":2},
108 {"label":"D", "x":3.75, "y":2},
109 {"label":"F", "x":4.75, "y":2},
110 {"label":"G", "x":5.75, "y":2},
111 {"label":"H", "x":6.75, "y":2},
112 {"label":"J", "x":7.75, "y":2},
113 {"label":"K", "x":8.75, "y":2},
114 {"label":"L", "x":9.75, "y":2},
115 {"label":":", "x":10.75, "y":2},
116 {"label":"\"", "x":11.75, "y":2},
117 {"label":"Enter", "x":12.75, "y":2, "w":2.25},
118 {"label":"Shift", "x":0, "y":3, "w":2.25},
119 {"label":"Z", "x":2.25, "y":3},
120 {"label":"X", "x":3.25, "y":3},
121 {"label":"C", "x":4.25, "y":3},
122 {"label":"V", "x":5.25, "y":3},
123 {"label":"B", "x":6.25, "y":3},
124 {"label":"N", "x":7.25, "y":3},
125 {"label":"M", "x":8.25, "y":3},
126 {"label":"<", "x":9.25, "y":3},
127 {"label":">", "x":10.25, "y":3},
128 {"label":"?", "x":11.25, "y":3},
129 {"label":"Shift", "x":12.25, "y":3, "w":2.75},
130 {"label":"Ctrl", "x":0, "y":4, "w":1.25},
131 {"label":"Win", "x":1.25, "y":4, "w":1.25},
132 {"label":"Alt", "x":2.5, "y":4, "w":1.25},
133 {"x":3.75, "y":4, "w":6.25},
134 {"label":"Alt", "x":10, "y":4, "w":1.25},
135 {"label":"Win", "x":11.25, "y":4, "w":1.25},
136 {"label":"Menu", "x":12.5, "y":4, "w":1.25},
137 {"label":"Ctrl", "x":13.75, "y":4, "w":1.25}
138 ]
139 },
140 "LAYOUT_60_tsangan_hhkb": {
141 "layout": [
142 {"label":"Esc", "x":0, "y":0},
143 {"label":"!", "x":1, "y":0},
144 {"label":"@", "x":2, "y":0},
145 {"label":"#", "x":3, "y":0},
146 {"label":"$", "x":4, "y":0},
147 {"label":"%", "x":5, "y":0},
148 {"label":"^", "x":6, "y":0},
149 {"label":"&", "x":7, "y":0},
150 {"label":"*", "x":8, "y":0},
151 {"label":"(", "x":9, "y":0},
152 {"label":")", "x":10, "y":0},
153 {"label":"_", "x":11, "y":0},
154 {"label":"+", "x":12, "y":0},
155 {"label":"~", "x":13, "y":0},
156 {"label":"|", "x":14, "y":0},
157 {"label":"Tab", "x":0, "y":1, "w":1.5},
158 {"label":"Q", "x":1.5, "y":1},
159 {"label":"W", "x":2.5, "y":1},
160 {"label":"E", "x":3.5, "y":1},
161 {"label":"R", "x":4.5, "y":1},
162 {"label":"T", "x":5.5, "y":1},
163 {"label":"Y", "x":6.5, "y":1},
164 {"label":"U", "x":7.5, "y":1},
165 {"label":"I", "x":8.5, "y":1},
166 {"label":"O", "x":9.5, "y":1},
167 {"label":"P", "x":10.5, "y":1},
168 {"label":"{", "x":11.5, "y":1},
169 {"label":"}", "x":12.5, "y":1},
170 {"label":"Backspace", "x":13.5, "y":1, "w":1.5},
171 {"label":"Caps Lock", "x":0, "y":2, "w":1.75},
172 {"label":"A", "x":1.75, "y":2},
173 {"label":"S", "x":2.75, "y":2},
174 {"label":"D", "x":3.75, "y":2},
175 {"label":"F", "x":4.75, "y":2},
176 {"label":"G", "x":5.75, "y":2},
177 {"label":"H", "x":6.75, "y":2},
178 {"label":"J", "x":7.75, "y":2},
179 {"label":"K", "x":8.75, "y":2},
180 {"label":"L", "x":9.75, "y":2},
181 {"label":":", "x":10.75, "y":2},
182 {"label":"\"", "x":11.75, "y":2},
183 {"label":"Enter", "x":12.75, "y":2, "w":2.25},
184 {"label":"Shift", "x":0, "y":3, "w":2.25},
185 {"label":"Z", "x":2.25, "y":3},
186 {"label":"X", "x":3.25, "y":3},
187 {"label":"C", "x":4.25, "y":3},
188 {"label":"V", "x":5.25, "y":3},
189 {"label":"B", "x":6.25, "y":3},
190 {"label":"N", "x":7.25, "y":3},
191 {"label":"M", "x":8.25, "y":3},
192 {"label":"<", "x":9.25, "y":3},
193 {"label":">", "x":10.25, "y":3},
194 {"label":"?", "x":11.25, "y":3},
195 {"label":"Shift", "x":12.25, "y":3, "w":1.75},
196 {"label":"Fn", "x":14, "y":3},
197 {"label":"Ctrl", "x":0, "y":4, "w":1.5},
198 {"label":"Win", "x":1.5, "y":4},
199 {"label":"Alt", "x":2.5, "y":4, "w":1.5},
200 {"x":4, "y":4, "w":7},
201 {"label":"Alt", "x":11, "y":4, "w":1.5},
202 {"label":"Win", "x":12.5, "y":4},
203 {"label":"Ctrl", "x":13.5, "y":4, "w":1.5}
204 ]
205 }
206 }
207}
diff --git a/keyboards/studiokestra/cascade/keymaps/default/keymap.c b/keyboards/studiokestra/cascade/keymaps/default/keymap.c
new file mode 100644
index 000000000..9c9b9345b
--- /dev/null
+++ b/keyboards/studiokestra/cascade/keymaps/default/keymap.c
@@ -0,0 +1,41 @@
1/*
2Copyright 2021 Studio Kestra
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19
20enum layer_names {
21 _BASE,
22 _FN
23};
24
25const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
26 [_BASE] = LAYOUT_all( /* Base */
27 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_DEL,
28 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
29 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
30 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1),
31 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL
32 ),
33 [_FN] = LAYOUT_all( /* FN */
34 RESET, 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_DEL, KC_BSPC,
35 _______, _______, KC_PGUP, _______, _______, _______, _______, _______, KC_UP, _______, KC_MPRV, KC_MPLY, KC_MNXT, BL_STEP,
36 _______, KC_HOME, KC_PGDN, KC_END, _______, KC_VOLD, KC_VOLU, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______,
37 _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, KC_PSCR, _______,
38 _______, _______, _______, _______, _______, _______, _______, _______
39 )
40};
41
diff --git a/keyboards/studiokestra/cascade/keymaps/default/readme.md b/keyboards/studiokestra/cascade/keymaps/default/readme.md
new file mode 100644
index 000000000..4645574fe
--- /dev/null
+++ b/keyboards/studiokestra/cascade/keymaps/default/readme.md
@@ -0,0 +1,3 @@
1# The default keymap for Cascade
2
3Supporting split-backspace as the default configuration alongside split-right shift with ANSI bottom row. \ No newline at end of file
diff --git a/keyboards/studiokestra/cascade/keymaps/default_tsangan_hhkb/keymap.c b/keyboards/studiokestra/cascade/keymaps/default_tsangan_hhkb/keymap.c
new file mode 100644
index 000000000..42f300fca
--- /dev/null
+++ b/keyboards/studiokestra/cascade/keymaps/default_tsangan_hhkb/keymap.c
@@ -0,0 +1,40 @@
1/*
2Copyright 2021 Studio Kestra
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19
20enum layer_names {
21 _BASE,
22 _FN
23};
24
25const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
26 [_BASE] = LAYOUT_60_tsangan_hhkb( /* Base */
27 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_DEL,
28 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
29 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
30 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1),
31 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL
32 ),
33 [_FN] = LAYOUT_60_tsangan_hhkb( /* FN */
34 RESET, 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_DEL, KC_BSPC,
35 _______, _______, KC_PGUP, _______, _______, _______, _______, _______, KC_UP, _______, KC_MPRV, KC_MPLY, KC_MNXT, BL_STEP,
36 _______, KC_HOME, KC_PGDN, KC_END, _______, KC_VOLD, KC_VOLU, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______,
37 _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, KC_PSCR, _______,
38 _______, _______, _______, _______, _______, _______, _______
39 )
40};
diff --git a/keyboards/studiokestra/cascade/keymaps/default_tsangan_hhkb/readme.md b/keyboards/studiokestra/cascade/keymaps/default_tsangan_hhkb/readme.md
new file mode 100644
index 000000000..6a7c75a83
--- /dev/null
+++ b/keyboards/studiokestra/cascade/keymaps/default_tsangan_hhkb/readme.md
@@ -0,0 +1,3 @@
1# The default_tsangan_hhkb keymap for Cascade
2
3Supporting split-backspace as the default configuration alongside split-right shift with tsangan bottom row. \ No newline at end of file
diff --git a/keyboards/studiokestra/cascade/keymaps/via/keymap.c b/keyboards/studiokestra/cascade/keymaps/via/keymap.c
new file mode 100644
index 000000000..4a971c4de
--- /dev/null
+++ b/keyboards/studiokestra/cascade/keymaps/via/keymap.c
@@ -0,0 +1,57 @@
1/*
2Copyright 2021 Studio Kestra
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19
20enum layer_names {
21 _BASE,
22 _FN,
23 _EXTRA_ONE,
24 _EXTRA_TWO
25};
26
27const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
28 [_BASE] = LAYOUT_all(
29 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_DEL,
30 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
31 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
32 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1),
33 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL
34 ),
35 [_FN] = LAYOUT_all( /* FN */
36 RESET, 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_DEL, KC_BSPC,
37 _______, _______, KC_PGUP, _______, _______, _______, _______, _______, KC_UP, _______, KC_MPRV, KC_MPLY, KC_MNXT, BL_STEP,
38 _______, KC_HOME, KC_PGDN, KC_END, _______, KC_VOLD, KC_VOLU, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______,
39 _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, KC_PSCR, _______,
40 _______, _______, _______, _______, _______, _______, _______, _______
41 ),
42 [_EXTRA_ONE] = LAYOUT_all( /* Layer 3 */
43 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
44 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
45 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
46 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
47 _______, _______, _______, _______, _______, _______, _______, _______
48 ),
49 [_EXTRA_TWO] = LAYOUT_all( /* Layer 3 */
50 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
51 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
52 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
53 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
54 _______, _______, _______, _______, _______, _______, _______, _______
55 )
56};
57
diff --git a/keyboards/studiokestra/cascade/keymaps/via/readme.md b/keyboards/studiokestra/cascade/keymaps/via/readme.md
new file mode 100644
index 000000000..e1e766fc8
--- /dev/null
+++ b/keyboards/studiokestra/cascade/keymaps/via/readme.md
@@ -0,0 +1,3 @@
1# The via keymap for Cascade
2
3For via configurator use \ No newline at end of file
diff --git a/keyboards/studiokestra/cascade/keymaps/via/rules.mk b/keyboards/studiokestra/cascade/keymaps/via/rules.mk
new file mode 100644
index 000000000..036bd6d1c
--- /dev/null
+++ b/keyboards/studiokestra/cascade/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes \ No newline at end of file
diff --git a/keyboards/studiokestra/cascade/readme.md b/keyboards/studiokestra/cascade/readme.md
new file mode 100644
index 000000000..db55844ed
--- /dev/null
+++ b/keyboards/studiokestra/cascade/readme.md
@@ -0,0 +1,23 @@
1# Cascade
2
360% universal hotswap/solder PCB with USB-C that supports multiple commonly used layouts.
4
5* Keyboard Maintainer: [Studio Kestra](https://github.com/studiokestra/)
6* Hardware Supported: Most GH60-style keyboards, more info at [studiokestra.ca/cascade](https://studiokestra.ca/cascade/)
7* Hardware Availability: [RNDKBD.com](https://rndkbd.com/)
8
9## Bootload Sequence
10
11There are 3 ways to put the board in bootloader mode:
12
13- Hold the top-left key (typically `Esc`) while plugging in the USB cable, OR
14- While the PCB is plugged into the PC, press the physical `RESET` button on the back of the board, OR
15- With the default layout, toggle Layer 1 and press the `ESC` key.
16
17## Compiling Firmware
18
19Make example for this keyboard (after setting up your build environment):
20
21 make studiokestra/cascade:default
22
23See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
diff --git a/keyboards/studiokestra/cascade/rules.mk b/keyboards/studiokestra/cascade/rules.mk
new file mode 100644
index 000000000..76528fcf9
--- /dev/null
+++ b/keyboards/studiokestra/cascade/rules.mk
@@ -0,0 +1,22 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = atmel-dfu
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
11MOUSEKEY_ENABLE = no # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = no # Console for debug
14COMMAND_ENABLE = yes # Commands for debug and configuration
15# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
16SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
17# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
18NKRO_ENABLE = yes # USB Nkey Rollover
19BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
21BLUETOOTH_ENABLE = no # Enable Bluetooth
22AUDIO_ENABLE = no # Audio output