aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-09-28 19:23:27 +0000
committerQMK Bot <hello@qmk.fm>2021-09-28 19:23:27 +0000
commit3f4ea5c31fa3c200bf4b5b585ee4da2a5ebb7bdb (patch)
treefce2d74e42932cecf61cba687cf7c83a142d6ef5
parent52127e7bdab6a8806bf5bd76379263ec59923488 (diff)
parent4a2062cc0169785a6cd51a4a5de2bda8f0f78a40 (diff)
downloadqmk_firmware-3f4ea5c31fa3c200bf4b5b585ee4da2a5ebb7bdb.tar.gz
qmk_firmware-3f4ea5c31fa3c200bf4b5b585ee4da2a5ebb7bdb.zip
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r--keyboards/owlab/suit80/ansi/ansi.c17
-rw-r--r--keyboards/owlab/suit80/ansi/ansi.h36
-rw-r--r--keyboards/owlab/suit80/ansi/config.h46
-rw-r--r--keyboards/owlab/suit80/ansi/info.json98
-rw-r--r--keyboards/owlab/suit80/ansi/keymaps/default/keymap.c41
-rw-r--r--keyboards/owlab/suit80/ansi/keymaps/via/keymap.c57
-rw-r--r--keyboards/owlab/suit80/ansi/keymaps/via/rules.mk2
-rw-r--r--keyboards/owlab/suit80/ansi/readme.md21
-rw-r--r--keyboards/owlab/suit80/ansi/rules.mk21
-rw-r--r--keyboards/owlab/suit80/iso/config.h46
-rw-r--r--keyboards/owlab/suit80/iso/info.json192
-rw-r--r--keyboards/owlab/suit80/iso/iso.c19
-rw-r--r--keyboards/owlab/suit80/iso/iso.h52
-rw-r--r--keyboards/owlab/suit80/iso/keymaps/default/keymap.c41
-rw-r--r--keyboards/owlab/suit80/iso/keymaps/via/keymap.c56
-rw-r--r--keyboards/owlab/suit80/iso/keymaps/via/rules.mk2
-rw-r--r--keyboards/owlab/suit80/iso/readme.md21
-rw-r--r--keyboards/owlab/suit80/iso/rules.mk21
18 files changed, 789 insertions, 0 deletions
diff --git a/keyboards/owlab/suit80/ansi/ansi.c b/keyboards/owlab/suit80/ansi/ansi.c
new file mode 100644
index 000000000..7e75773f1
--- /dev/null
+++ b/keyboards/owlab/suit80/ansi/ansi.c
@@ -0,0 +1,17 @@
1/*
2Copyright 2021 owlab
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#include "ansi.h"
diff --git a/keyboards/owlab/suit80/ansi/ansi.h b/keyboards/owlab/suit80/ansi/ansi.h
new file mode 100644
index 000000000..d01296f2c
--- /dev/null
+++ b/keyboards/owlab/suit80/ansi/ansi.h
@@ -0,0 +1,36 @@
1/*
2Copyright 2021 owlab
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "quantum.h"
21
22#define LAYOUT_ansi( \
23 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K114, K214, \
24 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K313, K314, K412, \
25 K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K413, K414, K510, \
26 K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, \
27 K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K511, \
28 K500, K501, K502, K504, K507, K508, K509, K512, K513, K514 \
29) { \
30 { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014 }, \
31 { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114 }, \
32 { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214 }, \
33 { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314 }, \
34 { K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K413, K414 }, \
35 { K500, K501, K502, KC_NO, K504, KC_NO, KC_NO, K507, K508, K509, K510, K511, K512, K513, K514 } \
36}
diff --git a/keyboards/owlab/suit80/ansi/config.h b/keyboards/owlab/suit80/ansi/config.h
new file mode 100644
index 000000000..02c44da21
--- /dev/null
+++ b/keyboards/owlab/suit80/ansi/config.h
@@ -0,0 +1,46 @@
1/*
2Copyright 2021 owlab
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 0x4F53 //0x4F53 OS for owl studio
24#define PRODUCT_ID 0x5355 //0x5355 SU for SUIT
25#define DEVICE_VER 0x0001
26#define MANUFACTURER OwLab
27#define PRODUCT SUIT80
28
29/* key matrix size */
30#define MATRIX_ROWS 6
31#define MATRIX_COLS 15
32
33/* Keyboard Matrix Assignments */
34#define MATRIX_ROW_PINS { E6, B0, B7, D0, D1, D2 }
35#define MATRIX_COL_PINS { D5, D4, D6, D7, B4, B5, B6, C6, C7, F4, F7, F6, F5, F1, F0 }
36
37/* COL2ROW, ROW2COL */
38#define DIODE_DIRECTION COL2ROW
39
40/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
41#define DEBOUNCE 5
42
43/* NKRO */
44#ifdef NKRO_ENABLE
45# define FORCE_NKRO
46#endif \ No newline at end of file
diff --git a/keyboards/owlab/suit80/ansi/info.json b/keyboards/owlab/suit80/ansi/info.json
new file mode 100644
index 000000000..b5833c6a6
--- /dev/null
+++ b/keyboards/owlab/suit80/ansi/info.json
@@ -0,0 +1,98 @@
1{
2 "keyboard_name": "suit80",
3 "url": "",
4 "maintainer": "Owlab",
5 "layouts": {
6 "LAYOUT_ansi": {
7 "layout": [
8 {"x":0, "y":0},
9 {"x":1.25, "y":0},
10 {"x":2.25, "y":0},
11 {"x":3.25, "y":0},
12 {"x":4.25, "y":0},
13 {"x":5.5, "y":0},
14 {"x":6.5, "y":0},
15 {"x":7.5, "y":0},
16 {"x":8.5, "y":0},
17 {"x":9.75, "y":0},
18 {"x":10.75, "y":0},
19 {"x":11.75, "y":0},
20 {"x":12.75, "y":0},
21 {"x":14, "y":0},
22 {"x":15.25, "y":0},
23 {"x":16.25, "y":0},
24 {"x":17.25, "y":0},
25 {"x":0, "y":1.25},
26 {"x":1, "y":1.25},
27 {"x":2, "y":1.25},
28 {"x":3, "y":1.25},
29 {"x":4, "y":1.25},
30 {"x":5, "y":1.25},
31 {"x":6, "y":1.25},
32 {"x":7, "y":1.25},
33 {"x":8, "y":1.25},
34 {"x":9, "y":1.25},
35 {"x":10, "y":1.25},
36 {"x":11, "y":1.25},
37 {"x":12, "y":1.25},
38 {"x":13, "y":1.25, "w":2},
39 {"x":15.25, "y":1.25},
40 {"x":16.25, "y":1.25},
41 {"x":17.25, "y":1.25},
42 {"x":0, "y":2.25, "w":1.5},
43 {"x":1.5, "y":2.25},
44 {"x":2.5, "y":2.25},
45 {"x":3.5, "y":2.25},
46 {"x":4.5, "y":2.25},
47 {"x":5.5, "y":2.25},
48 {"x":6.5, "y":2.25},
49 {"x":7.5, "y":2.25},
50 {"x":8.5, "y":2.25},
51 {"x":9.5, "y":2.25},
52 {"x":10.5, "y":2.25},
53 {"x":11.5, "y":2.25},
54 {"x":12.5, "y":2.25},
55 {"x":13.5, "y":2.25, "w":1.5},
56 {"x":15.25, "y":2.25},
57 {"x":16.25, "y":2.25},
58 {"x":17.25, "y":2.25},
59 {"x":0, "y":3.25, "w":1.75},
60 {"x":1.75, "y":3.25},
61 {"x":2.75, "y":3.25},
62 {"x":3.75, "y":3.25},
63 {"x":4.75, "y":3.25},
64 {"x":5.75, "y":3.25},
65 {"x":6.75, "y":3.25},
66 {"x":7.75, "y":3.25},
67 {"x":8.75, "y":3.25},
68 {"x":9.75, "y":3.25},
69 {"x":10.75, "y":3.25},
70 {"x":11.75, "y":3.25},
71 {"x":12.75, "y":3.25, "w":2.25},
72 {"x":0, "y":4.25, "w":2.25},
73 {"x":2.25, "y":4.25},
74 {"x":3.25, "y":4.25},
75 {"x":4.25, "y":4.25},
76 {"x":5.25, "y":4.25},
77 {"x":6.25, "y":4.25},
78 {"x":7.25, "y":4.25},
79 {"x":8.25, "y":4.25},
80 {"x":9.25, "y":4.25},
81 {"x":10.25, "y":4.25},
82 {"x":11.25, "y":4.25},
83 {"x":12.25, "y":4.25, "w":2.75},
84 {"x":16.25, "y":4.25},
85 {"x":0, "y":5.25, "w":1.5},
86 {"x":1.5, "y":5.25},
87 {"x":2.5, "y":5.25, "w":1.5},
88 {"x":4, "y":5.25, "w":7},
89 {"x":11, "y":5.25, "w":1.5},
90 {"x":12.5, "y":5.25},
91 {"x":13.5, "y":5.25, "w":1.5},
92 {"x":15.25, "y":5.25},
93 {"x":16.25, "y":5.25},
94 {"x":17.25, "y":5.25}
95 ]
96 }
97 }
98} \ No newline at end of file
diff --git a/keyboards/owlab/suit80/ansi/keymaps/default/keymap.c b/keyboards/owlab/suit80/ansi/keymaps/default/keymap.c
new file mode 100644
index 000000000..e9ab5f323
--- /dev/null
+++ b/keyboards/owlab/suit80/ansi/keymaps/default/keymap.c
@@ -0,0 +1,41 @@
1/*
2Copyright 2021 owlab
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#include QMK_KEYBOARD_H
18
19
20
21const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
22
23
24
25 [0] = LAYOUT_ansi(
26 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_F13, KC_PSCR, KC_SLCK, KC_PAUS,
27 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,
28 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_END, KC_PGDN,
29 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
30 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP,
31 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_LEFT, KC_DOWN, KC_RIGHT
32 ),
33 [1] = LAYOUT_ansi(
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, 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, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
36 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, RESET, KC_TRNS, KC_TRNS,
37 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,
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,
39 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
40 )
41};
diff --git a/keyboards/owlab/suit80/ansi/keymaps/via/keymap.c b/keyboards/owlab/suit80/ansi/keymaps/via/keymap.c
new file mode 100644
index 000000000..d438aea40
--- /dev/null
+++ b/keyboards/owlab/suit80/ansi/keymaps/via/keymap.c
@@ -0,0 +1,57 @@
1/*
2Copyright 2021 owlab
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19
20const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
21
22
23 [0] = LAYOUT_ansi(
24 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_F13, KC_PSCR, KC_SLCK, KC_PAUS,
25 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,
26 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,
27 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,
28 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,
29 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_LEFT, KC_DOWN, KC_RIGHT
30 ),
31 [1] = LAYOUT_ansi(
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, 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, KC_TRNS, RESET, 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, KC_TRNS, KC_TRNS,
36 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,
37 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
38 ),
39
40 [2] = LAYOUT_ansi(
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, 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, 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, KC_TRNS, KC_TRNS,
45 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,
46 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
47 ),
48
49 [3] = LAYOUT_ansi(
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, 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, 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, KC_TRNS, KC_TRNS,
54 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,
55 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
56 )
57}; \ No newline at end of file
diff --git a/keyboards/owlab/suit80/ansi/keymaps/via/rules.mk b/keyboards/owlab/suit80/ansi/keymaps/via/rules.mk
new file mode 100644
index 000000000..36b7ba9cb
--- /dev/null
+++ b/keyboards/owlab/suit80/ansi/keymaps/via/rules.mk
@@ -0,0 +1,2 @@
1VIA_ENABLE = yes
2LTO_ENABLE = yes
diff --git a/keyboards/owlab/suit80/ansi/readme.md b/keyboards/owlab/suit80/ansi/readme.md
new file mode 100644
index 000000000..7d10fe1a5
--- /dev/null
+++ b/keyboards/owlab/suit80/ansi/readme.md
@@ -0,0 +1,21 @@
1# Suit80 - ANSI PCB
2
3![suit80](https://i.imgur.com/0QN23oc.png)
4
5A 80% made by Owlab.
6
7* Keyboard Maintainer: [owlab](https://github.com/owlab-git)
8* Hardware Supported: Suit80 ANSI PCB
9* Hardware Availability: Ended groupbuy: https://www.zfrontier.com/app/flow/2Q1YEKykXmYZ
10
11Make example for this keyboard (after setting up your build environment):
12
13 make owlab/suit80/ansi:default
14
15Flashing example for this keyboard:
16
17 make owlab/suit80/ansi: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/owlab/suit80/ansi/rules.mk b/keyboards/owlab/suit80/ansi/rules.mk
new file mode 100644
index 000000000..001898bf4
--- /dev/null
+++ b/keyboards/owlab/suit80/ansi/rules.mk
@@ -0,0 +1,21 @@
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 = yes # Enable Bootmagic Lite
11MOUSEKEY_ENABLE = yes # 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 = yes # USB Nkey Rollover
19BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21AUDIO_ENABLE = no # Audio output \ No newline at end of file
diff --git a/keyboards/owlab/suit80/iso/config.h b/keyboards/owlab/suit80/iso/config.h
new file mode 100644
index 000000000..22968bac1
--- /dev/null
+++ b/keyboards/owlab/suit80/iso/config.h
@@ -0,0 +1,46 @@
1/*
2Copyright 2021 owlab
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 0x4F53 // 0x4F53 OS for owl studio
24#define PRODUCT_ID 0x5349 //0x5355 SI for SUIT ISO
25#define DEVICE_VER 0x0001
26#define MANUFACTURER OwLab
27#define PRODUCT SUIT80 ISO
28
29/* key matrix size */
30#define MATRIX_ROWS 6
31#define MATRIX_COLS 15
32
33/* key matrix pins */
34#define MATRIX_ROW_PINS { E6, B0, B7, D0, D1, D2 }
35#define MATRIX_COL_PINS { D5, D4, D6, D7, B4, B5, B6, C6, C7, F4, F7, F6, F5, F1, F0 }
36
37/* COL2ROW, ROW2COL */
38#define DIODE_DIRECTION COL2ROW
39
40/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
41#define DEBOUNCE 5
42
43/* NKRO */
44#ifdef NKRO_ENABLE
45# define FORCE_NKRO
46#endif
diff --git a/keyboards/owlab/suit80/iso/info.json b/keyboards/owlab/suit80/iso/info.json
new file mode 100644
index 000000000..7c911fe36
--- /dev/null
+++ b/keyboards/owlab/suit80/iso/info.json
@@ -0,0 +1,192 @@
1{
2 "keyboard_name": "suit80",
3 "url": "",
4 "maintainer": "Owlab",
5 "layouts": {
6 "LAYOUT_all": {
7 "layout": [
8 {"x":0, "y":0},
9 {"x":1.25, "y":0},
10 {"x":2.25, "y":0},
11 {"x":3.25, "y":0},
12 {"x":4.25, "y":0},
13 {"x":5.5, "y":0},
14 {"x":6.5, "y":0},
15 {"x":7.5, "y":0},
16 {"x":8.5, "y":0},
17 {"x":9.75, "y":0},
18 {"x":10.75, "y":0},
19 {"x":11.75, "y":0},
20 {"x":12.75, "y":0},
21 {"x":14, "y":0},
22 {"x":15.25, "y":0},
23 {"x":16.25, "y":0},
24 {"x":17.25, "y":0},
25 {"x":0, "y":1.25},
26 {"x":1, "y":1.25},
27 {"x":2, "y":1.25},
28 {"x":3, "y":1.25},
29 {"x":4, "y":1.25},
30 {"x":5, "y":1.25},
31 {"x":6, "y":1.25},
32 {"x":7, "y":1.25},
33 {"x":8, "y":1.25},
34 {"x":9, "y":1.25},
35 {"x":10, "y":1.25},
36 {"x":11, "y":1.25},
37 {"x":12, "y":1.25},
38 {"x":13, "y":1.25},
39 {"x":14, "y":1.25},
40 {"x":15.25, "y":1.25},
41 {"x":16.25, "y":1.25},
42 {"x":17.25, "y":1.25},
43 {"x":0, "y":2.25, "w":1.5},
44 {"x":1.5, "y":2.25},
45 {"x":2.5, "y":2.25},
46 {"x":3.5, "y":2.25},
47 {"x":4.5, "y":2.25},
48 {"x":5.5, "y":2.25},
49 {"x":6.5, "y":2.25},
50 {"x":7.5, "y":2.25},
51 {"x":8.5, "y":2.25},
52 {"x":9.5, "y":2.25},
53 {"x":10.5, "y":2.25},
54 {"x":11.5, "y":2.25},
55 {"x":12.5, "y":2.25},
56 {"x":15.25, "y":2.25},
57 {"x":16.25, "y":2.25},
58 {"x":17.25, "y":2.25},
59 {"x":0, "y":3.25, "w":1.75},
60 {"x":1.75, "y":3.25},
61 {"x":2.75, "y":3.25},
62 {"x":3.75, "y":3.25},
63 {"x":4.75, "y":3.25},
64 {"x":5.75, "y":3.25},
65 {"x":6.75, "y":3.25},
66 {"x":7.75, "y":3.25},
67 {"x":8.75, "y":3.25},
68 {"x":9.75, "y":3.25},
69 {"x":10.75, "y":3.25},
70 {"x":11.75, "y":3.25},
71 {"x":12.75, "y":3.25},
72 {"x":13.75, "y":2.25, "w":1.25, "h":2},
73 {"x":0, "y":4.25, "w":1.25},
74 {"x":1.25, "y":4.25},
75 {"x":2.25, "y":4.25},
76 {"x":3.25, "y":4.25},
77 {"x":4.25, "y":4.25},
78 {"x":5.25, "y":4.25},
79 {"x":6.25, "y":4.25},
80 {"x":7.25, "y":4.25},
81 {"x":8.25, "y":4.25},
82 {"x":9.25, "y":4.25},
83 {"x":10.25, "y":4.25},
84 {"x":11.25, "y":4.25},
85 {"x":12.25, "y":4.25, "w":2.75},
86 {"x":16.25, "y":4.25},
87 {"x":0, "y":5.25, "w":1.5},
88 {"x":1.5, "y":5.25},
89 {"x":2.5, "y":5.25, "w":1.5},
90 {"x":4, "y":5.25, "w":7},
91 {"x":11, "y":5.25, "w":1.5},
92 {"x":12.5, "y":5.25},
93 {"x":13.5, "y":5.25, "w":1.5},
94 {"x":15.25, "y":5.25},
95 {"x":16.25, "y":5.25},
96 {"x":17.25, "y":5.25}
97 ]
98 },
99 "LAYOUT_iso": {
100 "layout": [
101 {"x":0, "y":0},
102 {"x":1.25, "y":0},
103 {"x":2.25, "y":0},
104 {"x":3.25, "y":0},
105 {"x":4.25, "y":0},
106 {"x":5.5, "y":0},
107 {"x":6.5, "y":0},
108 {"x":7.5, "y":0},
109 {"x":8.5, "y":0},
110 {"x":9.75, "y":0},
111 {"x":10.75, "y":0},
112 {"x":11.75, "y":0},
113 {"x":12.75, "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.25},
119 {"x":1, "y":1.25},
120 {"x":2, "y":1.25},
121 {"x":3, "y":1.25},
122 {"x":4, "y":1.25},
123 {"x":5, "y":1.25},
124 {"x":6, "y":1.25},
125 {"x":7, "y":1.25},
126 {"x":8, "y":1.25},
127 {"x":9, "y":1.25},
128 {"x":10, "y":1.25},
129 {"x":11, "y":1.25},
130 {"x":12, "y":1.25},
131 {"x":13, "y":1.25, "w":2},
132 {"x":15.25, "y":1.25},
133 {"x":16.25, "y":1.25},
134 {"x":17.25, "y":1.25},
135 {"x":0, "y":2.25, "w":1.5},
136 {"x":1.5, "y":2.25},
137 {"x":2.5, "y":2.25},
138 {"x":3.5, "y":2.25},
139 {"x":4.5, "y":2.25},
140 {"x":5.5, "y":2.25},
141 {"x":6.5, "y":2.25},
142 {"x":7.5, "y":2.25},
143 {"x":8.5, "y":2.25},
144 {"x":9.5, "y":2.25},
145 {"x":10.5, "y":2.25},
146 {"x":11.5, "y":2.25},
147 {"x":12.5, "y":2.25},
148 {"x":15.25, "y":2.25},
149 {"x":16.25, "y":2.25},
150 {"x":17.25, "y":2.25},
151 {"x":0, "y":3.25, "w":1.75},
152 {"x":1.75, "y":3.25},
153 {"x":2.75, "y":3.25},
154 {"x":3.75, "y":3.25},
155 {"x":4.75, "y":3.25},
156 {"x":5.75, "y":3.25},
157 {"x":6.75, "y":3.25},
158 {"x":7.75, "y":3.25},
159 {"x":8.75, "y":3.25},
160 {"x":9.75, "y":3.25},
161 {"x":10.75, "y":3.25},
162 {"x":11.75, "y":3.25},
163 {"x":12.75, "y":3.25},
164 {"x":13.75, "y":2.25, "w":1.25, "h":2},
165 {"x":0, "y":4.25, "w":1.25},
166 {"x":1.25, "y":4.25},
167 {"x":2.25, "y":4.25},
168 {"x":3.25, "y":4.25},
169 {"x":4.25, "y":4.25},
170 {"x":5.25, "y":4.25},
171 {"x":6.25, "y":4.25},
172 {"x":7.25, "y":4.25},
173 {"x":8.25, "y":4.25},
174 {"x":9.25, "y":4.25},
175 {"x":10.25, "y":4.25},
176 {"x":11.25, "y":4.25},
177 {"x":12.25, "y":4.25, "w":2.75},
178 {"x":16.25, "y":4.25},
179 {"x":0, "y":5.25, "w":1.5},
180 {"x":1.5, "y":5.25},
181 {"x":2.5, "y":5.25, "w":1.5},
182 {"x":4, "y":5.25, "w":7},
183 {"x":11, "y":5.25, "w":1.5},
184 {"x":12.5, "y":5.25},
185 {"x":13.5, "y":5.25, "w":1.5},
186 {"x":15.25, "y":5.25},
187 {"x":16.25, "y":5.25},
188 {"x":17.25, "y":5.25}
189 ]
190 }
191 }
192} \ No newline at end of file
diff --git a/keyboards/owlab/suit80/iso/iso.c b/keyboards/owlab/suit80/iso/iso.c
new file mode 100644
index 000000000..e8f326d37
--- /dev/null
+++ b/keyboards/owlab/suit80/iso/iso.c
@@ -0,0 +1,19 @@
1
2
3/*
4Copyright 2021 owlab
5
6This program is free software: you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation, either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program. If not, see <http://www.gnu.org/licenses/>.
18*/
19#include "iso.h"
diff --git a/keyboards/owlab/suit80/iso/iso.h b/keyboards/owlab/suit80/iso/iso.h
new file mode 100644
index 000000000..77cc55b45
--- /dev/null
+++ b/keyboards/owlab/suit80/iso/iso.h
@@ -0,0 +1,52 @@
1/*
2Copyright 2021 owlab
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "quantum.h"
21
22#define LAYOUT_all( \
23 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K114, K214, \
24 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K213, K113, K313, K314, K412, \
25 K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K413, K414, K510, \
26 K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K506, K312, \
27 K400, K503, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K511, \
28 K500, K501, K502, K504, K507, K508, K509, K512, K513, K514 \
29) { \
30 { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014 }, \
31 { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114 }, \
32 { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214 }, \
33 { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314 }, \
34 { K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K413, K414 }, \
35 { K500, K501, K502, K503, K504, KC_NO, K506, K507, K508, K509, K510, K511, K512, K513, K514 } \
36}
37
38#define LAYOUT_iso( \
39 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K114, K214, \
40 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K313, K314, K412, \
41 K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K413, K414, K510, \
42 K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K506, K312, \
43 K400, K503, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K511, \
44 K500, K501, K502, K504, K507, K508, K509, K512, K513, K514 \
45) { \
46 { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014 }, \
47 { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K113, K114 }, \
48 { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, KC_NO, K214 }, \
49 { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314 }, \
50 { K400, K401, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K412, K413, K414 }, \
51 { K500, K501, K502, K503, K504, KC_NO, K506, K507, K508, K509, K510, K511, K512, K513, K514 } \
52} \ No newline at end of file
diff --git a/keyboards/owlab/suit80/iso/keymaps/default/keymap.c b/keyboards/owlab/suit80/iso/keymaps/default/keymap.c
new file mode 100644
index 000000000..84cfcc4ad
--- /dev/null
+++ b/keyboards/owlab/suit80/iso/keymaps/default/keymap.c
@@ -0,0 +1,41 @@
1/*
2Copyright 2021 owlab
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#include QMK_KEYBOARD_H
18
19
20
21const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
22
23 [0] = LAYOUT_iso(
24 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_F13, KC_PSCR, KC_SLCK, KC_PAUS,
25 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,
26 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_DEL, KC_END, KC_PGDN,
27 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_NUHS, KC_ENT,
28 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,
29 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_LEFT, KC_DOWN, KC_RIGHT
30 ),
31 [1] = LAYOUT_iso(
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, 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, RESET, 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, KC_TRNS, KC_TRNS, KC_TRNS,
36 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,
37 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
38 )
39};
40
41
diff --git a/keyboards/owlab/suit80/iso/keymaps/via/keymap.c b/keyboards/owlab/suit80/iso/keymaps/via/keymap.c
new file mode 100644
index 000000000..d392b797e
--- /dev/null
+++ b/keyboards/owlab/suit80/iso/keymaps/via/keymap.c
@@ -0,0 +1,56 @@
1/*
2Copyright 2021 owlab
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#include QMK_KEYBOARD_H
19
20
21
22const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
23
24 [0] = LAYOUT_all(
25 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_F13, KC_PSCR, KC_SLCK, KC_PAUS,
26 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_BSLS, KC_BSPC, KC_INS, KC_HOME, KC_PGUP,
27 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_DEL, KC_END, KC_PGDN,
28 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_NUHS, KC_ENT,
29 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,
30 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_LEFT, KC_DOWN, KC_RIGHT
31 ),
32 [1] = LAYOUT_all(
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, 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, 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, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS,
36 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,
37 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,
38 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
39 ),
40 [1] = LAYOUT_all(
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, 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, 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, KC_TRNS, KC_TRNS, KC_TRNS,
45 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,
46 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
47 ),
48 [1] = LAYOUT_all(
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, 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, 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, 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, KC_TRNS, KC_TRNS, KC_TRNS,
54 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
55 )
56};
diff --git a/keyboards/owlab/suit80/iso/keymaps/via/rules.mk b/keyboards/owlab/suit80/iso/keymaps/via/rules.mk
new file mode 100644
index 000000000..36b7ba9cb
--- /dev/null
+++ b/keyboards/owlab/suit80/iso/keymaps/via/rules.mk
@@ -0,0 +1,2 @@
1VIA_ENABLE = yes
2LTO_ENABLE = yes
diff --git a/keyboards/owlab/suit80/iso/readme.md b/keyboards/owlab/suit80/iso/readme.md
new file mode 100644
index 000000000..c16dfa255
--- /dev/null
+++ b/keyboards/owlab/suit80/iso/readme.md
@@ -0,0 +1,21 @@
1# Suit80 - ISO PCB
2
3![suit80](https://i.imgur.com/wTUPZFB.jpg)
4
5A 80% made by Owlab.
6
7* Keyboard Maintainer: [owlab](https://github.com/owlab-git)
8* Hardware Supported: Suit80 ISO PCB
9* Hardware Availability: Ended groupbuy: https://www.zfrontier.com/app/flow/2Q1YEKykXmYZ
10
11Make example for this keyboard (after setting up your build environment):
12
13 make owlab/suit80/iso:default
14
15Flashing example for this keyboard:
16
17 make owlab/suit80/iso: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/owlab/suit80/iso/rules.mk b/keyboards/owlab/suit80/iso/rules.mk
new file mode 100644
index 000000000..001898bf4
--- /dev/null
+++ b/keyboards/owlab/suit80/iso/rules.mk
@@ -0,0 +1,21 @@
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 = yes # Enable Bootmagic Lite
11MOUSEKEY_ENABLE = yes # 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 = yes # USB Nkey Rollover
19BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21AUDIO_ENABLE = no # Audio output \ No newline at end of file