aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/evyd13/nt750/config.h149
-rw-r--r--keyboards/evyd13/nt750/info.json300
-rw-r--r--keyboards/evyd13/nt750/keymaps/default/keymap.c38
-rw-r--r--keyboards/evyd13/nt750/keymaps/via/keymap.c56
-rw-r--r--keyboards/evyd13/nt750/keymaps/via/rules.mk2
-rw-r--r--keyboards/evyd13/nt750/nt750.c16
-rw-r--r--keyboards/evyd13/nt750/nt750.h80
-rw-r--r--keyboards/evyd13/nt750/readme.md22
-rw-r--r--keyboards/evyd13/nt750/rules.mk22
9 files changed, 685 insertions, 0 deletions
diff --git a/keyboards/evyd13/nt750/config.h b/keyboards/evyd13/nt750/config.h
new file mode 100644
index 000000000..35fc00067
--- /dev/null
+++ b/keyboards/evyd13/nt750/config.h
@@ -0,0 +1,149 @@
1/*
2Copyright 2020 Evy Dekkers
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 0x4705
24#define PRODUCT_ID 0x3320
25#define DEVICE_VER 0x0001
26#define MANUFACTURER Evyd13
27#define PRODUCT nt750
28
29/* key matrix size */
30#define MATRIX_ROWS 6
31#define MATRIX_COLS 17
32
33/*
34 * Keyboard Matrix Assignments
35 *
36 * Change this to how you wired your keyboard
37 * COLS: AVR pins used for columns, left to right
38 * ROWS: AVR pins used for rows, top to bottom
39 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
40 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
41 *
42 */
43#define MATRIX_ROW_PINS {B2,B3,B7,D0,D1,D2}
44#define MATRIX_COL_PINS {F0,F1,F4,F5,F6,F7,C7,C6,B6,B5,B4,D7,D6,D4,E6,B1,B0}
45#define UNUSED_PINS
46
47/* COL2ROW or ROW2COL */
48#define DIODE_DIRECTION COL2ROW
49
50#define LED_CAPS_LOCK_PIN D5
51#define LED_PIN_ON_STATE 0
52
53/*
54 * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN.
55 */
56// #define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6
57
58// #define BACKLIGHT_PIN B7
59// #define BACKLIGHT_BREATHING
60// #define BACKLIGHT_LEVELS 3
61
62// #define RGB_DI_PIN E2
63// #ifdef RGB_DI_PIN
64// #define RGBLED_NUM 16
65// #define RGBLIGHT_HUE_STEP 8
66// #define RGBLIGHT_SAT_STEP 8
67// #define RGBLIGHT_VAL_STEP 8
68// #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
69// #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
70// /*== all animations enable ==*/
71// #define RGBLIGHT_ANIMATIONS
72// /*== or choose animations ==*/
73// #define RGBLIGHT_EFFECT_BREATHING
74// #define RGBLIGHT_EFFECT_RAINBOW_MOOD
75// #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
76// #define RGBLIGHT_EFFECT_SNAKE
77// #define RGBLIGHT_EFFECT_KNIGHT
78// #define RGBLIGHT_EFFECT_CHRISTMAS
79// #define RGBLIGHT_EFFECT_STATIC_GRADIENT
80// #define RGBLIGHT_EFFECT_RGB_TEST
81// #define RGBLIGHT_EFFECT_ALTERNATING
82// /*== customize breathing effect ==*/
83// /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/
84// #define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
85// /*==== use exp() and sin() ====*/
86// #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
87// #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
88// #endif
89
90/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
91#define DEBOUNCE 5
92
93/* define if matrix has ghost (lacks anti-ghosting diodes) */
94//#define MATRIX_HAS_GHOST
95
96/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
97#define LOCKING_SUPPORT_ENABLE
98/* Locking resynchronize hack */
99#define LOCKING_RESYNC_ENABLE
100
101/* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
102 * This is userful for the Windows task manager shortcut (ctrl+shift+esc).
103 */
104// #define GRAVE_ESC_CTRL_OVERRIDE
105
106/*
107 * Force NKRO
108 *
109 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
110 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
111 * makefile for this to work.)
112 *
113 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
114 * until the next keyboard reset.
115 *
116 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
117 * fully operational during normal computer usage.
118 *
119 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
120 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
121 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
122 * power-up.
123 *
124 */
125//#define FORCE_NKRO
126
127/*
128 * Feature disable options
129 * These options are also useful to firmware size reduction.
130 */
131
132/* disable debug print */
133//#define NO_DEBUG
134
135/* disable print */
136//#define NO_PRINT
137
138/* disable action features */
139//#define NO_ACTION_LAYER
140//#define NO_ACTION_TAPPING
141//#define NO_ACTION_ONESHOT
142
143/* disable these deprecated features by default */
144#define NO_ACTION_MACRO
145#define NO_ACTION_FUNCTION
146
147/* Bootmagic Lite key configuration */
148// #define BOOTMAGIC_LITE_ROW 0
149// #define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/evyd13/nt750/info.json b/keyboards/evyd13/nt750/info.json
new file mode 100644
index 000000000..9ac63a9b4
--- /dev/null
+++ b/keyboards/evyd13/nt750/info.json
@@ -0,0 +1,300 @@
1{
2 "keyboard_name": "nt750",
3 "url": "https://github.com/evyd13/nt-series/tree/main/nt-750",
4 "maintainer": "evyd13",
5 "width": 18.25,
6 "height": 6.5,
7 "layouts": {
8 "LAYOUT_all": {
9 "layout": [
10 {"label":"k00", "x":0, "y":0},
11 {"label":"k02", "x":2, "y":0},
12 {"label":"k03", "x":3, "y":0},
13 {"label":"k04", "x":4, "y":0},
14 {"label":"k05", "x":5, "y":0},
15 {"label":"k06", "x":6.5, "y":0},
16 {"label":"k07", "x":7.5, "y":0},
17 {"label":"k08", "x":8.5, "y":0},
18 {"label":"k09", "x":9.5, "y":0},
19 {"label":"k0a", "x":11, "y":0},
20 {"label":"k0b", "x":12, "y":0},
21 {"label":"k0c", "x":13, "y":0},
22 {"label":"k0d", "x":14, "y":0},
23 {"label":"k0e", "x":15.25, "y":0},
24 {"label":"k0f", "x":16.25, "y":0},
25 {"label":"k0g", "x":17.25, "y":0},
26
27 {"label":"k10", "x":0, "y":1.5},
28 {"label":"k11", "x":1, "y":1.5},
29 {"label":"k12", "x":2, "y":1.5},
30 {"label":"k13", "x":3, "y":1.5},
31 {"label":"k14", "x":4, "y":1.5},
32 {"label":"k15", "x":5, "y":1.5},
33 {"label":"k16", "x":6, "y":1.5},
34 {"label":"k17", "x":7, "y":1.5},
35 {"label":"k18", "x":8, "y":1.5},
36 {"label":"k19", "x":9, "y":1.5},
37 {"label":"k1a", "x":10, "y":1.5},
38 {"label":"k1b", "x":11, "y":1.5},
39 {"label":"k1c", "x":12, "y":1.5},
40 {"label":"k1d", "x":13, "y":1.5, "w":2},
41 {"label":"k1e", "x":15.25, "y":1.5},
42 {"label":"k1f", "x":16.25, "y":1.5},
43 {"label":"k1g", "x":17.25, "y":1.5},
44
45 {"label":"k20", "x":0, "y":2.5, "w":1.5},
46 {"label":"k21", "x":1.5, "y":2.5},
47 {"label":"k22", "x":2.5, "y":2.5},
48 {"label":"k23", "x":3.5, "y":2.5},
49 {"label":"k24", "x":4.5, "y":2.5},
50 {"label":"k25", "x":5.5, "y":2.5},
51 {"label":"k26", "x":6.5, "y":2.5},
52 {"label":"k27", "x":7.5, "y":2.5},
53 {"label":"k28", "x":8.5, "y":2.5},
54 {"label":"k29", "x":9.5, "y":2.5},
55 {"label":"k2a", "x":10.5, "y":2.5},
56 {"label":"k2b", "x":11.5, "y":2.5},
57 {"label":"k2c", "x":12.5, "y":2.5},
58 {"label":"k2d", "x":13.5, "y":2.5, "w":1.5},
59 {"label":"k2e", "x":15.25, "y":2.5},
60 {"label":"k2f", "x":16.25, "y":2.5},
61 {"label":"k2g", "x":17.25, "y":2.5},
62
63 {"label":"k30", "x":0, "y":3.5, "w":1.75},
64 {"label":"k31", "x":1.75, "y":3.5},
65 {"label":"k32", "x":2.75, "y":3.5},
66 {"label":"k33", "x":3.75, "y":3.5},
67 {"label":"k34", "x":4.75, "y":3.5},
68 {"label":"k35", "x":5.75, "y":3.5},
69 {"label":"k36", "x":6.75, "y":3.5},
70 {"label":"k37", "x":7.75, "y":3.5},
71 {"label":"k38", "x":8.75, "y":3.5},
72 {"label":"k39", "x":9.75, "y":3.5},
73 {"label":"k3a", "x":10.75, "y":3.5},
74 {"label":"k3b", "x":11.75, "y":3.5},
75 {"label":"k3c", "x":12.75, "y":3.5},
76 {"label":"k3d", "x":13.75, "y":3.5, "w":1.25},
77
78 {"label":"k40", "x":0, "y":4.5, "w":1.25},
79 {"label":"k41", "x":1.25, "y":4.5},
80 {"label":"k42", "x":2.25, "y":4.5},
81 {"label":"k43", "x":3.25, "y":4.5},
82 {"label":"k44", "x":4.25, "y":4.5},
83 {"label":"k45", "x":5.25, "y":4.5},
84 {"label":"k46", "x":6.25, "y":4.5},
85 {"label":"k47", "x":7.25, "y":4.5},
86 {"label":"k48", "x":8.25, "y":4.5},
87 {"label":"k49", "x":9.25, "y":4.5},
88 {"label":"k4a", "x":10.25, "y":4.5},
89 {"label":"k4b", "x":11.25, "y":4.5},
90 {"label":"k4d", "x":12.25, "y":4.5, "w":2.75},
91 {"label":"k4f", "x":16.25, "y":4.5},
92
93 {"label":"k50", "x":0, "y":5.5, "w":1.25},
94 {"label":"k51", "x":1.25, "y":5.5, "w":1.25},
95 {"label":"k52", "x":2.5, "y":5.5, "w":1.25},
96 {"label":"k56", "x":3.75, "y":5.5, "w":6.25},
97 {"label":"k5a", "x":10, "y":5.5, "w":1.25},
98 {"label":"k5b", "x":11.25, "y":5.5, "w":1.25},
99 {"label":"k5c", "x":12.5, "y":5.5, "w":1.25},
100 {"label":"k5d", "x":13.75, "y":5.5, "w":1.25},
101 {"label":"k5e", "x":15.25, "y":5.5},
102 {"label":"k5f", "x":16.25, "y":5.5},
103 {"label":"k5g", "x":17.25, "y":5.5}
104 ]
105 },
106 "LAYOUT_tkl_iso": {
107 "layout": [
108 {"label":"k00", "x":0, "y":0},
109 {"label":"k02", "x":2, "y":0},
110 {"label":"k03", "x":3, "y":0},
111 {"label":"k04", "x":4, "y":0},
112 {"label":"k05", "x":5, "y":0},
113 {"label":"k06", "x":6.5, "y":0},
114 {"label":"k07", "x":7.5, "y":0},
115 {"label":"k08", "x":8.5, "y":0},
116 {"label":"k09", "x":9.5, "y":0},
117 {"label":"k0a", "x":11, "y":0},
118 {"label":"k0b", "x":12, "y":0},
119 {"label":"k0c", "x":13, "y":0},
120 {"label":"k0d", "x":14, "y":0},
121 {"label":"k0e", "x":15.25, "y":0},
122 {"label":"k0f", "x":16.25, "y":0},
123 {"label":"k0g", "x":17.25, "y":0},
124
125 {"label":"k10", "x":0, "y":1.5},
126 {"label":"k11", "x":1, "y":1.5},
127 {"label":"k12", "x":2, "y":1.5},
128 {"label":"k13", "x":3, "y":1.5},
129 {"label":"k14", "x":4, "y":1.5},
130 {"label":"k15", "x":5, "y":1.5},
131 {"label":"k16", "x":6, "y":1.5},
132 {"label":"k17", "x":7, "y":1.5},
133 {"label":"k18", "x":8, "y":1.5},
134 {"label":"k19", "x":9, "y":1.5},
135 {"label":"k1a", "x":10, "y":1.5},
136 {"label":"k1b", "x":11, "y":1.5},
137 {"label":"k1c", "x":12, "y":1.5},
138 {"label":"k1d", "x":13, "y":1.5, "w":2},
139 {"label":"k1e", "x":15.25, "y":1.5},
140 {"label":"k1f", "x":16.25, "y":1.5},
141 {"label":"k1g", "x":17.25, "y":1.5},
142
143 {"label":"k20", "x":0, "y":2.5, "w":1.5},
144 {"label":"k21", "x":1.5, "y":2.5},
145 {"label":"k22", "x":2.5, "y":2.5},
146 {"label":"k23", "x":3.5, "y":2.5},
147 {"label":"k24", "x":4.5, "y":2.5},
148 {"label":"k25", "x":5.5, "y":2.5},
149 {"label":"k26", "x":6.5, "y":2.5},
150 {"label":"k27", "x":7.5, "y":2.5},
151 {"label":"k28", "x":8.5, "y":2.5},
152 {"label":"k29", "x":9.5, "y":2.5},
153 {"label":"k2a", "x":10.5, "y":2.5},
154 {"label":"k2b", "x":11.5, "y":2.5},
155 {"label":"k2c", "x":12.5, "y":2.5},
156 {"label":"k2e", "x":15.25, "y":2.5},
157 {"label":"k2f", "x":16.25, "y":2.5},
158 {"label":"k2g", "x":17.25, "y":2.5},
159
160 {"label":"k30", "x":0, "y":3.5, "w":1.75},
161 {"label":"k31", "x":1.75, "y":3.5},
162 {"label":"k32", "x":2.75, "y":3.5},
163 {"label":"k33", "x":3.75, "y":3.5},
164 {"label":"k34", "x":4.75, "y":3.5},
165 {"label":"k35", "x":5.75, "y":3.5},
166 {"label":"k36", "x":6.75, "y":3.5},
167 {"label":"k37", "x":7.75, "y":3.5},
168 {"label":"k38", "x":8.75, "y":3.5},
169 {"label":"k39", "x":9.75, "y":3.5},
170 {"label":"k3a", "x":10.75, "y":3.5},
171 {"label":"k3b", "x":11.75, "y":3.5},
172 {"label":"k3c", "x":12.75, "y":3.5},
173 {"label":"k3d", "x":13.75, "y":2.5, "w":1.25, "h":2},
174
175 {"label":"k40", "x":0, "y":4.5, "w":1.25},
176 {"label":"k41", "x":1.25, "y":4.5},
177 {"label":"k42", "x":2.25, "y":4.5},
178 {"label":"k43", "x":3.25, "y":4.5},
179 {"label":"k44", "x":4.25, "y":4.5},
180 {"label":"k45", "x":5.25, "y":4.5},
181 {"label":"k46", "x":6.25, "y":4.5},
182 {"label":"k47", "x":7.25, "y":4.5},
183 {"label":"k48", "x":8.25, "y":4.5},
184 {"label":"k49", "x":9.25, "y":4.5},
185 {"label":"k4a", "x":10.25, "y":4.5},
186 {"label":"k4b", "x":11.25, "y":4.5},
187 {"label":"k4d", "x":12.25, "y":4.5, "w":2.75},
188 {"label":"k4f", "x":16.25, "y":4.5},
189
190 {"label":"k50", "x":0, "y":5.5, "w":1.25},
191 {"label":"k51", "x":1.25, "y":5.5, "w":1.25},
192 {"label":"k52", "x":2.5, "y":5.5, "w":1.25},
193 {"label":"k56", "x":3.75, "y":5.5, "w":6.25},
194 {"label":"k5a", "x":10, "y":5.5, "w":1.25},
195 {"label":"k5b", "x":11.25, "y":5.5, "w":1.25},
196 {"label":"k5c", "x":12.5, "y":5.5, "w":1.25},
197 {"label":"k5d", "x":13.75, "y":5.5, "w":1.25},
198 {"label":"k5e", "x":15.25, "y":5.5},
199 {"label":"k5f", "x":16.25, "y":5.5},
200 {"label":"k5g", "x":17.25, "y":5.5}
201 ]
202 },
203 "LAYOUT_tkl_ansi": {
204 "layout": [
205 {"label":"k00", "x":0, "y":0},
206 {"label":"k02", "x":2, "y":0},
207 {"label":"k03", "x":3, "y":0},
208 {"label":"k04", "x":4, "y":0},
209 {"label":"k05", "x":5, "y":0},
210 {"label":"k06", "x":6.5, "y":0},
211 {"label":"k07", "x":7.5, "y":0},
212 {"label":"k08", "x":8.5, "y":0},
213 {"label":"k09", "x":9.5, "y":0},
214 {"label":"k0a", "x":11, "y":0},
215 {"label":"k0b", "x":12, "y":0},
216 {"label":"k0c", "x":13, "y":0},
217 {"label":"k0d", "x":14, "y":0},
218 {"label":"k0e", "x":15.25, "y":0},
219 {"label":"k0f", "x":16.25, "y":0},
220 {"label":"k0g", "x":17.25, "y":0},
221
222 {"label":"k10", "x":0, "y":1.5},
223 {"label":"k11", "x":1, "y":1.5},
224 {"label":"k12", "x":2, "y":1.5},
225 {"label":"k13", "x":3, "y":1.5},
226 {"label":"k14", "x":4, "y":1.5},
227 {"label":"k15", "x":5, "y":1.5},
228 {"label":"k16", "x":6, "y":1.5},
229 {"label":"k17", "x":7, "y":1.5},
230 {"label":"k18", "x":8, "y":1.5},
231 {"label":"k19", "x":9, "y":1.5},
232 {"label":"k1a", "x":10, "y":1.5},
233 {"label":"k1b", "x":11, "y":1.5},
234 {"label":"k1c", "x":12, "y":1.5},
235 {"label":"k1d", "x":13, "y":1.5, "w":2},
236 {"label":"k1e", "x":15.25, "y":1.5},
237 {"label":"k1f", "x":16.25, "y":1.5},
238 {"label":"k1g", "x":17.25, "y":1.5},
239
240 {"label":"k20", "x":0, "y":2.5, "w":1.5},
241 {"label":"k21", "x":1.5, "y":2.5},
242 {"label":"k22", "x":2.5, "y":2.5},
243 {"label":"k23", "x":3.5, "y":2.5},
244 {"label":"k24", "x":4.5, "y":2.5},
245 {"label":"k25", "x":5.5, "y":2.5},
246 {"label":"k26", "x":6.5, "y":2.5},
247 {"label":"k27", "x":7.5, "y":2.5},
248 {"label":"k28", "x":8.5, "y":2.5},
249 {"label":"k29", "x":9.5, "y":2.5},
250 {"label":"k2a", "x":10.5, "y":2.5},
251 {"label":"k2b", "x":11.5, "y":2.5},
252 {"label":"k2c", "x":12.5, "y":2.5},
253 {"label":"k2d", "x":13.5, "y":2.5, "w":1.5},
254 {"label":"k2e", "x":15.25, "y":2.5},
255 {"label":"k2f", "x":16.25, "y":2.5},
256 {"label":"k2g", "x":17.25, "y":2.5},
257
258 {"label":"k30", "x":0, "y":3.5, "w":1.75},
259 {"label":"k31", "x":1.75, "y":3.5},
260 {"label":"k32", "x":2.75, "y":3.5},
261 {"label":"k33", "x":3.75, "y":3.5},
262 {"label":"k34", "x":4.75, "y":3.5},
263 {"label":"k35", "x":5.75, "y":3.5},
264 {"label":"k36", "x":6.75, "y":3.5},
265 {"label":"k37", "x":7.75, "y":3.5},
266 {"label":"k38", "x":8.75, "y":3.5},
267 {"label":"k39", "x":9.75, "y":3.5},
268 {"label":"k3a", "x":10.75, "y":3.5},
269 {"label":"k3b", "x":11.75, "y":3.5},
270 {"label":"k3d", "x":12.75, "y":3.5, "w":2.25},
271
272 {"label":"k40", "x":0, "y":4.5, "w":2.25},
273 {"label":"k42", "x":2.25, "y":4.5},
274 {"label":"k43", "x":3.25, "y":4.5},
275 {"label":"k44", "x":4.25, "y":4.5},
276 {"label":"k45", "x":5.25, "y":4.5},
277 {"label":"k46", "x":6.25, "y":4.5},
278 {"label":"k47", "x":7.25, "y":4.5},
279 {"label":"k48", "x":8.25, "y":4.5},
280 {"label":"k49", "x":9.25, "y":4.5},
281 {"label":"k4a", "x":10.25, "y":4.5},
282 {"label":"k4b", "x":11.25, "y":4.5},
283 {"label":"k4d", "x":12.25, "y":4.5, "w":2.75},
284 {"label":"k4f", "x":16.25, "y":4.5},
285
286 {"label":"k50", "x":0, "y":5.5, "w":1.25},
287 {"label":"k51", "x":1.25, "y":5.5, "w":1.25},
288 {"label":"k52", "x":2.5, "y":5.5, "w":1.25},
289 {"label":"k56", "x":3.75, "y":5.5, "w":6.25},
290 {"label":"k5a", "x":10, "y":5.5, "w":1.25},
291 {"label":"k5b", "x":11.25, "y":5.5, "w":1.25},
292 {"label":"k5c", "x":12.5, "y":5.5, "w":1.25},
293 {"label":"k5d", "x":13.75, "y":5.5, "w":1.25},
294 {"label":"k5e", "x":15.25, "y":5.5},
295 {"label":"k5f", "x":16.25, "y":5.5},
296 {"label":"k5g", "x":17.25, "y":5.5}
297 ]
298 }
299 }
300} \ No newline at end of file
diff --git a/keyboards/evyd13/nt750/keymaps/default/keymap.c b/keyboards/evyd13/nt750/keymaps/default/keymap.c
new file mode 100644
index 000000000..160b26965
--- /dev/null
+++ b/keyboards/evyd13/nt750/keymaps/default/keymap.c
@@ -0,0 +1,38 @@
1/* Copyright 2020 Evy Dekkers
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#include QMK_KEYBOARD_H
17
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19
20[0] = LAYOUT_tkl_ansi(
21 KC_ESC, 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_PSCR, KC_SLCK, KC_PAUS,
22
23 KC_GRV, 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_INS, KC_HOME, KC_PGUP,
24 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, KC_DEL, KC_END, KC_PGDN,
25 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,
26 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
27 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT),
28
29[1] = LAYOUT_tkl_ansi(
30 _______, _______, _______, _______, _______, _______, KC_MPRV, KC_MPLY, KC_MNXT, KC_MSTP, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______,
31
32 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
33 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
34 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
35 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
36 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______),
37
38};
diff --git a/keyboards/evyd13/nt750/keymaps/via/keymap.c b/keyboards/evyd13/nt750/keymaps/via/keymap.c
new file mode 100644
index 000000000..c42cc1e3f
--- /dev/null
+++ b/keyboards/evyd13/nt750/keymaps/via/keymap.c
@@ -0,0 +1,56 @@
1/* Copyright 2020 Evy Dekkers
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#include QMK_KEYBOARD_H
17
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19
20[0] = LAYOUT_all(
21 KC_ESC, 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_PSCR, KC_SLCK, KC_PAUS,
22
23 KC_GRV, 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_INS, KC_HOME, KC_PGUP,
24 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, KC_DEL, KC_END, KC_PGDN,
25 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_BSLS, KC_ENT,
26 KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
27 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT),
28
29[1] = LAYOUT_all(
30 _______, _______, _______, _______, _______, _______, KC_MPRV, KC_MPLY, KC_MNXT, KC_MSTP, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______,
31
32 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
33 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
34 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
35 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
36 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______),
37
38[2] = LAYOUT_all(
39 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
40
41 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
42 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
43 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
44 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
45 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______),
46
47[3] = LAYOUT_all(
48 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
49
50 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
51 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
52 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
53 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
54 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______)
55
56}; \ No newline at end of file
diff --git a/keyboards/evyd13/nt750/keymaps/via/rules.mk b/keyboards/evyd13/nt750/keymaps/via/rules.mk
new file mode 100644
index 000000000..36b7ba9cb
--- /dev/null
+++ b/keyboards/evyd13/nt750/keymaps/via/rules.mk
@@ -0,0 +1,2 @@
1VIA_ENABLE = yes
2LTO_ENABLE = yes
diff --git a/keyboards/evyd13/nt750/nt750.c b/keyboards/evyd13/nt750/nt750.c
new file mode 100644
index 000000000..6ae67cc36
--- /dev/null
+++ b/keyboards/evyd13/nt750/nt750.c
@@ -0,0 +1,16 @@
1/* Copyright 2020 Evy Dekkers
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#include "nt750.h"
diff --git a/keyboards/evyd13/nt750/nt750.h b/keyboards/evyd13/nt750/nt750.h
new file mode 100644
index 000000000..15b6e459b
--- /dev/null
+++ b/keyboards/evyd13/nt750/nt750.h
@@ -0,0 +1,80 @@
1/* Copyright 2020 Evy Dekkers
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#pragma once
17
18#include "quantum.h"
19
20#define XXX KC_NO
21
22/* This is 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
31#define LAYOUT_all( \
32 k00, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, k0g, \
33 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, k1g, \
34 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f, k2g, \
35 k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, \
36 k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4d, k4f, \
37 k50, k51, k52, k56, k5a, k5b, k5c, k5d, k5e, k5f, k5g \
38) \
39{ \
40 { k00, XXX, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, k0g }, \
41 { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, k1g }, \
42 { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f, k2g }, \
43 { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, XXX, XXX, XXX }, \
44 { k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, XXX, k4d, XXX, k4f, XXX }, \
45 { k50, k51, k52, XXX, XXX, XXX, k56, XXX, XXX, XXX, k5a, k5b, k5c, k5d, k5e, k5f, k5g } \
46}
47
48#define LAYOUT_tkl_ansi( \
49 k00, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, k0g, \
50 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, k1g, \
51 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f, k2g, \
52 k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3d, \
53 k40, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4d, k4f, \
54 k50, k51, k52, k56, k5a, k5b, k5c, k5d, k5e, k5f, k5g \
55) \
56{ \
57 { k00, XXX, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, k0g }, \
58 { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, k1g }, \
59 { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, k2f, k2g }, \
60 { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, XXX, k3d, XXX, XXX, XXX }, \
61 { k40, XXX, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, XXX, k4d, XXX, k4f, XXX }, \
62 { k50, k51, k52, XXX, XXX, XXX, k56, XXX, XXX, XXX, k5a, k5b, k5c, k5d, k5e, k5f, k5g } \
63}
64
65#define LAYOUT_tkl_iso( \
66 k00, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, k0g, \
67 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, k1g, \
68 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2e, k2f, k2g, \
69 k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, \
70 k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, k4d, k4f, \
71 k50, k51, k52, k56, k5a, k5b, k5c, k5d, k5e, k5f, k5g \
72) \
73{ \
74 { k00, XXX, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, k0f, k0g }, \
75 { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, k1f, k1g }, \
76 { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, XXX, k2e, k2f, k2g }, \
77 { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, XXX, XXX, XXX }, \
78 { k40, k41, k42, k43, k44, k45, k46, k47, k48, k49, k4a, k4b, XXX, k4d, XXX, k4f, XXX }, \
79 { k50, k51, k52, XXX, XXX, XXX, k56, XXX, XXX, XXX, k5a, k5b, k5c, k5d, k5e, k5f, k5g } \
80}
diff --git a/keyboards/evyd13/nt750/readme.md b/keyboards/evyd13/nt750/readme.md
new file mode 100644
index 000000000..977f29250
--- /dev/null
+++ b/keyboards/evyd13/nt750/readme.md
@@ -0,0 +1,22 @@
1# nt750
2
3A drop-in replacement PCB for the Leopold FC750R.
4
5* Keyboard Maintainer: [Evyd13](https://github.com/Evyd13)
6* Hardware Supported: nt750 PCB
7* Hardware Availability: [GitHub](https://github.com/evyd13/nt-series/tree/main/nt-750)
8
9## Flashing
10
11In place of the DIP switches there is a small button. Press that to jump to the bootloader.
12
13
14Make example for this keyboard (after setting up your build environment):
15
16 make evyd13/nt750:default
17
18Flashing example for this keyboard:
19
20 make evyd13/nt750:default:flash
21
22See 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/evyd13/nt750/rules.mk b/keyboards/evyd13/nt750/rules.mk
new file mode 100644
index 000000000..e981c14b0
--- /dev/null
+++ b/keyboards/evyd13/nt750/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 = no # 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 = no # USB Nkey Rollover
19BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21BLUETOOTH_ENABLE = no # Enable Bluetooth
22AUDIO_ENABLE = no # Audio output \ No newline at end of file