aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/wolf/kuku65/config.h56
-rw-r--r--keyboards/wolf/kuku65/info.json288
-rw-r--r--keyboards/wolf/kuku65/keymaps/default/keymap.c67
-rw-r--r--keyboards/wolf/kuku65/keymaps/via/keymap.c85
-rw-r--r--keyboards/wolf/kuku65/keymaps/via/rules.mk1
-rw-r--r--keyboards/wolf/kuku65/kuku65.c14
-rw-r--r--keyboards/wolf/kuku65/kuku65.h32
-rw-r--r--keyboards/wolf/kuku65/readme.md22
-rw-r--r--keyboards/wolf/kuku65/rules.mk24
9 files changed, 589 insertions, 0 deletions
diff --git a/keyboards/wolf/kuku65/config.h b/keyboards/wolf/kuku65/config.h
new file mode 100644
index 000000000..7c5afed52
--- /dev/null
+++ b/keyboards/wolf/kuku65/config.h
@@ -0,0 +1,56 @@
1/*
2Copyright 2020 <contact@vwolf.be>
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 0x5453 // TS - ToastyStoemp
24#define PRODUCT_ID 0x0052 // kuku65
25#define DEVICE_VER 0x0001 // Version 1
26#define MANUFACTURER ToastyStoemp
27#define PRODUCT kuku65
28
29/* key matrix size */
30#define MATRIX_ROWS 5
31#define MATRIX_COLS 15
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
44// Checked with Eagle Schematic
45#define MATRIX_ROW_PINS { B3, B2, B1, B0, B7 }
46#define MATRIX_COL_PINS { D0, F6, F7, C7, C6, B6, B5, B4, D7, D6, D4, D5, D3, D2, D1 }
47#define UNUSED_PINS
48
49/* COL2ROW or ROW2COL */
50#define DIODE_DIRECTION COL2ROW
51
52/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
53#define DEBOUNCE 5
54
55#define NO_ACTION_MACRO
56#define NO_ACTION_FUNCTION
diff --git a/keyboards/wolf/kuku65/info.json b/keyboards/wolf/kuku65/info.json
new file mode 100644
index 000000000..1cd162aa3
--- /dev/null
+++ b/keyboards/wolf/kuku65/info.json
@@ -0,0 +1,288 @@
1{
2 "keyboard_name": "kuku65",
3 "url": "",
4 "maintainer": "ToastyStoemp",
5 "layouts": {
6 "LAYOUT": {
7 "layout": [
8 {
9 "x": 0,
10 "y": 0
11 },
12 {
13 "x": 1,
14 "y": 0
15 },
16 {
17 "x": 2,
18 "y": 0
19 },
20 {
21 "x": 3,
22 "y": 0
23 },
24 {
25 "x": 4,
26 "y": 0
27 },
28 {
29 "x": 5,
30 "y": 0
31 },
32 {
33 "x": 6,
34 "y": 0
35 },
36 {
37 "x": 7,
38 "y": 0
39 },
40 {
41 "x": 8,
42 "y": 0
43 },
44 {
45 "x": 9,
46 "y": 0
47 },
48 {
49 "x": 10,
50 "y": 0
51 },
52 {
53 "x": 11,
54 "y": 0
55 },
56 {
57 "x": 12,
58 "y": 0
59 },
60 {
61 "x": 13,
62 "y": 0,
63 "w": 2
64 },
65 {
66 "x": 0,
67 "y": 1,
68 "w": 1.5
69 },
70 {
71 "x": 1.5,
72 "y": 1
73 },
74 {
75 "x": 2.5,
76 "y": 1
77 },
78 {
79 "x": 3.5,
80 "y": 1
81 },
82 {
83 "x": 4.5,
84 "y": 1
85 },
86 {
87 "x": 5.5,
88 "y": 1
89 },
90 {
91 "x": 6.5,
92 "y": 1
93 },
94 {
95 "x": 7.5,
96 "y": 1
97 },
98 {
99 "x": 8.5,
100 "y": 1
101 },
102 {
103 "x": 9.5,
104 "y": 1
105 },
106 {
107 "x": 10.5,
108 "y": 1
109 },
110 {
111 "x": 11.5,
112 "y": 1
113 },
114 {
115 "x": 12.5,
116 "y": 1
117 },
118 {
119 "x": 13.5,
120 "y": 1,
121 "w": 1.5
122 },
123 {
124 "x": 15,
125 "y": 1
126 },
127 {
128 "x": 0,
129 "y": 2,
130 "w": 1.75
131 },
132 {
133 "x": 1.75,
134 "y": 2
135 },
136 {
137 "x": 2.75,
138 "y": 2
139 },
140 {
141 "x": 3.75,
142 "y": 2
143 },
144 {
145 "x": 4.75,
146 "y": 2
147 },
148 {
149 "x": 5.75,
150 "y": 2
151 },
152 {
153 "x": 6.75,
154 "y": 2
155 },
156 {
157 "x": 7.75,
158 "y": 2
159 },
160 {
161 "x": 8.75,
162 "y": 2
163 },
164 {
165 "x": 9.75,
166 "y": 2
167 },
168 {
169 "x": 10.75,
170 "y": 2
171 },
172 {
173 "x": 11.75,
174 "y": 2
175 },
176 {
177 "x": 12.75,
178 "y": 2,
179 "w": 2.25
180 },
181 {
182 "x": 15,
183 "y": 2
184 },
185 {
186 "x": 0,
187 "y": 3,
188 "w": 2.25
189 },
190 {
191 "x": 2.25,
192 "y": 3
193 },
194 {
195 "x": 3.25,
196 "y": 3
197 },
198 {
199 "x": 4.25,
200 "y": 3
201 },
202 {
203 "x": 5.25,
204 "y": 3
205 },
206 {
207 "x": 6.25,
208 "y": 3
209 },
210 {
211 "x": 7.25,
212 "y": 3
213 },
214 {
215 "x": 8.25,
216 "y": 3
217 },
218 {
219 "x": 9.25,
220 "y": 3
221 },
222 {
223 "x": 10.25,
224 "y": 3
225 },
226 {
227 "x": 11.25,
228 "y": 3
229 },
230 {
231 "x": 12.25,
232 "y": 3,
233 "w": 1.75
234 },
235 {
236 "x": 14,
237 "y": 3
238 },
239 {
240 "x": 15,
241 "y": 3
242 },
243 {
244 "x": 0,
245 "y": 4,
246 "w": 1.25
247 },
248 {
249 "x": 1.25,
250 "y": 4,
251 "w": 1.25
252 },
253 {
254 "x": 2.5,
255 "y": 4,
256 "w": 1.25
257 },
258 {
259 "x": 3.75,
260 "y": 4,
261 "w": 6.25
262 },
263 {
264 "x": 10,
265 "y": 4,
266 "w": 1.25
267 },
268 {
269 "x": 11.25,
270 "y": 4,
271 "w": 1.25
272 },
273 {
274 "x": 13,
275 "y": 4
276 },
277 {
278 "x": 14,
279 "y": 4
280 },
281 {
282 "x": 15,
283 "y": 4
284 }
285 ]
286 }
287 }
288}
diff --git a/keyboards/wolf/kuku65/keymaps/default/keymap.c b/keyboards/wolf/kuku65/keymaps/default/keymap.c
new file mode 100644
index 000000000..11d9f26ff
--- /dev/null
+++ b/keyboards/wolf/kuku65/keymaps/default/keymap.c
@@ -0,0 +1,67 @@
1/*
2Copyright 2020 <contact@vwolf.be>
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7This program is distributed in the hope that it will be useful,
8but WITHOUT ANY WARRANTY; without even the implied warranty of
9MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10GNU General Public License for more details.
11You should have received a copy of the GNU General Public License
12along with this program. If not, see <http://www.gnu.org/licenses/>.
13*/
14
15#include QMK_KEYBOARD_H
16
17enum layers {
18 _LAYER0,
19 _LAYER1,
20};
21
22const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
23
24 /*
25 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
26 * │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Backsp│Hom│
27 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
28 * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ \ │PgU│
29 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
30 * │ Ctrl │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter │PgD│
31 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
32 * │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ Shift│ ↑ │End│
33 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
34 * │Ctrl│GUI │Alt │ │Alt │FN │ │ ← │ ↓ │ → │
35 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
36 */
37
38 [_LAYER0] = LAYOUT(
39 KC_GESC, 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,
40 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_PGUP,
41 KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGDN,
42 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, KC_END,
43 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_LEFT, KC_DOWN, KC_RGHT
44 ),
45
46 /*
47 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
48 * │ ` │ F1│ F2│ F3│ F4│ F5│ F6│ F7│ F8│ F9│F10│F11│F12│ │ │
49 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
50 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
51 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
52 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
53 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
54 * │ │ │ │ │ │Res│ │ │ │ │ │ │ V+│ V0│
55 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
56 * │ │ │ │ │ │ │ │ PT│ V-│ NT│
57 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
58 */
59
60 [_LAYER1] = LAYOUT(
61 KC_GRV, 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_TRNS,
62 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
63 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
64 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_AUDIO_VOL_UP, KC_AUDIO_MUTE,
65 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MEDIA_PREV_TRACK, KC_AUDIO_VOL_DOWN, KC_MEDIA_NEXT_TRACK
66 )
67};
diff --git a/keyboards/wolf/kuku65/keymaps/via/keymap.c b/keyboards/wolf/kuku65/keymaps/via/keymap.c
new file mode 100644
index 000000000..44618f676
--- /dev/null
+++ b/keyboards/wolf/kuku65/keymaps/via/keymap.c
@@ -0,0 +1,85 @@
1/*
2Copyright 2020 <contact@vwolf.be>
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7This program is distributed in the hope that it will be useful,
8but WITHOUT ANY WARRANTY; without even the implied warranty of
9MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10GNU General Public License for more details.
11You should have received a copy of the GNU General Public License
12along with this program. If not, see <http://www.gnu.org/licenses/>.
13*/
14
15#include QMK_KEYBOARD_H
16
17enum layers {
18 _LAYER0,
19 _LAYER1,
20 _LAYER2,
21 _LAYER3,
22};
23
24const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
25
26 /*
27 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
28 * │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Backsp│Hom│
29 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
30 * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ \ │PgU│
31 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
32 * │ Ctrl │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter │PgD│
33 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
34 * │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ Shift│ ↑ │End│
35 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
36 * │Ctrl│GUI │Alt │ │Alt │FN │ │ ← │ ↓ │ → │
37 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
38 */
39
40 [_LAYER0] = LAYOUT(
41 KC_GESC, 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,
42 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_PGUP,
43 KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGDN,
44 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, KC_END,
45 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_LEFT, KC_DOWN, KC_RGHT
46 ),
47
48 /*
49 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
50 * │ ` │ F1│ F2│ F3│ F4│ F5│ F6│ F7│ F8│ F9│F10│F11│F12│ │ │
51 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
52 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
53 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
54 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
55 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
56 * │ │ │ │ │ │Res│ │ │ │ │ │ │ V+│ V0│
57 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
58 * │ │ │ │ │ │ │ │ PT│ V-│ NT│
59 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
60 */
61
62 [_LAYER1] = LAYOUT(
63 KC_GRV, 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_TRNS,
64 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
65 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
66 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_AUDIO_VOL_UP, KC_AUDIO_MUTE,
67 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MEDIA_PREV_TRACK, KC_AUDIO_VOL_DOWN, KC_MEDIA_NEXT_TRACK
68 ),
69
70 [_LAYER2] = LAYOUT(
71 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
72 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
73 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
74 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
75 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
76 ),
77
78 [_LAYER3] = LAYOUT(
79 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
80 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
81 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
82 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
83 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
84 )
85};
diff --git a/keyboards/wolf/kuku65/keymaps/via/rules.mk b/keyboards/wolf/kuku65/keymaps/via/rules.mk
new file mode 100644
index 000000000..1e5b99807
--- /dev/null
+++ b/keyboards/wolf/kuku65/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes
diff --git a/keyboards/wolf/kuku65/kuku65.c b/keyboards/wolf/kuku65/kuku65.c
new file mode 100644
index 000000000..9c1be8cb8
--- /dev/null
+++ b/keyboards/wolf/kuku65/kuku65.c
@@ -0,0 +1,14 @@
1/*
2Copyright 2020 <contact@vwolf.be>
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7This program is distributed in the hope that it will be useful,
8but WITHOUT ANY WARRANTY; without even the implied warranty of
9MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10GNU General Public License for more details.
11You should have received a copy of the GNU General Public License
12along with this program. If not, see <http://www.gnu.org/licenses/>.
13*/
14#include "kuku65.h"
diff --git a/keyboards/wolf/kuku65/kuku65.h b/keyboards/wolf/kuku65/kuku65.h
new file mode 100644
index 000000000..d8ad84727
--- /dev/null
+++ b/keyboards/wolf/kuku65/kuku65.h
@@ -0,0 +1,32 @@
1/*
2Copyright 2020 <contact@vwolf.be>
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7This program is distributed in the hope that it will be useful,
8but WITHOUT ANY WARRANTY; without even the implied warranty of
9MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10GNU General Public License for more details.
11You should have received a copy of the GNU General Public License
12along with this program. If not, see <http://www.gnu.org/licenses/>.
13*/
14
15#pragma once
16
17#include "quantum.h"
18
19/* kuku65 Keymap Definitions */
20#define LAYOUT( \
21 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \
22 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \
23 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2D, K2E, \
24 K30, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, \
25 K40, K41, K42, K46, K49, K4A, K4C, K4D, K4E \
26) { \
27 { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, KC_NO }, \
28 { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \
29 { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, KC_NO, K2D, K2E }, \
30 { K30, KC_NO, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E }, \
31 { K40, K41, K42, KC_NO, KC_NO, KC_NO, K46, KC_NO, KC_NO, K49, K4A, KC_NO, K4C, K4D, K4E } \
32}
diff --git a/keyboards/wolf/kuku65/readme.md b/keyboards/wolf/kuku65/readme.md
new file mode 100644
index 000000000..34c4f3342
--- /dev/null
+++ b/keyboards/wolf/kuku65/readme.md
@@ -0,0 +1,22 @@
1# kuku65
2
3The following is the QMK Firmware for the kuku65 Hotswap PCB.
4
5The PCB features:
6* QMK & VIA compatibility
7* Hotswap
8
9---
10
11* Keyboard Maintainer: [ToastyStoemp](https://github.com/ToastyStoemp)
12
13Make example for this keyboard (after setting up your build environment):
14
15 make wolf/kuku65:default
16
17See 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).
18
19## Bootloader Enter the bootloader in 3 ways:
20* **Bootmagic reset**: Hold down the key ESC key and plug in the keyboard (Top Left most switch)
21* **Physical reset button**: Briefly press the button on the back of the PCB
22* **Keycode in layout**: Press the B key on layer 1 which is mapped to `RESET`
diff --git a/keyboards/wolf/kuku65/rules.mk b/keyboards/wolf/kuku65/rules.mk
new file mode 100644
index 000000000..8fc7be19c
--- /dev/null
+++ b/keyboards/wolf/kuku65/rules.mk
@@ -0,0 +1,24 @@
1# MCU name
2MCU = atmega32u4
3
4# Processor frequency
5F_CPU = 8000000
6
7# Bootloader selection
8BOOTLOADER = atmel-dfu
9
10# Build Options
11# change yes to no to disable
12#
13BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
14MOUSEKEY_ENABLE = no # Mouse keys
15EXTRAKEY_ENABLE = yes # Audio control and System control
16CONSOLE_ENABLE = no # Console for debug
17COMMAND_ENABLE = no # Commands for debug and configuration
18# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
19SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
20# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
21NKRO_ENABLE = yes # USB Nkey Rollover
22BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
23RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
24AUDIO_ENABLE = no # Audio output