aboutsummaryrefslogtreecommitdiff
path: root/keyboards/7c8/framework
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/7c8/framework')
-rw-r--r--keyboards/7c8/framework/config.h40
-rw-r--r--keyboards/7c8/framework/framework.c17
-rw-r--r--keyboards/7c8/framework/framework.h98
-rw-r--r--keyboards/7c8/framework/info.json208
-rw-r--r--keyboards/7c8/framework/keymaps/default/keymap.c157
-rw-r--r--keyboards/7c8/framework/keymaps/steven/config.h23
-rw-r--r--keyboards/7c8/framework/keymaps/steven/keymap.c130
-rw-r--r--keyboards/7c8/framework/keymaps/steven/readme.md3
-rw-r--r--keyboards/7c8/framework/keymaps/steven/rules.mk1
-rw-r--r--keyboards/7c8/framework/keymaps/via/config.h23
-rw-r--r--keyboards/7c8/framework/keymaps/via/keymap.c91
-rw-r--r--keyboards/7c8/framework/keymaps/via/rules.mk2
-rw-r--r--keyboards/7c8/framework/readme.md30
-rw-r--r--keyboards/7c8/framework/rules.mk22
14 files changed, 845 insertions, 0 deletions
diff --git a/keyboards/7c8/framework/config.h b/keyboards/7c8/framework/config.h
new file mode 100644
index 000000000..44a69bf4e
--- /dev/null
+++ b/keyboards/7c8/framework/config.h
@@ -0,0 +1,40 @@
1/* Copyright 2020 Steven Nguyen
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18#include "config_common.h"
19
20#define VENDOR_ID 0x77C8
21#define PRODUCT_ID 0x0001
22#define DEVICE_VER 0x0000
23#define MANUFACTURER 7c8
24#define PRODUCT Framework
25
26#define MATRIX_ROWS 10
27#define MATRIX_COLS 6
28
29#define MATRIX_ROW_PINS { B0, B1, D7, B2, D6, B3, D5, B4, D4, B5 }
30#define MATRIX_COL_PINS { C0, C1, C2, C3, C4, C5 }
31#define ENCODERS_PAD_A { D0 }
32#define ENCODERS_PAD_B { D1 }
33
34#define ENCODER_RESOLUTION 4
35#define TAP_CODE_DELAY 16
36#define DIODE_DIRECTION COL2ROW
37#define DEBOUNCE 5
38
39#define LEADER_TIMEOUT 250
40#define LEADER_PER_KEY_TIMING 150
diff --git a/keyboards/7c8/framework/framework.c b/keyboards/7c8/framework/framework.c
new file mode 100644
index 000000000..6ce105be9
--- /dev/null
+++ b/keyboards/7c8/framework/framework.c
@@ -0,0 +1,17 @@
1/* Copyright 2020 Steven Nguyen
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include "framework.h"
diff --git a/keyboards/7c8/framework/framework.h b/keyboards/7c8/framework/framework.h
new file mode 100644
index 000000000..8de283751
--- /dev/null
+++ b/keyboards/7c8/framework/framework.h
@@ -0,0 +1,98 @@
1/* Copyright 2020 Steven Nguyen
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18#include "quantum.h"
19
20#define ___ KC_NO
21
22#define LAYOUT_ortho_5x12( \
23 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0a, K0b, \
24 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1a, K1b, \
25 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2a, K2b, \
26 K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3a, K3b, \
27 K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4a, K4b \
28 ) { \
29 { K00, K01, K02, K03, K04, K05 }, \
30 { K06, K07, K08, K09, K0a, K0b }, \
31 { K10, K11, K12, K13, K14, K15 }, \
32 { K16, K17, K18, K19, K1a, K1b }, \
33 { K20, K21, K22, K23, K24, K25 }, \
34 { K26, K27, K28, K29, K2a, K2b }, \
35 { K30, K31, K32, K33, K34, K35 }, \
36 { K36, K37, K38, K39, K3a, K3b }, \
37 { K40, K41, K42, K43, K44, K45 }, \
38 { K46, K47, K48, K49, K4a, K4b } \
39 }
40
41#define LAYOUT_ortho_5x12_1x2uC( \
42 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0a, K0b, \
43 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1a, K1b, \
44 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2a, K2b, \
45 K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3a, K3b, \
46 K40, K41, K42, K43, K44, K45, K47, K48, K49, K4a, K4b \
47 ) { \
48 { K00, K01, K02, K03, K04, K05 }, \
49 { K06, K07, K08, K09, K0a, K0b }, \
50 { K10, K11, K12, K13, K14, K15 }, \
51 { K16, K17, K18, K19, K1a, K1b }, \
52 { K20, K21, K22, K23, K24, K25 }, \
53 { K26, K27, K28, K29, K2a, K2b }, \
54 { K30, K31, K32, K33, K34, K35 }, \
55 { K36, K37, K38, K39, K3a, K3b }, \
56 { K40, K41, K42, K43, K44, K45 }, \
57 { ___, K47, K48, K49, K4a, K4b } \
58 }
59
60#define LAYOUT_preonic_2x2u( \
61 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0a, K0b, \
62 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1a, K1b, \
63 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2a, K2b, \
64 K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3a, K3b, \
65 K40, K41, K42, K43, K45, K46, K48, K49, K4a, K4b \
66 ) { \
67 { K00, K01, K02, K03, K04, K05 }, \
68 { K06, K07, K08, K09, K0a, K0b }, \
69 { K10, K11, K12, K13, K14, K15 }, \
70 { K16, K17, K18, K19, K1a, K1b }, \
71 { K20, K21, K22, K23, K24, K25 }, \
72 { K26, K27, K28, K29, K2a, K2b }, \
73 { K30, K31, K32, K33, K34, K35 }, \
74 { K36, K37, K38, K39, K3a, K3b }, \
75 { K40, K41, K42, K43, ___, K45 }, \
76 { K46, ___, K48, K49, K4a, K4b } \
77 }
78
79#define framework_via( \
80 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0a, K0b, \
81 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1a, K1b, \
82 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2a, K2b, \
83 K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3a, K3b, \
84 K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4a, K4b, \
85 K50, K51 \
86 ) { \
87 { K00, K01, K02, K03, K04, K05 }, \
88 { K06, K07, K08, K09, K0a, K0b }, \
89 { K10, K11, K12, K13, K14, K15 }, \
90 { K16, K17, K18, K19, K1a, K1b }, \
91 { K20, K21, K22, K23, K24, K25 }, \
92 { K26, K27, K28, K29, K2a, K2b }, \
93 { K30, K31, K32, K33, K34, K35 }, \
94 { K36, K37, K38, K39, K3a, K3b }, \
95 { K40, K41, K42, K43, K44, K45 }, \
96 { K46, K47, K48, K49, K4a, K4b }, \
97 { K50, K51 } \
98 }
diff --git a/keyboards/7c8/framework/info.json b/keyboards/7c8/framework/info.json
new file mode 100644
index 000000000..f78ea1eb5
--- /dev/null
+++ b/keyboards/7c8/framework/info.json
@@ -0,0 +1,208 @@
1{
2 "keyboard_name": "Framework",
3 "url": "",
4 "maintainer": "stevennguyen",
5 "layouts": {
6 "LAYOUT_ortho_5x12": {
7 "layout": [
8 {"x": 0, "y": 0},
9 {"x": 1, "y": 0},
10 {"x": 2, "y": 0},
11 {"x": 3, "y": 0},
12 {"x": 4, "y": 0},
13 {"x": 5, "y": 0},
14 {"x": 6, "y": 0},
15 {"x": 7, "y": 0},
16 {"x": 8, "y": 0},
17 {"x": 9, "y": 0},
18 {"x": 10, "y": 0},
19 {"x": 11, "y": 0},
20
21 {"x": 0, "y": 1},
22 {"x": 1, "y": 1},
23 {"x": 2, "y": 1},
24 {"x": 3, "y": 1},
25 {"x": 4, "y": 1},
26 {"x": 5, "y": 1},
27 {"x": 6, "y": 1},
28 {"x": 7, "y": 1},
29 {"x": 8, "y": 1},
30 {"x": 9, "y": 1},
31 {"x": 10, "y": 1},
32 {"x": 11, "y": 1},
33
34 {"x": 0, "y": 2},
35 {"x": 1, "y": 2},
36 {"x": 2, "y": 2},
37 {"x": 3, "y": 2},
38 {"x": 4, "y": 2},
39 {"x": 5, "y": 2},
40 {"x": 6, "y": 2},
41 {"x": 7, "y": 2},
42 {"x": 8, "y": 2},
43 {"x": 9, "y": 2},
44 {"x": 10, "y": 2},
45 {"x": 11, "y": 2},
46
47 {"x": 0, "y": 3},
48 {"x": 1, "y": 3},
49 {"x": 2, "y": 3},
50 {"x": 3, "y": 3},
51 {"x": 4, "y": 3},
52 {"x": 5, "y": 3},
53 {"x": 6, "y": 3},
54 {"x": 7, "y": 3},
55 {"x": 8, "y": 3},
56 {"x": 9, "y": 3},
57 {"x": 10, "y": 3},
58 {"x": 11, "y": 3},
59
60 {"x": 0, "y": 4},
61 {"x": 1, "y": 4},
62 {"x": 2, "y": 4},
63 {"x": 3, "y": 4},
64 {"x": 4, "y": 4},
65 {"x": 5, "y": 4},
66 {"x": 6, "y": 4},
67 {"x": 7, "y": 4},
68 {"x": 8, "y": 4},
69 {"x": 9, "y": 4},
70 {"x": 10, "y": 4},
71 {"x": 11, "y": 4}
72 ]
73 },
74 "LAYOUT_ortho_5x12_1x2uC": {
75 "layout": [
76 {"x": 0, "y": 0},
77 {"x": 1, "y": 0},
78 {"x": 2, "y": 0},
79 {"x": 3, "y": 0},
80 {"x": 4, "y": 0},
81 {"x": 5, "y": 0},
82 {"x": 6, "y": 0},
83 {"x": 7, "y": 0},
84 {"x": 8, "y": 0},
85 {"x": 9, "y": 0},
86 {"x": 10, "y": 0},
87 {"x": 11, "y": 0},
88
89 {"x": 0, "y": 1},
90 {"x": 1, "y": 1},
91 {"x": 2, "y": 1},
92 {"x": 3, "y": 1},
93 {"x": 4, "y": 1},
94 {"x": 5, "y": 1},
95 {"x": 6, "y": 1},
96 {"x": 7, "y": 1},
97 {"x": 8, "y": 1},
98 {"x": 9, "y": 1},
99 {"x": 10, "y": 1},
100 {"x": 11, "y": 1},
101
102 {"x": 0, "y": 2},
103 {"x": 1, "y": 2},
104 {"x": 2, "y": 2},
105 {"x": 3, "y": 2},
106 {"x": 4, "y": 2},
107 {"x": 5, "y": 2},
108 {"x": 6, "y": 2},
109 {"x": 7, "y": 2},
110 {"x": 8, "y": 2},
111 {"x": 9, "y": 2},
112 {"x": 10, "y": 2},
113 {"x": 11, "y": 2},
114
115 {"x": 0, "y": 3},
116 {"x": 1, "y": 3},
117 {"x": 2, "y": 3},
118 {"x": 3, "y": 3},
119 {"x": 4, "y": 3},
120 {"x": 5, "y": 3},
121 {"x": 6, "y": 3},
122 {"x": 7, "y": 3},
123 {"x": 8, "y": 3},
124 {"x": 9, "y": 3},
125 {"x": 10, "y": 3},
126 {"x": 11, "y": 3},
127
128 {"x": 0, "y": 4},
129 {"x": 1, "y": 4},
130 {"x": 2, "y": 4},
131 {"x": 3, "y": 4},
132 {"x": 4, "y": 4},
133 {"x": 5, "y": 4, "w": 2},
134 {"x": 7, "y": 4},
135 {"x": 8, "y": 4},
136 {"x": 9, "y": 4},
137 {"x": 10, "y": 4},
138 {"x": 11, "y": 4}
139 ]
140 },
141 "LAYOUT_preonic_2x2u": {
142 "layout": [
143 {"x": 0, "y": 0},
144 {"x": 1, "y": 0},
145 {"x": 2, "y": 0},
146 {"x": 3, "y": 0},
147 {"x": 4, "y": 0},
148 {"x": 5, "y": 0},
149 {"x": 6, "y": 0},
150 {"x": 7, "y": 0},
151 {"x": 8, "y": 0},
152 {"x": 9, "y": 0},
153 {"x": 10, "y": 0},
154 {"x": 11, "y": 0},
155
156 {"x": 0, "y": 1},
157 {"x": 1, "y": 1},
158 {"x": 2, "y": 1},
159 {"x": 3, "y": 1},
160 {"x": 4, "y": 1},
161 {"x": 5, "y": 1},
162 {"x": 6, "y": 1},
163 {"x": 7, "y": 1},
164 {"x": 8, "y": 1},
165 {"x": 9, "y": 1},
166 {"x": 10, "y": 1},
167 {"x": 11, "y": 1},
168
169 {"x": 0, "y": 2},
170 {"x": 1, "y": 2},
171 {"x": 2, "y": 2},
172 {"x": 3, "y": 2},
173 {"x": 4, "y": 2},
174 {"x": 5, "y": 2},
175 {"x": 6, "y": 2},
176 {"x": 7, "y": 2},
177 {"x": 8, "y": 2},
178 {"x": 9, "y": 2},
179 {"x": 10, "y": 2},
180 {"x": 11, "y": 2},
181
182 {"x": 0, "y": 3},
183 {"x": 1, "y": 3},
184 {"x": 2, "y": 3},
185 {"x": 3, "y": 3},
186 {"x": 4, "y": 3},
187 {"x": 5, "y": 3},
188 {"x": 6, "y": 3},
189 {"x": 7, "y": 3},
190 {"x": 8, "y": 3},
191 {"x": 9, "y": 3},
192 {"x": 10, "y": 3},
193 {"x": 11, "y": 3},
194
195 {"x": 0, "y": 4},
196 {"x": 1, "y": 4},
197 {"x": 2, "y": 4},
198 {"x": 3, "y": 4},
199 {"x": 4, "y": 4, "w": 2},
200 {"x": 6, "y": 4, "w": 2},
201 {"x": 8, "y": 4},
202 {"x": 9, "y": 4},
203 {"x": 10, "y": 4},
204 {"x": 11, "y": 4}
205 ]
206 }
207 }
208}
diff --git a/keyboards/7c8/framework/keymaps/default/keymap.c b/keyboards/7c8/framework/keymaps/default/keymap.c
new file mode 100644
index 000000000..592cd0219
--- /dev/null
+++ b/keyboards/7c8/framework/keymaps/default/keymap.c
@@ -0,0 +1,157 @@
1/* Copyright 2020 Steven Nguyen
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19enum framework_layers {
20 _BASE,
21 _LOWER,
22 _RAISE,
23 _BOTH,
24 _FN
25};
26
27enum framework_keycodes {
28 LOWER = SAFE_RANGE,
29 RAISE,
30 BOTH,
31 FN
32};
33
34const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
35[_BASE] = LAYOUT_ortho_5x12(
36 KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MEDIA_PLAY_PAUSE,
37 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
38 KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
39 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
40 KC_LCTL, KC_LGUI, KC_LALT, FN, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
41),
42
43[_LOWER] = LAYOUT_ortho_5x12(
44 _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_EQL, _______,
45 KC_LEAD, KC_F1, KC_F2, KC_F3, KC_F4, _______, _______, _______, _______, KC_LBRC, KC_RBRC, KC_BSLS,
46 KC_DEL, KC_F5, KC_F6, KC_F7, KC_F8, _______, _______, _______, _______, _______, _______, _______,
47 KC_TRNS, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, _______, _______, _______, _______,
48 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, _______, _______, KC_TRNS, KC_HOME, KC_PGDN, KC_PGUP, KC_END
49),
50
51[_RAISE] = LAYOUT_ortho_5x12(
52 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
53 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
54 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
55 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
56 _______, _______, _______, _______, KC_TRNS, _______, _______, KC_TRNS, _______, _______, _______, _______
57),
58
59[_BOTH] = LAYOUT_ortho_5x12(
60 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
61 _______, LALT(KC_F4), _______, KC_MYCM, LGUI(KC_R), _______, _______, _______, _______, _______, _______, _______,
62 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
63 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
64 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, DEBUG
65),
66
67[_FN] = LAYOUT_ortho_5x12(
68 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
69 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
70 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
71 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
72 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
73)
74};
75
76bool encoder_update_user(uint8_t index, bool clockwise) {
77 if (index == 0) {
78 switch (get_highest_layer(layer_state)) {
79 case _BASE:
80 if (clockwise) {
81 tap_code(KC_AUDIO_VOL_UP);
82 } else {
83 tap_code(KC_AUDIO_VOL_DOWN);
84 }
85 break;
86
87 case _LOWER:
88 if (clockwise) {
89 tap_code16(LCTL(KC_TAB));
90 } else {
91 tap_code16(LCTL(LSFT(KC_TAB)));
92 }
93 break;
94
95 case _RAISE:
96 if (clockwise) {
97 tap_code16(LCTL(KC_RGHT));
98 } else {
99 tap_code16(LCTL(KC_LEFT));
100 }
101 break;
102
103 case _BOTH:
104 if (clockwise) {
105 tap_code16(LCTL(KC_Y));
106 } else {
107 tap_code16(LCTL(KC_Z));
108 }
109 break;
110
111 case _FN:
112 if (clockwise) {
113 tap_code(_______);
114 } else {
115 tap_code(_______);
116 }
117 break;
118
119 default:
120 break;
121 }
122 }
123 return true;
124}
125
126bool process_record_user(uint16_t keycode, keyrecord_t *record) {
127 switch (keycode) {
128 case LOWER:
129 if (record->event.pressed) {
130 layer_on(_LOWER);
131 update_tri_layer(_LOWER, _RAISE, _BOTH);
132 } else {
133 layer_off(_LOWER);
134 update_tri_layer(_LOWER, _RAISE, _BOTH);
135 }
136 return false;
137
138 case RAISE:
139 if (record->event.pressed) {
140 layer_on(_RAISE);
141 update_tri_layer(_LOWER, _RAISE, _BOTH);
142 } else {
143 layer_off(_RAISE);
144 update_tri_layer(_LOWER, _RAISE, _BOTH);
145 }
146 return false;
147
148 case FN:
149 if (record->event.pressed) {
150 layer_on(_FN);
151 } else {
152 layer_off(_FN);
153 }
154 return false;
155 }
156 return true;
157}
diff --git a/keyboards/7c8/framework/keymaps/steven/config.h b/keyboards/7c8/framework/keymaps/steven/config.h
new file mode 100644
index 000000000..2dfd41f7c
--- /dev/null
+++ b/keyboards/7c8/framework/keymaps/steven/config.h
@@ -0,0 +1,23 @@
1/* Copyright 2020 Steven Nguyen
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17/* VIA specific defines to increase dynamic layer count */
18#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 3
19#define DYNAMIC_KEYMAP_LAYER_COUNT 5
20
21/* defining an extra row for encoder assignment in VIA */
22#undef MATRIX_ROWS
23#define MATRIX_ROWS 11 \ No newline at end of file
diff --git a/keyboards/7c8/framework/keymaps/steven/keymap.c b/keyboards/7c8/framework/keymaps/steven/keymap.c
new file mode 100644
index 000000000..77134db5b
--- /dev/null
+++ b/keyboards/7c8/framework/keymaps/steven/keymap.c
@@ -0,0 +1,130 @@
1/* Copyright 2020 Steven Nguyen
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19enum framework_layers {
20 _BASE,
21 _LOWER,
22 _RAISE,
23 _BOTH,
24 _FN
25};
26
27enum framework_keycodes {
28 LOWER = SAFE_RANGE,
29 RAISE,
30 BOTH,
31 FN
32};
33
34const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
35[_BASE] = framework_via(
36 KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MEDIA_PLAY_PAUSE,
37 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
38 KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
39 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
40 KC_LCTL, KC_LGUI, KC_LALT, MO(_FN), MO(_LOWER), KC_SPC, KC_SPC, MO(_RAISE), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,
41 KC_AUDIO_VOL_DOWN, KC_AUDIO_VOL_UP
42),
43
44[_LOWER] = framework_via(
45 _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_EQL, _______,
46 KC_LEAD, KC_F1, KC_F2, KC_F3, KC_F4, _______, _______, _______, _______, KC_LBRC, KC_RBRC, KC_BSLS,
47 KC_DEL, KC_F5, KC_F6, KC_F7, KC_F8, _______, _______, _______, _______, _______, _______, _______,
48 _______, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, _______, _______, _______, _______,
49 _______, _______, _______, _______, _______, _______, _______, MO(_BOTH), KC_HOME, KC_PGDN, KC_PGUP, KC_END,
50 C(S(KC_TAB)), C(KC_TAB)
51),
52
53[_RAISE] = framework_via(
54 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
55 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
56 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
57 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
58 _______, _______, _______, _______, MO(_BOTH), _______, _______, _______, _______, _______, _______, _______,
59 C(KC_LEFT), C(KC_RIGHT)
60),
61
62[_BOTH] = framework_via(
63 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
64 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
65 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
66 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
67 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, EEP_RST, DEBUG,
68 C(KC_Z), C(KC_Y)
69),
70
71[_FN] = framework_via(
72 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
73 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
74 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
75 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
76 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
77 KC_MS_WH_LEFT, KC_MS_WH_RIGHT
78)
79};
80
81LEADER_EXTERNS();
82
83void matrix_scan_user(void) {
84 LEADER_DICTIONARY() {
85 leading = false;
86 leader_end();
87
88 // qq, alt+f4 close window
89 SEQ_TWO_KEYS(KC_Q, KC_Q) {
90 tap_code16(A(KC_F4));
91 }
92
93 // ee, open explorer
94 SEQ_TWO_KEYS(KC_E, KC_E) {
95 tap_code16(G(KC_E));
96 }
97
98 // rr, windows run prompt
99 SEQ_TWO_KEYS(KC_R, KC_R) {
100 tap_code16(G(KC_R));
101 }
102
103 // ww, maximize window
104 SEQ_TWO_KEYS(KC_W, KC_W) {
105 tap_code16(G(KC_UP));
106 }
107
108 // ss, minimize window
109 SEQ_TWO_KEYS(KC_S, KC_S) {
110 tap_code16(G(KC_DOWN));
111 }
112
113 // <space><space>, toggle desktop
114 SEQ_TWO_KEYS(KC_SPC, KC_SPC) {
115 tap_code16(G(KC_D));
116 }
117 }
118}
119
120bool encoder_update_user(uint8_t index, bool clockwise) {
121 uint8_t layer = get_highest_layer(layer_state);
122 if (index == 0) {
123 if (clockwise) {
124 tap_code16(dynamic_keymap_get_keycode(layer, 10, 1));
125 } else {
126 tap_code16(dynamic_keymap_get_keycode(layer, 10, 0));
127 }
128 }
129 return true;
130}
diff --git a/keyboards/7c8/framework/keymaps/steven/readme.md b/keyboards/7c8/framework/keymaps/steven/readme.md
new file mode 100644
index 000000000..c300961c7
--- /dev/null
+++ b/keyboards/7c8/framework/keymaps/steven/readme.md
@@ -0,0 +1,3 @@
1# Steven's Framework layout
2
3This is a VIA compatible layout, exactly like the default VIA keymap, but with some leader key sequences that I find convenient. \ No newline at end of file
diff --git a/keyboards/7c8/framework/keymaps/steven/rules.mk b/keyboards/7c8/framework/keymaps/steven/rules.mk
new file mode 100644
index 000000000..036bd6d1c
--- /dev/null
+++ b/keyboards/7c8/framework/keymaps/steven/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes \ No newline at end of file
diff --git a/keyboards/7c8/framework/keymaps/via/config.h b/keyboards/7c8/framework/keymaps/via/config.h
new file mode 100644
index 000000000..2dfd41f7c
--- /dev/null
+++ b/keyboards/7c8/framework/keymaps/via/config.h
@@ -0,0 +1,23 @@
1/* Copyright 2020 Steven Nguyen
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17/* VIA specific defines to increase dynamic layer count */
18#define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 3
19#define DYNAMIC_KEYMAP_LAYER_COUNT 5
20
21/* defining an extra row for encoder assignment in VIA */
22#undef MATRIX_ROWS
23#define MATRIX_ROWS 11 \ No newline at end of file
diff --git a/keyboards/7c8/framework/keymaps/via/keymap.c b/keyboards/7c8/framework/keymaps/via/keymap.c
new file mode 100644
index 000000000..2fc572b4d
--- /dev/null
+++ b/keyboards/7c8/framework/keymaps/via/keymap.c
@@ -0,0 +1,91 @@
1/* Copyright 2020 Steven Nguyen
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include QMK_KEYBOARD_H
18
19enum framework_layers {
20 _BASE,
21 _LOWER,
22 _RAISE,
23 _BOTH,
24 _FN
25};
26
27enum framework_keycodes {
28 LOWER = SAFE_RANGE,
29 RAISE,
30 BOTH,
31 FN
32};
33
34const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
35[_BASE] = framework_via(
36 KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MEDIA_PLAY_PAUSE,
37 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
38 KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
39 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
40 KC_LCTL, KC_LGUI, KC_LALT, MO(_FN), MO(_LOWER), KC_SPC, KC_SPC, MO(_RAISE), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,
41 KC_AUDIO_VOL_DOWN, KC_AUDIO_VOL_UP
42),
43
44[_LOWER] = framework_via(
45 _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_EQL, _______,
46 _______, KC_F1, KC_F2, KC_F3, KC_F4, _______, _______, _______, _______, KC_LBRC, KC_RBRC, KC_BSLS,
47 KC_DEL, KC_F5, KC_F6, KC_F7, KC_F8, _______, _______, _______, _______, _______, _______, _______,
48 _______, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, _______, _______, _______, _______,
49 _______, _______, _______, _______, _______, _______, _______, MO(_BOTH), KC_HOME, KC_PGDN, KC_PGUP, KC_END,
50 C(S(KC_TAB)), C(KC_TAB)
51),
52
53[_RAISE] = framework_via(
54 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
55 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
56 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
57 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
58 _______, _______, _______, _______, MO(_BOTH), _______, _______, _______, _______, _______, _______, _______,
59 C(KC_LEFT), C(KC_RIGHT)
60),
61
62[_BOTH] = framework_via(
63 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
64 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
65 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
66 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
67 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, EEP_RST, DEBUG,
68 C(KC_Z), C(KC_Y)
69),
70
71[_FN] = framework_via(
72 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
73 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
74 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
75 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
76 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
77 KC_MS_WH_LEFT, KC_MS_WH_RIGHT
78)
79};
80
81bool encoder_update_user(uint8_t index, bool clockwise) {
82 uint8_t layer = get_highest_layer(layer_state);
83 if (index == 0) {
84 if (clockwise) {
85 tap_code16(dynamic_keymap_get_keycode(layer, 10, 1));
86 } else {
87 tap_code16(dynamic_keymap_get_keycode(layer, 10, 0));
88 }
89 }
90 return true;
91}
diff --git a/keyboards/7c8/framework/keymaps/via/rules.mk b/keyboards/7c8/framework/keymaps/via/rules.mk
new file mode 100644
index 000000000..990528315
--- /dev/null
+++ b/keyboards/7c8/framework/keymaps/via/rules.mk
@@ -0,0 +1,2 @@
1VIA_ENABLE = yes
2LEADER_ENABLE = no
diff --git a/keyboards/7c8/framework/readme.md b/keyboards/7c8/framework/readme.md
new file mode 100644
index 000000000..5f29743aa
--- /dev/null
+++ b/keyboards/7c8/framework/readme.md
@@ -0,0 +1,30 @@
1# Framework
2
3![Framework](https://i.imgur.com/njrHoH1.jpeg)
4
5## Features
6
7* All through-hole components (except Kailh hotswap sockets)
8* QMK firmware with VIA support
9* Rotary encoder
10* Hotswappable switches
11* FR-4 and acrylic sandwich construction
12* USB Type-C
13* Supports MIT (one 2u), grid (two 1u), and two 2u space keys
14
15## Info
16
17* Keyboard maintainer: [Steven Nguyen](https://github.com/stevennguyen)
18* Hardware supported: Framework
19* Hardware availability: [Steven Nguyen](https://github.com/stevennguyen)
20
21Make example for this keyboard (after setting up your build environment):
22
23 make 7c8/framework:default # default keymap
24 make 7c8/framework:via # via-compatible keymap
25
26Flashing example for this keyboard:
27
28 make 7c8/framework:default:flash
29
30See 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). \ No newline at end of file
diff --git a/keyboards/7c8/framework/rules.mk b/keyboards/7c8/framework/rules.mk
new file mode 100644
index 000000000..797b8072c
--- /dev/null
+++ b/keyboards/7c8/framework/rules.mk
@@ -0,0 +1,22 @@
1# MCU name
2MCU = atmega328p
3
4# Bootloader selection
5BOOTLOADER = usbasploader
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
11MOUSEKEY_ENABLE = yes
12EXTRAKEY_ENABLE = yes
13CONSOLE_ENABLE = no
14COMMAND_ENABLE = no
15NKRO_ENABLE = no # Enable N-Key Rollover
16BACKLIGHT_ENABLE = no
17RGBLIGHT_ENABLE = no
18AUDIO_ENABLE = no
19FAUXCLICKY_ENABLE = no
20LAYOUTS_HAS_RGB = no
21ENCODER_ENABLE = yes
22LEADER_ENABLE = yes