aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-07-20 17:48:49 +0000
committerQMK Bot <hello@qmk.fm>2021-07-20 17:48:49 +0000
commitc4db9f7fb2a359abb1db06e3d74a52dce8bdf68c (patch)
tree691340b72862885811c4aa369019bfd0d15f1f7e
parent32a44b6a2c8f1f49f78cea8635b9358e1d1eb0b8 (diff)
parentc1ba35363d4f7d76d63173312a0785401c6bff9f (diff)
downloadqmk_firmware-c4db9f7fb2a359abb1db06e3d74a52dce8bdf68c.tar.gz
qmk_firmware-c4db9f7fb2a359abb1db06e3d74a52dce8bdf68c.zip
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r--keyboards/kineticlabs/emu/hotswap/config.h42
-rw-r--r--keyboards/kineticlabs/emu/hotswap/hotswap.c17
-rw-r--r--keyboards/kineticlabs/emu/hotswap/hotswap.h37
-rw-r--r--keyboards/kineticlabs/emu/hotswap/info.json100
-rw-r--r--keyboards/kineticlabs/emu/hotswap/keymaps/default/keymap.c37
-rw-r--r--keyboards/kineticlabs/emu/hotswap/keymaps/via/keymap.c55
-rw-r--r--keyboards/kineticlabs/emu/hotswap/keymaps/via/rules.mk2
-rw-r--r--keyboards/kineticlabs/emu/hotswap/readme.md21
-rw-r--r--keyboards/kineticlabs/emu/hotswap/rules.mk24
-rw-r--r--keyboards/kineticlabs/emu/soldered/config.h42
-rw-r--r--keyboards/kineticlabs/emu/soldered/info.json282
-rw-r--r--keyboards/kineticlabs/emu/soldered/keymaps/default/keymap.c37
-rw-r--r--keyboards/kineticlabs/emu/soldered/keymaps/via/keymap.c55
-rw-r--r--keyboards/kineticlabs/emu/soldered/keymaps/via/rules.mk2
-rw-r--r--keyboards/kineticlabs/emu/soldered/keymaps/wkl/keymap.c37
-rw-r--r--keyboards/kineticlabs/emu/soldered/readme.md21
-rw-r--r--keyboards/kineticlabs/emu/soldered/rules.mk24
-rw-r--r--keyboards/kineticlabs/emu/soldered/soldered.c17
-rw-r--r--keyboards/kineticlabs/emu/soldered/soldered.h69
19 files changed, 921 insertions, 0 deletions
diff --git a/keyboards/kineticlabs/emu/hotswap/config.h b/keyboards/kineticlabs/emu/hotswap/config.h
new file mode 100644
index 000000000..57eaad44b
--- /dev/null
+++ b/keyboards/kineticlabs/emu/hotswap/config.h
@@ -0,0 +1,42 @@
1/*
2Copyright 2021 kb-elmo<mail@elmo.space>
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 0xE015
24#define PRODUCT_ID 0xC387
25#define DEVICE_VER 0x0001
26#define MANUFACTURER Kineticlabs
27#define PRODUCT Emu Hotswap
28
29/* key matrix size */
30#define MATRIX_ROWS 6
31#define MATRIX_COLS 18
32
33/* Keyboard Matrix Assignments */
34#define MATRIX_ROW_PINS { E6, D4, B3, B1, B0, B7 }
35#define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, C7, C6, B6, B5, B4, D7, D6, D5, D3, D2, D1, D0 }
36#define UNUSED_PINS
37
38/* COL2ROW, ROW2COL */
39#define DIODE_DIRECTION COL2ROW
40
41/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
42#define DEBOUNCE 5
diff --git a/keyboards/kineticlabs/emu/hotswap/hotswap.c b/keyboards/kineticlabs/emu/hotswap/hotswap.c
new file mode 100644
index 000000000..8b26d5cd8
--- /dev/null
+++ b/keyboards/kineticlabs/emu/hotswap/hotswap.c
@@ -0,0 +1,17 @@
1/* Copyright 2021 kb-elmo<mail@elmo.space>
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 "hotswap.h"
diff --git a/keyboards/kineticlabs/emu/hotswap/hotswap.h b/keyboards/kineticlabs/emu/hotswap/hotswap.h
new file mode 100644
index 000000000..da02500fe
--- /dev/null
+++ b/keyboards/kineticlabs/emu/hotswap/hotswap.h
@@ -0,0 +1,37 @@
1/* Copyright 2021 kb-elmo<mail@elmo.space>
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
19#include "quantum.h"
20
21#define ____ KC_NO
22
23#define LAYOUT_tkl_ansi( \
24 k000, k002, k003, k004, k005, k006, k007, k008, k009, k011, k012, k013, k014, k015, k016, k017, \
25 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k114, k115, k116, k117, \
26 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k214, k215, k216, k217, \
27 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k314, \
28 k400, k401, k402, k403, k404, k405, k406, k407, k408, k409, k410, k414, k416, \
29 k500, k501, k502, k505, k510, k511, k513, k514, k515, k516, k517 \
30) { \
31 { k000, ____, k002, k003, k004, k005, k006, k007, k008, k009, ____, k011, k012, k013, k014, k015, k016, k017 }, \
32 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, ____, k114, k115, k116, k117 }, \
33 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, ____, k214, k215, k216, k217 }, \
34 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, ____, ____, k314, ____, ____, ____ }, \
35 { k400, k401, k402, k403, k404, k405, k406, k407, k408, k409, k410, ____, ____, ____, k414, ____, k416, ____ }, \
36 { k500, k501, k502, ____, ____, k505, ____, ____, ____, ____, k510, k511, ____, k513, k514, k515, k516, k517 } \
37}
diff --git a/keyboards/kineticlabs/emu/hotswap/info.json b/keyboards/kineticlabs/emu/hotswap/info.json
new file mode 100644
index 000000000..07af2fddd
--- /dev/null
+++ b/keyboards/kineticlabs/emu/hotswap/info.json
@@ -0,0 +1,100 @@
1{
2 "keyboard_name": "Emu hotswap",
3 "url": "",
4 "maintainer": "kb-elmo<mail@elmo.space>",
5 "width": 18.25,
6 "height": 6.5,
7 "layouts": {
8 "LAYOUT_tkl_ansi": {
9 "layout": [
10 {"x":0, "y":0},
11 {"x":2, "y":0},
12 {"x":3, "y":0},
13 {"x":4, "y":0},
14 {"x":5, "y":0},
15 {"x":6.5, "y":0},
16 {"x":7.5, "y":0},
17 {"x":8.5, "y":0},
18 {"x":9.5, "y":0},
19 {"x":11, "y":0},
20 {"x":12, "y":0},
21 {"x":13, "y":0},
22 {"x":14, "y":0},
23 {"x":15.25, "y":0},
24 {"x":16.25, "y":0},
25 {"x":17.25, "y":0},
26 {"x":0, "y":1.5},
27 {"x":1, "y":1.5},
28 {"x":2, "y":1.5},
29 {"x":3, "y":1.5},
30 {"x":4, "y":1.5},
31 {"x":5, "y":1.5},
32 {"x":6, "y":1.5},
33 {"x":7, "y":1.5},
34 {"x":8, "y":1.5},
35 {"x":9, "y":1.5},
36 {"x":10, "y":1.5},
37 {"x":11, "y":1.5},
38 {"x":12, "y":1.5},
39 {"x":13, "y":1.5, "w":2},
40 {"x":15.25, "y":1.5},
41 {"x":16.25, "y":1.5},
42 {"x":17.25, "y":1.5},
43 {"x":0, "y":2.5, "w":1.5},
44 {"x":1.5, "y":2.5},
45 {"x":2.5, "y":2.5},
46 {"x":3.5, "y":2.5},
47 {"x":4.5, "y":2.5},
48 {"x":5.5, "y":2.5},
49 {"x":6.5, "y":2.5},
50 {"x":7.5, "y":2.5},
51 {"x":8.5, "y":2.5},
52 {"x":9.5, "y":2.5},
53 {"x":10.5, "y":2.5},
54 {"x":11.5, "y":2.5},
55 {"x":12.5, "y":2.5},
56 {"x":13.5, "y":2.5, "w":1.5},
57 {"x":15.25, "y":2.5},
58 {"x":16.25, "y":2.5},
59 {"x":17.25, "y":2.5},
60 {"x":0, "y":3.5, "w":1.75},
61 {"x":1.75, "y":3.5},
62 {"x":2.75, "y":3.5},
63 {"x":3.75, "y":3.5},
64 {"x":4.75, "y":3.5},
65 {"x":5.75, "y":3.5},
66 {"x":6.75, "y":3.5},
67 {"x":7.75, "y":3.5},
68 {"x":8.75, "y":3.5},
69 {"x":9.75, "y":3.5},
70 {"x":10.75, "y":3.5},
71 {"x":11.75, "y":3.5},
72 {"x":12.75, "y":3.5, "w":2.25},
73 {"x":0, "y":4.5, "w":2.25},
74 {"x":2.25, "y":4.5},
75 {"x":3.25, "y":4.5},
76 {"x":4.25, "y":4.5},
77 {"x":5.25, "y":4.5},
78 {"x":6.25, "y":4.5},
79 {"x":7.25, "y":4.5},
80 {"x":8.25, "y":4.5},
81 {"x":9.25, "y":4.5},
82 {"x":10.25, "y":4.5},
83 {"x":11.25, "y":4.5},
84 {"x":12.25, "y":4.5, "w":2.75},
85 {"x":16.25, "y":4.5},
86 {"x":0, "y":5.5, "w":1.25},
87 {"x":1.25, "y":5.5, "w":1.25},
88 {"x":2.5, "y":5.5, "w":1.25},
89 {"x":3.75, "y":5.5, "w":6.25},
90 {"x":10, "y":5.5, "w":1.25},
91 {"x":11.25, "y":5.5, "w":1.25},
92 {"x":12.5, "y":5.5, "w":1.25},
93 {"x":13.75, "y":5.5, "w":1.25},
94 {"x":15.25, "y":5.5},
95 {"x":16.25, "y":5.5},
96 {"x":17.25, "y":5.5}
97 ]
98 }
99 }
100} \ No newline at end of file
diff --git a/keyboards/kineticlabs/emu/hotswap/keymaps/default/keymap.c b/keyboards/kineticlabs/emu/hotswap/keymaps/default/keymap.c
new file mode 100644
index 000000000..01a14010e
--- /dev/null
+++ b/keyboards/kineticlabs/emu/hotswap/keymaps/default/keymap.c
@@ -0,0 +1,37 @@
1/* Copyright 2021 kb-elmo<mail@elmo.space>
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 [0] = LAYOUT_tkl_ansi(
20 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,
21
22 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,
23 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,
24 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,
25 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,
26 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
27 ),
28 [1] = LAYOUT_tkl_ansi(
29 KC_ESC, 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,
30
31 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, KC_TRNS, KC_TRNS,
32 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, KC_TRNS, KC_TRNS,
33 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,
34 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,
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
36 )
37};
diff --git a/keyboards/kineticlabs/emu/hotswap/keymaps/via/keymap.c b/keyboards/kineticlabs/emu/hotswap/keymaps/via/keymap.c
new file mode 100644
index 000000000..f5702905c
--- /dev/null
+++ b/keyboards/kineticlabs/emu/hotswap/keymaps/via/keymap.c
@@ -0,0 +1,55 @@
1/* Copyright 2021 kb-elmo<mail@elmo.space>
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 [0] = LAYOUT_tkl_ansi(
20 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,
21
22 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,
23 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,
24 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,
25 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,
26 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
27 ),
28 [1] = LAYOUT_tkl_ansi(
29 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, KC_TRNS,
30
31 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_MUTE, KC_VOLD, KC_VOLU,
32 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_MPRV, KC_MPLY, KC_MNXT,
33 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,
34 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,
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
36 ),
37 [2] = LAYOUT_tkl_ansi(
38 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, KC_TRNS,
39
40 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, KC_TRNS, KC_TRNS,
41 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, KC_TRNS, KC_TRNS,
42 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,
43 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,
44 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
45 ),
46 [3] = LAYOUT_tkl_ansi(
47 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, KC_TRNS,
48
49 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, KC_TRNS, KC_TRNS,
50 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, KC_TRNS, KC_TRNS,
51 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,
52 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,
53 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
54 )
55};
diff --git a/keyboards/kineticlabs/emu/hotswap/keymaps/via/rules.mk b/keyboards/kineticlabs/emu/hotswap/keymaps/via/rules.mk
new file mode 100644
index 000000000..36b7ba9cb
--- /dev/null
+++ b/keyboards/kineticlabs/emu/hotswap/keymaps/via/rules.mk
@@ -0,0 +1,2 @@
1VIA_ENABLE = yes
2LTO_ENABLE = yes
diff --git a/keyboards/kineticlabs/emu/hotswap/readme.md b/keyboards/kineticlabs/emu/hotswap/readme.md
new file mode 100644
index 000000000..bf4b681a9
--- /dev/null
+++ b/keyboards/kineticlabs/emu/hotswap/readme.md
@@ -0,0 +1,21 @@
1# Emu
2
3![emu](https://i.imgur.com/OiAQ6Vbl.jpg)
4
5TKL keyboard made by KineticLabs
6
7* Keyboard Maintainer: [kb-elmo](https://github.com/kb-elmo)
8* Hardware Supported: Emu soldered PCB
9* Hardware Availability: Groupbuy
10
11Make example for this keyboard (after setting up your build environment):
12
13 make kineticlabs/emu:default
14
15Flashing example for this keyboard:
16
17 make kineticlabs/emu:default:flash
18
19**Bootloader:** Press the physical reset button on the bottom side of the PCB (labeled SW1) or hold down ESC while plugging in the board.
20
21See 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/kineticlabs/emu/hotswap/rules.mk b/keyboards/kineticlabs/emu/hotswap/rules.mk
new file mode 100644
index 000000000..72eed40eb
--- /dev/null
+++ b/keyboards/kineticlabs/emu/hotswap/rules.mk
@@ -0,0 +1,24 @@
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
23
24LAYOUTS = tkl_ansi \ No newline at end of file
diff --git a/keyboards/kineticlabs/emu/soldered/config.h b/keyboards/kineticlabs/emu/soldered/config.h
new file mode 100644
index 000000000..092191119
--- /dev/null
+++ b/keyboards/kineticlabs/emu/soldered/config.h
@@ -0,0 +1,42 @@
1/*
2Copyright 2021 kb-elmo<mail@elmo.space>
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 0xE015
24#define PRODUCT_ID 0xC386
25#define DEVICE_VER 0x0001
26#define MANUFACTURER Kineticlabs
27#define PRODUCT Emu
28
29/* key matrix size */
30#define MATRIX_ROWS 6
31#define MATRIX_COLS 18
32
33/* Keyboard Matrix Assignments */
34#define MATRIX_ROW_PINS { E6, D4, B3, B1, B0, B7 }
35#define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, C7, C6, B6, B5, B4, D7, D6, D5, D3, D2, D1, D0 }
36#define UNUSED_PINS
37
38/* COL2ROW, ROW2COL */
39#define DIODE_DIRECTION COL2ROW
40
41/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
42#define DEBOUNCE 5
diff --git a/keyboards/kineticlabs/emu/soldered/info.json b/keyboards/kineticlabs/emu/soldered/info.json
new file mode 100644
index 000000000..d5e7f4a40
--- /dev/null
+++ b/keyboards/kineticlabs/emu/soldered/info.json
@@ -0,0 +1,282 @@
1{
2 "keyboard_name": "Emu hotswap",
3 "url": "",
4 "maintainer": "kb-elmo<mail@elmo.space>",
5 "width": 18.25,
6 "height": 6.5,
7 "layouts": {
8 "LAYOUT_all": {
9 "layout": [
10 {"x":0, "y":0},
11 {"x":2, "y":0},
12 {"x":3, "y":0},
13 {"x":4, "y":0},
14 {"x":5, "y":0},
15 {"x":6.5, "y":0},
16 {"x":7.5, "y":0},
17 {"x":8.5, "y":0},
18 {"x":9.5, "y":0},
19 {"x":11, "y":0},
20 {"x":12, "y":0},
21 {"x":13, "y":0},
22 {"x":14, "y":0},
23 {"x":15.25, "y":0},
24 {"x":16.25, "y":0},
25 {"x":17.25, "y":0},
26 {"x":0, "y":1.5},
27 {"x":1, "y":1.5},
28 {"x":2, "y":1.5},
29 {"x":3, "y":1.5},
30 {"x":4, "y":1.5},
31 {"x":5, "y":1.5},
32 {"x":6, "y":1.5},
33 {"x":7, "y":1.5},
34 {"x":8, "y":1.5},
35 {"x":9, "y":1.5},
36 {"x":10, "y":1.5},
37 {"x":11, "y":1.5},
38 {"x":12, "y":1.5},
39 {"x":13, "y":1.5},
40 {"x":14, "y":1.5},
41 {"x":15.25, "y":1.5},
42 {"x":16.25, "y":1.5},
43 {"x":17.25, "y":1.5},
44 {"x":0, "y":2.5, "w":1.5},
45 {"x":1.5, "y":2.5},
46 {"x":2.5, "y":2.5},
47 {"x":3.5, "y":2.5},
48 {"x":4.5, "y":2.5},
49 {"x":5.5, "y":2.5},
50 {"x":6.5, "y":2.5},
51 {"x":7.5, "y":2.5},
52 {"x":8.5, "y":2.5},
53 {"x":9.5, "y":2.5},
54 {"x":10.5, "y":2.5},
55 {"x":11.5, "y":2.5},
56 {"x":12.5, "y":2.5},
57 {"x":13.5, "y":2.5, "w":1.5},
58 {"x":15.25, "y":2.5},
59 {"x":16.25, "y":2.5},
60 {"x":17.25, "y":2.5},
61 {"x":0, "y":3.5, "w":1.75},
62 {"x":1.75, "y":3.5},
63 {"x":2.75, "y":3.5},
64 {"x":3.75, "y":3.5},
65 {"x":4.75, "y":3.5},
66 {"x":5.75, "y":3.5},
67 {"x":6.75, "y":3.5},
68 {"x":7.75, "y":3.5},
69 {"x":8.75, "y":3.5},
70 {"x":9.75, "y":3.5},
71 {"x":10.75, "y":3.5},
72 {"x":11.75, "y":3.5},
73 {"x":12.75, "y":3.5, "w":2.25},
74 {"x":0, "y":4.5, "w":2.25},
75 {"x":2.25, "y":4.5},
76 {"x":3.25, "y":4.5},
77 {"x":4.25, "y":4.5},
78 {"x":5.25, "y":4.5},
79 {"x":6.25, "y":4.5},
80 {"x":7.25, "y":4.5},
81 {"x":8.25, "y":4.5},
82 {"x":9.25, "y":4.5},
83 {"x":10.25, "y":4.5},
84 {"x":11.25, "y":4.5},
85 {"x":12.25, "y":4.5, "w":2.75},
86 {"x":16.25, "y":4.5},
87 {"x":0, "y":5.5, "w":1.25},
88 {"x":1.25, "y":5.5, "w":1.25},
89 {"x":2.5, "y":5.5, "w":1.25},
90 {"x":3.75, "y":5.5, "w":6.25},
91 {"x":10, "y":5.5, "w":1.25},
92 {"x":11.25, "y":5.5, "w":1.25},
93 {"x":12.5, "y":5.5, "w":1.25},
94 {"x":13.75, "y":5.5, "w":1.25},
95 {"x":15.25, "y":5.5},
96 {"x":16.25, "y":5.5},
97 {"x":17.25, "y":5.5}
98 ]
99 },
100 "LAYOUT_tkl_ansi": {
101 "layout": [
102 {"x":0, "y":0},
103 {"x":2, "y":0},
104 {"x":3, "y":0},
105 {"x":4, "y":0},
106 {"x":5, "y":0},
107 {"x":6.5, "y":0},
108 {"x":7.5, "y":0},
109 {"x":8.5, "y":0},
110 {"x":9.5, "y":0},
111 {"x":11, "y":0},
112 {"x":12, "y":0},
113 {"x":13, "y":0},
114 {"x":14, "y":0},
115 {"x":15.25, "y":0},
116 {"x":16.25, "y":0},
117 {"x":17.25, "y":0},
118 {"x":0, "y":1.5},
119 {"x":1, "y":1.5},
120 {"x":2, "y":1.5},
121 {"x":3, "y":1.5},
122 {"x":4, "y":1.5},
123 {"x":5, "y":1.5},
124 {"x":6, "y":1.5},
125 {"x":7, "y":1.5},
126 {"x":8, "y":1.5},
127 {"x":9, "y":1.5},
128 {"x":10, "y":1.5},
129 {"x":11, "y":1.5},
130 {"x":12, "y":1.5},
131 {"x":13, "y":1.5, "w":2},
132 {"x":15.25, "y":1.5},
133 {"x":16.25, "y":1.5},
134 {"x":17.25, "y":1.5},
135 {"x":0, "y":2.5, "w":1.5},
136 {"x":1.5, "y":2.5},
137 {"x":2.5, "y":2.5},
138 {"x":3.5, "y":2.5},
139 {"x":4.5, "y":2.5},
140 {"x":5.5, "y":2.5},
141 {"x":6.5, "y":2.5},
142 {"x":7.5, "y":2.5},
143 {"x":8.5, "y":2.5},
144 {"x":9.5, "y":2.5},
145 {"x":10.5, "y":2.5},
146 {"x":11.5, "y":2.5},
147 {"x":12.5, "y":2.5},
148 {"x":13.5, "y":2.5, "w":1.5},
149 {"x":15.25, "y":2.5},
150 {"x":16.25, "y":2.5},
151 {"x":17.25, "y":2.5},
152 {"x":0, "y":3.5, "w":1.75},
153 {"x":1.75, "y":3.5},
154 {"x":2.75, "y":3.5},
155 {"x":3.75, "y":3.5},
156 {"x":4.75, "y":3.5},
157 {"x":5.75, "y":3.5},
158 {"x":6.75, "y":3.5},
159 {"x":7.75, "y":3.5},
160 {"x":8.75, "y":3.5},
161 {"x":9.75, "y":3.5},
162 {"x":10.75, "y":3.5},
163 {"x":11.75, "y":3.5},
164 {"x":12.75, "y":3.5, "w":2.25},
165 {"x":0, "y":4.5, "w":2.25},
166 {"x":2.25, "y":4.5},
167 {"x":3.25, "y":4.5},
168 {"x":4.25, "y":4.5},
169 {"x":5.25, "y":4.5},
170 {"x":6.25, "y":4.5},
171 {"x":7.25, "y":4.5},
172 {"x":8.25, "y":4.5},
173 {"x":9.25, "y":4.5},
174 {"x":10.25, "y":4.5},
175 {"x":11.25, "y":4.5},
176 {"x":12.25, "y":4.5, "w":2.75},
177 {"x":16.25, "y":4.5},
178 {"x":0, "y":5.5, "w":1.25},
179 {"x":1.25, "y":5.5, "w":1.25},
180 {"x":2.5, "y":5.5, "w":1.25},
181 {"x":3.75, "y":5.5, "w":6.25},
182 {"x":10, "y":5.5, "w":1.25},
183 {"x":11.25, "y":5.5, "w":1.25},
184 {"x":12.5, "y":5.5, "w":1.25},
185 {"x":13.75, "y":5.5, "w":1.25},
186 {"x":15.25, "y":5.5},
187 {"x":16.25, "y":5.5},
188 {"x":17.25, "y":5.5}
189 ]
190 },
191 "LAYOUT_tkl_ansi_wkl": {
192 "layout": [
193 {"x":0, "y":0},
194 {"x":2, "y":0},
195 {"x":3, "y":0},
196 {"x":4, "y":0},
197 {"x":5, "y":0},
198 {"x":6.5, "y":0},
199 {"x":7.5, "y":0},
200 {"x":8.5, "y":0},
201 {"x":9.5, "y":0},
202 {"x":11, "y":0},
203 {"x":12, "y":0},
204 {"x":13, "y":0},
205 {"x":14, "y":0},
206 {"x":15.25, "y":0},
207 {"x":16.25, "y":0},
208 {"x":17.25, "y":0},
209 {"x":0, "y":1.5},
210 {"x":1, "y":1.5},
211 {"x":2, "y":1.5},
212 {"x":3, "y":1.5},
213 {"x":4, "y":1.5},
214 {"x":5, "y":1.5},
215 {"x":6, "y":1.5},
216 {"x":7, "y":1.5},
217 {"x":8, "y":1.5},
218 {"x":9, "y":1.5},
219 {"x":10, "y":1.5},
220 {"x":11, "y":1.5},
221 {"x":12, "y":1.5},
222 {"x":13, "y":1.5, "w":2},
223 {"x":15.25, "y":1.5},
224 {"x":16.25, "y":1.5},
225 {"x":17.25, "y":1.5},
226 {"x":0, "y":2.5, "w":1.5},
227 {"x":1.5, "y":2.5},
228 {"x":2.5, "y":2.5},
229 {"x":3.5, "y":2.5},
230 {"x":4.5, "y":2.5},
231 {"x":5.5, "y":2.5},
232 {"x":6.5, "y":2.5},
233 {"x":7.5, "y":2.5},
234 {"x":8.5, "y":2.5},
235 {"x":9.5, "y":2.5},
236 {"x":10.5, "y":2.5},
237 {"x":11.5, "y":2.5},
238 {"x":12.5, "y":2.5},
239 {"x":13.5, "y":2.5, "w":1.5},
240 {"x":15.25, "y":2.5},
241 {"x":16.25, "y":2.5},
242 {"x":17.25, "y":2.5},
243 {"x":0, "y":3.5, "w":1.75},
244 {"x":1.75, "y":3.5},
245 {"x":2.75, "y":3.5},
246 {"x":3.75, "y":3.5},
247 {"x":4.75, "y":3.5},
248 {"x":5.75, "y":3.5},
249 {"x":6.75, "y":3.5},
250 {"x":7.75, "y":3.5},
251 {"x":8.75, "y":3.5},
252 {"x":9.75, "y":3.5},
253 {"x":10.75, "y":3.5},
254 {"x":11.75, "y":3.5},
255 {"x":12.75, "y":3.5, "w":2.25},
256 {"x":0, "y":4.5, "w":2.25},
257 {"x":2.25, "y":4.5},
258 {"x":3.25, "y":4.5},
259 {"x":4.25, "y":4.5},
260 {"x":5.25, "y":4.5},
261 {"x":6.25, "y":4.5},
262 {"x":7.25, "y":4.5},
263 {"x":8.25, "y":4.5},
264 {"x":9.25, "y":4.5},
265 {"x":10.25, "y":4.5},
266 {"x":11.25, "y":4.5},
267 {"x":12.25, "y":4.5, "w":2.75},
268 {"x":16.25, "y":4.5},
269 {"x":0, "y":5.5, "w":1.5},
270 {"x":1.5, "y":5.5},
271 {"x":2.5, "y":5.5, "w":1.5},
272 {"x":4, "y":5.5, "w":7},
273 {"x":11, "y":5.5, "w":1.5},
274 {"x":12.5, "y":5.5},
275 {"x":13.5, "y":5.5, "w":1.5},
276 {"x":15.25, "y":5.5},
277 {"x":16.25, "y":5.5},
278 {"x":17.25, "y":5.5}
279 ]
280 }
281 }
282} \ No newline at end of file
diff --git a/keyboards/kineticlabs/emu/soldered/keymaps/default/keymap.c b/keyboards/kineticlabs/emu/soldered/keymaps/default/keymap.c
new file mode 100644
index 000000000..01a14010e
--- /dev/null
+++ b/keyboards/kineticlabs/emu/soldered/keymaps/default/keymap.c
@@ -0,0 +1,37 @@
1/* Copyright 2021 kb-elmo<mail@elmo.space>
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 [0] = LAYOUT_tkl_ansi(
20 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,
21
22 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,
23 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,
24 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,
25 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,
26 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
27 ),
28 [1] = LAYOUT_tkl_ansi(
29 KC_ESC, 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,
30
31 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, KC_TRNS, KC_TRNS,
32 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, KC_TRNS, KC_TRNS,
33 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,
34 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,
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
36 )
37};
diff --git a/keyboards/kineticlabs/emu/soldered/keymaps/via/keymap.c b/keyboards/kineticlabs/emu/soldered/keymaps/via/keymap.c
new file mode 100644
index 000000000..fa24ebc93
--- /dev/null
+++ b/keyboards/kineticlabs/emu/soldered/keymaps/via/keymap.c
@@ -0,0 +1,55 @@
1/* Copyright 2021 kb-elmo<mail@elmo.space>
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 [0] = LAYOUT_all(
20 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,
21
22 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_BSPC, KC_INS, KC_HOME, KC_PGUP,
23 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,
24 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,
25 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,
26 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
27 ),
28 [1] = LAYOUT_all(
29 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, KC_TRNS,
30
31 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, KC_MUTE, KC_VOLD, KC_VOLU,
32 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_MPRV, KC_MPLY, KC_MNXT,
33 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,
34 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,
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
36 ),
37 [2] = LAYOUT_all(
38 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, KC_TRNS,
39
40 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, KC_TRNS, KC_TRNS,
41 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, KC_TRNS, KC_TRNS,
42 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,
43 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,
44 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
45 ),
46 [2] = LAYOUT_all(
47 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, KC_TRNS,
48
49 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, KC_TRNS, KC_TRNS,
50 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, KC_TRNS, KC_TRNS,
51 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,
52 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,
53 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
54 )
55};
diff --git a/keyboards/kineticlabs/emu/soldered/keymaps/via/rules.mk b/keyboards/kineticlabs/emu/soldered/keymaps/via/rules.mk
new file mode 100644
index 000000000..36b7ba9cb
--- /dev/null
+++ b/keyboards/kineticlabs/emu/soldered/keymaps/via/rules.mk
@@ -0,0 +1,2 @@
1VIA_ENABLE = yes
2LTO_ENABLE = yes
diff --git a/keyboards/kineticlabs/emu/soldered/keymaps/wkl/keymap.c b/keyboards/kineticlabs/emu/soldered/keymaps/wkl/keymap.c
new file mode 100644
index 000000000..1d6e49b3c
--- /dev/null
+++ b/keyboards/kineticlabs/emu/soldered/keymaps/wkl/keymap.c
@@ -0,0 +1,37 @@
1/* Copyright 2021 kb-elmo<mail@elmo.space>
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 [0] = LAYOUT_tkl_ansi_wkl(
20 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,
21
22 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,
23 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,
24 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,
25 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,
26 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
27 ),
28 [1] = LAYOUT_tkl_ansi_wkl(
29 KC_ESC, 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,
30
31 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, KC_TRNS, KC_TRNS,
32 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, KC_TRNS, KC_TRNS,
33 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,
34 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,
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
36 )
37};
diff --git a/keyboards/kineticlabs/emu/soldered/readme.md b/keyboards/kineticlabs/emu/soldered/readme.md
new file mode 100644
index 000000000..5e979dd0f
--- /dev/null
+++ b/keyboards/kineticlabs/emu/soldered/readme.md
@@ -0,0 +1,21 @@
1# Emu Hotswap
2
3![emu](https://i.imgur.com/OiAQ6Vbl.jpg)
4
5TKL keyboard made by KineticLabs
6
7* Keyboard Maintainer: [kb-elmo](https://github.com/kb-elmo)
8* Hardware Supported: Emu hotswap PCB
9* Hardware Availability: Groupbuy
10
11Make example for this keyboard (after setting up your build environment):
12
13 make kineticlabs/emu_hotswap:default
14
15Flashing example for this keyboard:
16
17 make kineticlabs/emu_hotswap:default:flash
18
19**Bootloader:** Press the physical reset button on the bottom side of the PCB (labeled SW1) or hold down ESC while plugging in the board.
20
21See 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/kineticlabs/emu/soldered/rules.mk b/keyboards/kineticlabs/emu/soldered/rules.mk
new file mode 100644
index 000000000..72eed40eb
--- /dev/null
+++ b/keyboards/kineticlabs/emu/soldered/rules.mk
@@ -0,0 +1,24 @@
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
23
24LAYOUTS = tkl_ansi \ No newline at end of file
diff --git a/keyboards/kineticlabs/emu/soldered/soldered.c b/keyboards/kineticlabs/emu/soldered/soldered.c
new file mode 100644
index 000000000..b99b94e08
--- /dev/null
+++ b/keyboards/kineticlabs/emu/soldered/soldered.c
@@ -0,0 +1,17 @@
1/* Copyright 2021 kb-elmo<mail@elmo.space>
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 "soldered.h"
diff --git a/keyboards/kineticlabs/emu/soldered/soldered.h b/keyboards/kineticlabs/emu/soldered/soldered.h
new file mode 100644
index 000000000..3c11c1a51
--- /dev/null
+++ b/keyboards/kineticlabs/emu/soldered/soldered.h
@@ -0,0 +1,69 @@
1/* Copyright 2021 kb-elmo<mail@elmo.space>
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
19#include "quantum.h"
20
21#define ____ KC_NO
22
23#define LAYOUT_all( \
24 k000, k002, k003, k004, k005, k006, k007, k008, k009, k011, k012, k013, k014, k015, k016, k017, \
25 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, k114, k115, k116, k117, \
26 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k214, k215, k216, k217, \
27 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k314, \
28 k400, k401, k402, k403, k404, k405, k406, k407, k408, k409, k410, k414, k416, \
29 k500, k501, k502, k505, k510, k511, k513, k514, k515, k516, k517 \
30) { \
31 { k000, ____, k002, k003, k004, k005, k006, k007, k008, k009, ____, k011, k012, k013, k014, k015, k016, k017 }, \
32 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113, k114, k115, k116, k117 }, \
33 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, ____, k214, k215, k216, k217 }, \
34 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, ____, ____, k314, ____, ____, ____ }, \
35 { k400, k401, k402, k403, k404, k405, k406, k407, k408, k409, k410, ____, ____, ____, k414, ____, k416, ____ }, \
36 { k500, k501, k502, ____, ____, k505, ____, ____, ____, ____, k510, k511, ____, k513, k514, k515, k516, k517 } \
37}
38
39#define LAYOUT_tkl_ansi( \
40 k000, k002, k003, k004, k005, k006, k007, k008, k009, k011, k012, k013, k014, k015, k016, k017, \
41 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k114, k115, k116, k117, \
42 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k214, k215, k216, k217, \
43 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k314, \
44 k400, k401, k402, k403, k404, k405, k406, k407, k408, k409, k410, k414, k416, \
45 k500, k501, k502, k505, k510, k511, k513, k514, k515, k516, k517 \
46) { \
47 { k000, ____, k002, k003, k004, k005, k006, k007, k008, k009, ____, k011, k012, k013, k014, k015, k016, k017 }, \
48 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, ____, k114, k115, k116, k117 }, \
49 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, ____, k214, k215, k216, k217 }, \
50 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, ____, ____, k314, ____, ____, ____ }, \
51 { k400, k401, k402, k403, k404, k405, k406, k407, k408, k409, k410, ____, ____, ____, k414, ____, k416, ____ }, \
52 { k500, k501, k502, ____, ____, k505, ____, ____, ____, ____, k510, k511, ____, k513, k514, k515, k516, k517 } \
53}
54
55#define LAYOUT_tkl_ansi_wkl( \
56 k000, k002, k003, k004, k005, k006, k007, k008, k009, k011, k012, k013, k014, k015, k016, k017, \
57 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k114, k115, k116, k117, \
58 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k214, k215, k216, k217, \
59 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k314, \
60 k400, k401, k402, k403, k404, k405, k406, k407, k408, k409, k410, k414, k416, \
61 k500, k501, k502, k505, k511, k513, k514, k515, k516, k517 \
62) { \
63 { k000, ____, k002, k003, k004, k005, k006, k007, k008, k009, ____, k011, k012, k013, k014, k015, k016, k017 }, \
64 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, ____, k114, k115, k116, k117 }, \
65 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, ____, k214, k215, k216, k217 }, \
66 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, ____, ____, k314, ____, ____, ____ }, \
67 { k400, k401, k402, k403, k404, k405, k406, k407, k408, k409, k410, ____, ____, ____, k414, ____, k416, ____ }, \
68 { k500, k501, k502, ____, ____, k505, ____, ____, ____, ____, ____, k511, ____, k513, k514, k515, k516, k517 } \
69}