aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/exclusive/e85/config.h209
-rw-r--r--keyboards/exclusive/e85/e85.c17
-rw-r--r--keyboards/exclusive/e85/e85.h87
-rw-r--r--keyboards/exclusive/e85/info.json293
-rw-r--r--keyboards/exclusive/e85/keymaps/default/keymap.c37
-rw-r--r--keyboards/exclusive/e85/keymaps/standard/keymap.c37
-rw-r--r--keyboards/exclusive/e85/keymaps/tsangan/keymap.c37
-rw-r--r--keyboards/exclusive/e85/keymaps/via/config.h1
-rw-r--r--keyboards/exclusive/e85/keymaps/via/keymap.c45
-rw-r--r--keyboards/exclusive/e85/keymaps/via/rules.mk3
-rw-r--r--keyboards/exclusive/e85/readme.md17
-rw-r--r--keyboards/exclusive/e85/rules.mk32
-rw-r--r--keyboards/exclusive/readme.md1
13 files changed, 816 insertions, 0 deletions
diff --git a/keyboards/exclusive/e85/config.h b/keyboards/exclusive/e85/config.h
new file mode 100644
index 000000000..d122c9361
--- /dev/null
+++ b/keyboards/exclusive/e85/config.h
@@ -0,0 +1,209 @@
1/*
2Copyright 2020 MechMerlin
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 0x4558 // EX
24#define PRODUCT_ID 0xE851 // E8.5 Version 1
25#define DEVICE_VER 0x0001
26#define MANUFACTURER Exclusive
27#define PRODUCT E8.5 Hotswap PCB
28#define DESCRIPTION A custom TKL keyboard
29
30/* key matrix size */
31#define MATRIX_ROWS 11
32#define MATRIX_COLS 9
33
34/*
35 * Keyboard Matrix Assignments
36 *
37 * Change this to how you wired your keyboard
38 * COLS: AVR pins used for columns, left to right
39 * ROWS: AVR pins used for rows, top to bottom
40 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
41 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
42 *
43 */
44
45// 0 1 2 3 4 5 6 7 8 9 A
46#define MATRIX_ROW_PINS { E6, B0, B1, B2, B3, B7, F7, F6, F5, F4, F1 }
47#define MATRIX_COL_PINS { D0, D1, D2, D3, D5, D4, D6, D7, B4 }
48#define UNUSED_PINS
49
50/* COL2ROW, ROW2COL*/
51#define DIODE_DIRECTION ROW2COL
52
53/*
54 * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN.
55 */
56#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6
57
58// #define BACKLIGHT_PIN B6
59// #define BACKLIGHT_BREATHING
60// #define BACKLIGHT_LEVELS 6
61
62#define RGB_DI_PIN E2
63#ifdef RGB_DI_PIN
64 #define RGBLED_NUM 18
65 #define RGBLIGHT_HUE_STEP 8
66 #define RGBLIGHT_SAT_STEP 8
67 #define RGBLIGHT_VAL_STEP 8
68 #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
69 #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
70/*== all animations enable ==*/
71 #define RGBLIGHT_ANIMATIONS
72#endif
73
74/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
75#define DEBOUNCE 5
76
77/* define if matrix has ghost (lacks anti-ghosting diodes) */
78//#define MATRIX_HAS_GHOST
79
80/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
81#define LOCKING_SUPPORT_ENABLE
82/* Locking resynchronize hack */
83#define LOCKING_RESYNC_ENABLE
84
85/* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
86 * This is userful for the Windows task manager shortcut (ctrl+shift+esc).
87 */
88// #define GRAVE_ESC_CTRL_OVERRIDE
89
90/*
91 * Force NKRO
92 *
93 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
94 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
95 * makefile for this to work.)
96 *
97 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
98 * until the next keyboard reset.
99 *
100 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
101 * fully operational during normal computer usage.
102 *
103 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
104 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
105 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
106 * power-up.
107 *
108 */
109//#define FORCE_NKRO
110
111/*
112 * Magic Key Options
113 *
114 * Magic keys are hotkey commands that allow control over firmware functions of
115 * the keyboard. They are best used in combination with the HID Listen program,
116 * found here: https://www.pjrc.com/teensy/hid_listen.html
117 *
118 * The options below allow the magic key functionality to be changed. This is
119 * useful if your keyboard/keypad is missing keys and you want magic key support.
120 *
121 */
122
123/* key combination for magic key command */
124/* defined by default; to change, uncomment and set to the combination you want */
125// #define IS_COMMAND() (get_mods() == MOD_MASK_SHIFT)
126
127/* control how magic key switches layers */
128//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
129//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
130//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
131
132/* override magic key keymap */
133//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
134//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
135//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
136//#define MAGIC_KEY_HELP H
137//#define MAGIC_KEY_HELP_ALT SLASH
138//#define MAGIC_KEY_DEBUG D
139//#define MAGIC_KEY_DEBUG_MATRIX X
140//#define MAGIC_KEY_DEBUG_KBD K
141//#define MAGIC_KEY_DEBUG_MOUSE M
142//#define MAGIC_KEY_VERSION V
143//#define MAGIC_KEY_STATUS S
144//#define MAGIC_KEY_CONSOLE C
145//#define MAGIC_KEY_LAYER0 0
146//#define MAGIC_KEY_LAYER0_ALT GRAVE
147//#define MAGIC_KEY_LAYER1 1
148//#define MAGIC_KEY_LAYER2 2
149//#define MAGIC_KEY_LAYER3 3
150//#define MAGIC_KEY_LAYER4 4
151//#define MAGIC_KEY_LAYER5 5
152//#define MAGIC_KEY_LAYER6 6
153//#define MAGIC_KEY_LAYER7 7
154//#define MAGIC_KEY_LAYER8 8
155//#define MAGIC_KEY_LAYER9 9
156//#define MAGIC_KEY_BOOTLOADER B
157//#define MAGIC_KEY_BOOTLOADER_ALT ESC
158//#define MAGIC_KEY_LOCK CAPS
159//#define MAGIC_KEY_EEPROM E
160//#define MAGIC_KEY_EEPROM_CLEAR BSPACE
161//#define MAGIC_KEY_NKRO N
162//#define MAGIC_KEY_SLEEP_LED Z
163
164/*
165 * Feature disable options
166 * These options are also useful to firmware size reduction.
167 */
168
169/* disable debug print */
170//#define NO_DEBUG
171
172/* disable print */
173//#define NO_PRINT
174
175/* disable action features */
176//#define NO_ACTION_LAYER
177//#define NO_ACTION_TAPPING
178//#define NO_ACTION_ONESHOT
179
180/* disable these deprecated features by default */
181#define NO_ACTION_MACRO
182#define NO_ACTION_FUNCTION
183
184/*
185 * MIDI options
186 */
187
188/* Prevent use of disabled MIDI features in the keymap */
189//#define MIDI_ENABLE_STRICT 1
190
191/* enable basic MIDI features:
192 - MIDI notes can be sent when in Music mode is on
193*/
194//#define MIDI_BASIC
195
196/* enable advanced MIDI features:
197 - MIDI notes can be added to the keymap
198 - Octave shift and transpose
199 - Virtual sustain, portamento, and modulation wheel
200 - etc.
201*/
202//#define MIDI_ADVANCED
203
204/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
205//#define MIDI_TONE_KEYCODE_OCTAVES 1
206
207/* Bootmagic Lite key configuration */
208// #define BOOTMAGIC_LITE_ROW 0
209// #define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/exclusive/e85/e85.c b/keyboards/exclusive/e85/e85.c
new file mode 100644
index 000000000..20cd0e03f
--- /dev/null
+++ b/keyboards/exclusive/e85/e85.c
@@ -0,0 +1,17 @@
1/* Copyright 2020 MechMerlin
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 "e85.h"
diff --git a/keyboards/exclusive/e85/e85.h b/keyboards/exclusive/e85/e85.h
new file mode 100644
index 000000000..19b2dff55
--- /dev/null
+++ b/keyboards/exclusive/e85/e85.h
@@ -0,0 +1,87 @@
1/* Copyright 2020 MechMerlin
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// This is the layout for the soldered PCB
24#define LAYOUT_all( \
25 K00, K01, K02, K03, K04, K05, K06, K07, K08, K68, K67, K65, K64, K63, K66, K62, K61, \
26 K10, K11, K12, K13, K14, K15, K16, K17, K18, K78, K70, K77, K75, K74, K73, K76, K72, K71, \
27 K20, K21, K22, K23, K24, K25, K26, K27, K28, K88, K87, K85, K84, K94, K86, K82, K81, \
28 K30, K31, K32, K33, K34, K35, K36, K37, K38, K98, K97, K95, K83, \
29 K40, K41, K42, K43, K44, K45, K46, K47, K48, KA8, KA7, KA5, KA4, KA3, K92, \
30 K50, K51, K52, K56, K58, K57, K54, K53, KA6, KA2, KA1 \
31) { \
32 { K00, K01, K02, K03, K04, K05, K06, K07, K08 }, \
33 { K10, K11, K12, K13, K14, K15, K16, K17, K18 }, \
34 { K20, K21, K22, K23, K24, K25, K26, K27, K28 }, \
35 { K30, K31, K32, K33, K34, K35, K36, K37, K38 }, \
36 { K40, K41, K42, K43, K44, K45, K46, K47, K48 }, \
37 { K50, K51, K52, K53, K54, KC_NO, K56, K57, K58 }, \
38 { KC_NO, K61, K62, K63, K64, K65, K66, K67, K68 }, \
39 { K70, K71, K72, K73, K74, K75, K76, K77, K78 }, \
40 { KC_NO, K81, K82, K83, K84, K85, K86, K87, K88 }, \
41 { KC_NO, KC_NO, K92, KC_NO, K94, K95, KC_NO, K97, K98 }, \
42 { KC_NO, KA1, KA2, KA3, KA4, KA5, KA6, KA7, KA8 }, \
43}
44
45// This is the layout for one hotswap PCB and can also be used on the soldered edition
46#define LAYOUT_ansi_standard( \
47 K00, K01, K02, K03, K04, K05, K06, K07, K08, K68, K67, K65, K64, K63, K66, K62, K61, \
48 K10, K11, K12, K13, K14, K15, K16, K17, K18, K78, K70, K77, K75, K73, K76, K72, K71, \
49 K20, K21, K22, K23, K24, K25, K26, K27, K28, K88, K87, K85, K84, K83, K86, K82, K81, \
50 K30, K31, K32, K33, K34, K35, K36, K37, K38, K98, K97, K95, K93, \
51 K40, K42, K43, K44, K45, K46, K47, K48, KA8, KA7, KA5, KA4, K92, \
52 K50, K51, K52, K56, K58, K57, K54, K53, KA6, KA2, KA1 \
53) { \
54 { K00, K01, K02, K03, K04, K05, K06, K07, K08 }, \
55 { K10, K11, K12, K13, K14, K15, K16, K17, K18 }, \
56 { K20, K21, K22, K23, K24, K25, K26, K27, K28 }, \
57 { K30, K31, K32, K33, K34, K35, K36, K37, K38 }, \
58 { K40, KC_NO, K42, K43, K44, K45, K46, K47, K48 }, \
59 { K50, K51, K52, K53, K54, KC_NO, K56, K57, K58 }, \
60 { KC_NO, K61, K62, K63, K64, K65, K66, K67, K68 }, \
61 { K70, K71, K72, K73, KC_NO, K75, K76, K77, K78 }, \
62 { KC_NO, K81, K82, K83, K84, K85, K86, K87, K88 }, \
63 { KC_NO, KC_NO, K92, K93, KC_NO, K95, KC_NO, K97, K98 }, \
64 { KC_NO, KA1, KA2, KC_NO, KA4, KA5, KA6, KA7, KA8 }, \
65}
66
67// This is the layout for one hotswap PCB and can also be used on the soldered edition
68#define LAYOUT_ansi_tsangan( \
69 K00, K01, K02, K03, K04, K05, K06, K07, K08, K68, K67, K65, K64, K63, K66, K62, K61, \
70 K10, K11, K12, K13, K14, K15, K16, K17, K18, K78, K70, K77, K75, K73, K76, K72, K71, \
71 K20, K21, K22, K23, K24, K25, K26, K27, K28, K88, K87, K85, K84, K83, K86, K82, K81, \
72 K30, K31, K32, K33, K34, K35, K36, K37, K38, K98, K97, K95, K93, \
73 K40, K42, K43, K44, K45, K46, K47, K48, KA8, KA7, KA5, KA4, K92, \
74 K50, K51, K52, K56, K57, K54, K53, KA6, KA2, KA1 \
75) { \
76 { K00, K01, K02, K03, K04, K05, K06, K07, K08 }, \
77 { K10, K11, K12, K13, K14, K15, K16, K17, K18 }, \
78 { K20, K21, K22, K23, K24, K25, K26, K27, K28 }, \
79 { K30, K31, K32, K33, K34, K35, K36, K37, K38 }, \
80 { K40, KC_NO, K42, K43, K44, K45, K46, K47, K48 }, \
81 { K50, K51, K52, K53, K54, KC_NO, K56, K57, KC_NO }, \
82 { KC_NO, K61, K62, K63, K64, K65, K66, K67, K68 }, \
83 { K70, K71, K72, K73, KC_NO, K75, K76, K77, K78 }, \
84 { KC_NO, K81, K82, K83, K84, K85, K86, K87, K88 }, \
85 { KC_NO, KC_NO, K92, K93, KC_NO, K95, KC_NO, K97, K98 }, \
86 { KC_NO, KA1, KA2, KC_NO, KA4, KA5, KA6, KA7, KA8 }, \
87}
diff --git a/keyboards/exclusive/e85/info.json b/keyboards/exclusive/e85/info.json
new file mode 100644
index 000000000..cc888a157
--- /dev/null
+++ b/keyboards/exclusive/e85/info.json
@@ -0,0 +1,293 @@
1{
2 "keyboard_name": "Exclusive E8.5 TKL",
3 "url": "",
4 "maintainer": "qmk",
5 "width": 18.25,
6 "height": 6.5,
7 "layouts": {
8 "LAYOUT_all": {
9 "key_count": 91,
10 "layout": [
11 {"label":"K00 (E6,D0)", "x":0, "y":0},
12 {"label":"K01 (E6,D1)", "x":1.25, "y":0},
13 {"label":"K02 (E6,D2)", "x":2.25, "y":0},
14 {"label":"K03 (E6,D3)", "x":3.25, "y":0},
15 {"label":"K04 (E6,D5)", "x":4.25, "y":0},
16 {"label":"K05 (E6,D4)", "x":5.5, "y":0},
17 {"label":"K06 (E6,D6)", "x":6.5, "y":0},
18 {"label":"K07 (E6,D7)", "x":7.5, "y":0},
19 {"label":"K08 (E6,B4)", "x":8.5, "y":0},
20 {"label":"K68 (F7,B4)", "x":9.75, "y":0},
21 {"label":"K67 (F7,D7)", "x":10.75, "y":0},
22 {"label":"K65 (F7,D4)", "x":11.75, "y":0},
23 {"label":"K64 (F7,D5)", "x":12.75, "y":0},
24 {"label":"K63 (F7,D3)", "x":14, "y":0},
25 {"label":"K66 (F7,D6)", "x":15.25, "y":0},
26 {"label":"K62 (F7,D2)", "x":16.25, "y":0},
27 {"label":"K61 (F7,D1)", "x":17.25, "y":0},
28 {"label":"K10 (B0,D0)", "x":0, "y":1.5},
29 {"label":"K11 (B0,D1)", "x":1, "y":1.5},
30 {"label":"K12 (B0,D2)", "x":2, "y":1.5},
31 {"label":"K13 (B0,D3)", "x":3, "y":1.5},
32 {"label":"K14 (B0,D5)", "x":4, "y":1.5},
33 {"label":"K15 (B0,D4)", "x":5, "y":1.5},
34 {"label":"K16 (B0,D6)", "x":6, "y":1.5},
35 {"label":"K17 (B0,D7)", "x":7, "y":1.5},
36 {"label":"K18 (B0,B4)", "x":8, "y":1.5},
37 {"label":"K78 (F6,B4)", "x":9, "y":1.5},
38 {"label":"K70 (F6,D0)", "x":10, "y":1.5},
39 {"label":"K77 (F6,D7)", "x":11, "y":1.5},
40 {"label":"K75 (F6,D4)", "x":12, "y":1.5},
41 {"label":"K74 (F6,D5)", "x":13, "y":1.5},
42 {"label":"K73 (F6,D3)", "x":14, "y":1.5},
43 {"label":"K76 (F6,D6)", "x":15.25, "y":1.5},
44 {"label":"K72 (F6,D2)", "x":16.25, "y":1.5},
45 {"label":"K71 (F6,D1)", "x":17.25, "y":1.5},
46 {"label":"K20 (B1,D0)", "x":0, "y":2.5, "w":1.5},
47 {"label":"K21 (B1,D1)", "x":1.5, "y":2.5},
48 {"label":"K22 (B1,D2)", "x":2.5, "y":2.5},
49 {"label":"K23 (B1,D3)", "x":3.5, "y":2.5},
50 {"label":"K24 (B1,D5)", "x":4.5, "y":2.5},
51 {"label":"K25 (B1,D4)", "x":5.5, "y":2.5},
52 {"label":"K26 (B1,D6)", "x":6.5, "y":2.5},
53 {"label":"K27 (B1,D7)", "x":7.5, "y":2.5},
54 {"label":"K28 (B1,B4)", "x":8.5, "y":2.5},
55 {"label":"K88 (F5,B4)", "x":9.5, "y":2.5},
56 {"label":"K87 (F5,D7)", "x":10.5, "y":2.5},
57 {"label":"K85 (F5,D4)", "x":11.5, "y":2.5},
58 {"label":"K84 (F5,D5)", "x":12.5, "y":2.5},
59 {"label":"K94 (F4,D5)", "x":13.5, "y":2.5, "w":1.5},
60 {"label":"K86 (F5,D6)", "x":15.25, "y":2.5},
61 {"label":"K82 (F5,D2)", "x":16.25, "y":2.5},
62 {"label":"K81 (F5,D1)", "x":17.25, "y":2.5},
63 {"label":"K30 (B2,D0)", "x":0, "y":3.5, "w":1.75},
64 {"label":"K31 (B2,D1)", "x":1.75, "y":3.5},
65 {"label":"K32 (B2,D2)", "x":2.75, "y":3.5},
66 {"label":"K33 (B2,D3)", "x":3.75, "y":3.5},
67 {"label":"K34 (B2,D5)", "x":4.75, "y":3.5},
68 {"label":"K35 (B2,D4)", "x":5.75, "y":3.5},
69 {"label":"K36 (B2,D6)", "x":6.75, "y":3.5},
70 {"label":"K37 (B2,D7)", "x":7.75, "y":3.5},
71 {"label":"K38 (B2,B4)", "x":8.75, "y":3.5},
72 {"label":"K98 (F4,B4)", "x":9.75, "y":3.5},
73 {"label":"K97 (F4,D7)", "x":10.75, "y":3.5},
74 {"label":"K95 (F4,D4)", "x":11.75, "y":3.5},
75 {"label":"K83 (F5,D3)", "x":12.75, "y":3.5, "w":2.25},
76 {"label":"K40 (B3,D0)", "x":0, "y":4.5, "w":1.25},
77 {"label":"K41 (B3,D1)", "x":1.25, "y":4.5},
78 {"label":"K42 (B3,D2)", "x":2.25, "y":4.5},
79 {"label":"K43 (B3,D3)", "x":3.25, "y":4.5},
80 {"label":"K44 (B3,D5)", "x":4.25, "y":4.5},
81 {"label":"K45 (B3,D4)", "x":5.25, "y":4.5},
82 {"label":"K46 (B3,D6)", "x":6.25, "y":4.5},
83 {"label":"K47 (B3,D7)", "x":7.25, "y":4.5},
84 {"label":"K48 (B3,B4)", "x":8.25, "y":4.5},
85 {"label":"KA8 (F1,B4)", "x":9.25, "y":4.5},
86 {"label":"KA7 (F1,D7)", "x":10.25, "y":4.5},
87 {"label":"KA5 (F1,D4)", "x":11.25, "y":4.5},
88 {"label":"KA4 (F1,D5)", "x":12.25, "y":4.5, "w":1.75},
89 {"label":"KA3 (F1,D3)", "x":14, "y":4.5},
90 {"label":"K92 (F4,D2)", "x":16.25, "y":4.5},
91 {"label":"K50 (B7,D0)", "x":0, "y":5.5, "w":1.25},
92 {"label":"K51 (B7,D1)", "x":1.25, "y":5.5, "w":1.25},
93 {"label":"K52 (B7,D2)", "x":2.5, "y":5.5, "w":1.25},
94 {"label":"K56 (B7,D6)", "x":3.75, "y":5.5, "w":6.25},
95 {"label":"K58 (B7,B4)", "x":10, "y":5.5, "w":1.25},
96 {"label":"K57 (B7,D7)", "x":11.25, "y":5.5, "w":1.25},
97 {"label":"K54 (B7,D5)", "x":12.5, "y":5.5, "w":1.25},
98 {"label":"K53 (B7,D3)", "x":13.75, "y":5.5, "w":1.25},
99 {"label":"KA6 (F1,D6)", "x":15.25, "y":5.5},
100 {"label":"KA2 (F1,D2)", "x":16.25, "y":5.5},
101 {"label":"KA1 (F1,D1)", "x":17.25, "y":5.5}
102 ]
103 },
104
105 "LAYOUT_ansi_standard": {
106 "key_count": 88,
107 "layout": [
108 {"label":"K00 (E6,D0)", "x":0, "y":0},
109 {"label":"K01 (E6,D1)", "x":1.25, "y":0},
110 {"label":"K02 (E6,D2)", "x":2.25, "y":0},
111 {"label":"K03 (E6,D3)", "x":3.25, "y":0},
112 {"label":"K04 (E6,D5)", "x":4.25, "y":0},
113 {"label":"K05 (E6,D4)", "x":5.5, "y":0},
114 {"label":"K06 (E6,D6)", "x":6.5, "y":0},
115 {"label":"K07 (E6,D7)", "x":7.5, "y":0},
116 {"label":"K08 (E6,B4)", "x":8.5, "y":0},
117 {"label":"K68 (F7,B4)", "x":9.75, "y":0},
118 {"label":"K67 (F7,D7)", "x":10.75, "y":0},
119 {"label":"K65 (F7,D4)", "x":11.75, "y":0},
120 {"label":"K64 (F7,D5)", "x":12.75, "y":0},
121 {"label":"K63 (F7,D3)", "x":14, "y":0},
122 {"label":"K66 (F7,D6)", "x":15.25, "y":0},
123 {"label":"K62 (F7,D2)", "x":16.25, "y":0},
124 {"label":"K61 (F7,D1)", "x":17.25, "y":0},
125 {"label":"K10 (B0,D0)", "x":0, "y":1.5},
126 {"label":"K11 (B0,D1)", "x":1, "y":1.5},
127 {"label":"K12 (B0,D2)", "x":2, "y":1.5},
128 {"label":"K13 (B0,D3)", "x":3, "y":1.5},
129 {"label":"K14 (B0,D5)", "x":4, "y":1.5},
130 {"label":"K15 (B0,D4)", "x":5, "y":1.5},
131 {"label":"K16 (B0,D6)", "x":6, "y":1.5},
132 {"label":"K17 (B0,D7)", "x":7, "y":1.5},
133 {"label":"K18 (B0,B4)", "x":8, "y":1.5},
134 {"label":"K78 (F6,B4)", "x":9, "y":1.5},
135 {"label":"K70 (F6,D0)", "x":10, "y":1.5},
136 {"label":"K77 (F6,D7)", "x":11, "y":1.5},
137 {"label":"K75 (F6,D4)", "x":12, "y":1.5},
138 {"label":"K73 (F6,D3)", "x":13, "y":1.5, "w":2},
139 {"label":"K76 (F6,D6)", "x":15.25, "y":1.5},
140 {"label":"K72 (F6,D2)", "x":16.25, "y":1.5},
141 {"label":"K71 (F6,D1)", "x":17.25, "y":1.5},
142 {"label":"K20 (B1,D0)", "x":0, "y":2.5, "w":1.5},
143 {"label":"K21 (B1,D1)", "x":1.5, "y":2.5},
144 {"label":"K22 (B1,D2)", "x":2.5, "y":2.5},
145 {"label":"K23 (B1,D3)", "x":3.5, "y":2.5},
146 {"label":"K24 (B1,D5)", "x":4.5, "y":2.5},
147 {"label":"K25 (B1,D4)", "x":5.5, "y":2.5},
148 {"label":"K26 (B1,D6)", "x":6.5, "y":2.5},
149 {"label":"K27 (B1,D7)", "x":7.5, "y":2.5},
150 {"label":"K28 (B1,B4)", "x":8.5, "y":2.5},
151 {"label":"K88 (F5,B4)", "x":9.5, "y":2.5},
152 {"label":"K87 (F5,D7)", "x":10.5, "y":2.5},
153 {"label":"K85 (F5,D4)", "x":11.5, "y":2.5},
154 {"label":"K84 (F5,D5)", "x":12.5, "y":2.5},
155 {"label":"K83 (F5,D3)", "x":13.5, "y":2.5, "w":1.5},
156 {"label":"K86 (F5,D6)", "x":15.25, "y":2.5},
157 {"label":"K82 (F5,D2)", "x":16.25, "y":2.5},
158 {"label":"K81 (F5,D1)", "x":17.25, "y":2.5},
159 {"label":"K30 (B2,D0)", "x":0, "y":3.5, "w":1.75},
160 {"label":"K31 (B2,D1)", "x":1.75, "y":3.5},
161 {"label":"K32 (B2,D2)", "x":2.75, "y":3.5},
162 {"label":"K33 (B2,D3)", "x":3.75, "y":3.5},
163 {"label":"K34 (B2,D5)", "x":4.75, "y":3.5},
164 {"label":"K35 (B2,D4)", "x":5.75, "y":3.5},
165 {"label":"K36 (B2,D6)", "x":6.75, "y":3.5},
166 {"label":"K37 (B2,D7)", "x":7.75, "y":3.5},
167 {"label":"K38 (B2,B4)", "x":8.75, "y":3.5},
168 {"label":"K98 (F4,B4)", "x":9.75, "y":3.5},
169 {"label":"K97 (F4,D7)", "x":10.75, "y":3.5},
170 {"label":"K95 (F4,D4)", "x":11.75, "y":3.5},
171 {"label":"K93 (F4,D3)", "x":12.75, "y":3.5, "w":2.25},
172 {"label":"K40 (B3,D0)", "x":0, "y":4.5, "w":2.25},
173 {"label":"K42 (B3,D2)", "x":2.25, "y":4.5},
174 {"label":"K43 (B3,D3)", "x":3.25, "y":4.5},
175 {"label":"K44 (B3,D5)", "x":4.25, "y":4.5},
176 {"label":"K45 (B3,D4)", "x":5.25, "y":4.5},
177 {"label":"K46 (B3,D6)", "x":6.25, "y":4.5},
178 {"label":"K47 (B3,D7)", "x":7.25, "y":4.5},
179 {"label":"K48 (B3,B4)", "x":8.25, "y":4.5},
180 {"label":"KA8 (F1,B4)", "x":9.25, "y":4.5},
181 {"label":"KA7 (F1,D7)", "x":10.25, "y":4.5},
182 {"label":"KA5 (F1,D4)", "x":11.25, "y":4.5},
183 {"label":"KA4 (F1,D5)", "x":12.25, "y":4.5, "w":2.75},
184 {"label":"K92 (F4,D2)", "x":16.25, "y":4.5},
185 {"label":"K50 (B7,D0)", "x":0, "y":5.5, "w":1.25},
186 {"label":"K51 (B7,D1)", "x":1.25, "y":5.5, "w":1.25},
187 {"label":"K52 (B7,D2)", "x":2.5, "y":5.5, "w":1.25},
188 {"label":"K56 (B7,D6)", "x":3.75, "y":5.5, "w":6.25},
189 {"label":"K58 (B7,B4)", "x":10, "y":5.5, "w":1.25},
190 {"label":"K57 (B7,D7)", "x":11.25, "y":5.5, "w":1.25},
191 {"label":"K54 (B7,D5)", "x":12.5, "y":5.5, "w":1.25},
192 {"label":"K53 (B7,D3)", "x":13.75, "y":5.5, "w":1.25},
193 {"label":"KA6 (F1,D6)", "x":15.25, "y":5.5},
194 {"label":"KA2 (F1,D2)", "x":16.25, "y":5.5},
195 {"label":"KA1 (F1,D1)", "x":17.25, "y":5.5}
196 ]
197 },
198
199 "LAYOUT_ansi_tsangan": {
200 "key_count": 87,
201 "layout": [
202 {"label":"K00 (E6,D0)", "x":0, "y":0},
203 {"label":"K01 (E6,D1)", "x":1.25, "y":0},
204 {"label":"K02 (E6,D2)", "x":2.25, "y":0},
205 {"label":"K03 (E6,D3)", "x":3.25, "y":0},
206 {"label":"K04 (E6,D5)", "x":4.25, "y":0},
207 {"label":"K05 (E6,D4)", "x":5.5, "y":0},
208 {"label":"K06 (E6,D6)", "x":6.5, "y":0},
209 {"label":"K07 (E6,D7)", "x":7.5, "y":0},
210 {"label":"K08 (E6,B4)", "x":8.5, "y":0},
211 {"label":"K68 (F7,B4)", "x":9.75, "y":0},
212 {"label":"K67 (F7,D7)", "x":10.75, "y":0},
213 {"label":"K65 (F7,D4)", "x":11.75, "y":0},
214 {"label":"K64 (F7,D5)", "x":12.75, "y":0},
215 {"label":"K63 (F7,D3)", "x":14, "y":0},
216 {"label":"K66 (F7,D6)", "x":15.25, "y":0},
217 {"label":"K62 (F7,D2)", "x":16.25, "y":0},
218 {"label":"K61 (F7,D1)", "x":17.25, "y":0},
219 {"label":"K10 (B0,D0)", "x":0, "y":1.5},
220 {"label":"K11 (B0,D1)", "x":1, "y":1.5},
221 {"label":"K12 (B0,D2)", "x":2, "y":1.5},
222 {"label":"K13 (B0,D3)", "x":3, "y":1.5},
223 {"label":"K14 (B0,D5)", "x":4, "y":1.5},
224 {"label":"K15 (B0,D4)", "x":5, "y":1.5},
225 {"label":"K16 (B0,D6)", "x":6, "y":1.5},
226 {"label":"K17 (B0,D7)", "x":7, "y":1.5},
227 {"label":"K18 (B0,B4)", "x":8, "y":1.5},
228 {"label":"K78 (F6,B4)", "x":9, "y":1.5},
229 {"label":"K70 (F6,D0)", "x":10, "y":1.5},
230 {"label":"K77 (F6,D7)", "x":11, "y":1.5},
231 {"label":"K75 (F6,D4)", "x":12, "y":1.5},
232 {"label":"K73 (F6,D3)", "x":13, "y":1.5, "w":2},
233 {"label":"K76 (F6,D6)", "x":15.25, "y":1.5},
234 {"label":"K72 (F6,D2)", "x":16.25, "y":1.5},
235 {"label":"K71 (F6,D1)", "x":17.25, "y":1.5},
236 {"label":"K20 (B1,D0)", "x":0, "y":2.5, "w":1.5},
237 {"label":"K21 (B1,D1)", "x":1.5, "y":2.5},
238 {"label":"K22 (B1,D2)", "x":2.5, "y":2.5},
239 {"label":"K23 (B1,D3)", "x":3.5, "y":2.5},
240 {"label":"K24 (B1,D5)", "x":4.5, "y":2.5},
241 {"label":"K25 (B1,D4)", "x":5.5, "y":2.5},
242 {"label":"K26 (B1,D6)", "x":6.5, "y":2.5},
243 {"label":"K27 (B1,D7)", "x":7.5, "y":2.5},
244 {"label":"K28 (B1,B4)", "x":8.5, "y":2.5},
245 {"label":"K88 (F5,B4)", "x":9.5, "y":2.5},
246 {"label":"K87 (F5,D7)", "x":10.5, "y":2.5},
247 {"label":"K85 (F5,D4)", "x":11.5, "y":2.5},
248 {"label":"K84 (F5,D5)", "x":12.5, "y":2.5},
249 {"label":"K83 (F5,D3)", "x":13.5, "y":2.5, "w":1.5},
250 {"label":"K86 (F5,D6)", "x":15.25, "y":2.5},
251 {"label":"K82 (F5,D2)", "x":16.25, "y":2.5},
252 {"label":"K81 (F5,D1)", "x":17.25, "y":2.5},
253 {"label":"K30 (B2,D0)", "x":0, "y":3.5, "w":1.75},
254 {"label":"K31 (B2,D1)", "x":1.75, "y":3.5},
255 {"label":"K32 (B2,D2)", "x":2.75, "y":3.5},
256 {"label":"K33 (B2,D3)", "x":3.75, "y":3.5},
257 {"label":"K34 (B2,D5)", "x":4.75, "y":3.5},
258 {"label":"K35 (B2,D4)", "x":5.75, "y":3.5},
259 {"label":"K36 (B2,D6)", "x":6.75, "y":3.5},
260 {"label":"K37 (B2,D7)", "x":7.75, "y":3.5},
261 {"label":"K38 (B2,B4)", "x":8.75, "y":3.5},
262 {"label":"K98 (F4,B4)", "x":9.75, "y":3.5},
263 {"label":"K97 (F4,D7)", "x":10.75, "y":3.5},
264 {"label":"K95 (F4,D4)", "x":11.75, "y":3.5},
265 {"label":"K93 (F4,D3)", "x":12.75, "y":3.5, "w":2.25},
266 {"label":"K40 (B3,D0)", "x":0, "y":4.5, "w":2.25},
267 {"label":"K42 (B3,D2)", "x":2.25, "y":4.5},
268 {"label":"K43 (B3,D3)", "x":3.25, "y":4.5},
269 {"label":"K44 (B3,D5)", "x":4.25, "y":4.5},
270 {"label":"K45 (B3,D4)", "x":5.25, "y":4.5},
271 {"label":"K46 (B3,D6)", "x":6.25, "y":4.5},
272 {"label":"K47 (B3,D7)", "x":7.25, "y":4.5},
273 {"label":"K48 (B3,B4)", "x":8.25, "y":4.5},
274 {"label":"KA8 (F1,B4)", "x":9.25, "y":4.5},
275 {"label":"KA7 (F1,D7)", "x":10.25, "y":4.5},
276 {"label":"KA5 (F1,D4)", "x":11.25, "y":4.5},
277 {"label":"KA4 (F1,D5)", "x":12.25, "y":4.5, "w":2.75},
278 {"label":"K92 (F4,D2)", "x":16.25, "y":4.5},
279 {"label":"K50 (B7,D0)", "x":0, "y":5.5, "w":1.5},
280 {"label":"K51 (B7,D1)", "x":1.5, "y":5.5},
281 {"label":"K52 (B7,D2)", "x":2.5, "y":5.5, "w":1.5},
282 {"label":"K56 (B7,D6)", "x":4, "y":5.5, "w":7},
283 {"label":"K57 (B7,D7)", "x":11, "y":5.5, "w":1.5},
284 {"label":"K54 (B7,D5)", "x":12.5, "y":5.5},
285 {"label":"K53 (B7,D3)", "x":13.5, "y":5.5, "w":1.5},
286 {"label":"KA6 (F1,D6)", "x":15.25, "y":5.5},
287 {"label":"KA2 (F1,D2)", "x":16.25, "y":5.5},
288 {"label":"KA1 (F1,D1)", "x":17.25, "y":5.5}
289 ]
290 }
291 }
292 ,"meta": "https://noroadsleft.github.io/kbf_qmk_converter/"
293}
diff --git a/keyboards/exclusive/e85/keymaps/default/keymap.c b/keyboards/exclusive/e85/keymaps/default/keymap.c
new file mode 100644
index 000000000..80f8e0eeb
--- /dev/null
+++ b/keyboards/exclusive/e85/keymaps/default/keymap.c
@@ -0,0 +1,37 @@
1/* Copyright 2020 MechMerlin
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_ansi_tsangan(
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, MO(1), KC_PSCR, KC_SLCK, KC_PAUS,
21 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,
22 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,
23 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,
24 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,
25 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
26 ),
27
28 [1] = LAYOUT_ansi_tsangan(
29 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
30 RGB_MOD, RGB_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
31 _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
32 BL_TOGG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
33 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
34 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
35 ),
36
37};
diff --git a/keyboards/exclusive/e85/keymaps/standard/keymap.c b/keyboards/exclusive/e85/keymaps/standard/keymap.c
new file mode 100644
index 000000000..c6778180b
--- /dev/null
+++ b/keyboards/exclusive/e85/keymaps/standard/keymap.c
@@ -0,0 +1,37 @@
1/* Copyright 2020 MechMerlin
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_ansi_standard(
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, MO(1), KC_PSCR, KC_SLCK, KC_PAUS,
21 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,
22 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,
23 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,
24 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,
25 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_APP, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
26 ),
27
28 [1] = LAYOUT_ansi_standard(
29 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
30 RGB_MOD, RGB_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
31 _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
32 BL_TOGG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
33 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
34 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
35 ),
36
37};
diff --git a/keyboards/exclusive/e85/keymaps/tsangan/keymap.c b/keyboards/exclusive/e85/keymaps/tsangan/keymap.c
new file mode 100644
index 000000000..80f8e0eeb
--- /dev/null
+++ b/keyboards/exclusive/e85/keymaps/tsangan/keymap.c
@@ -0,0 +1,37 @@
1/* Copyright 2020 MechMerlin
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_ansi_tsangan(
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, MO(1), KC_PSCR, KC_SLCK, KC_PAUS,
21 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,
22 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,
23 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,
24 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,
25 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
26 ),
27
28 [1] = LAYOUT_ansi_tsangan(
29 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
30 RGB_MOD, RGB_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
31 _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
32 BL_TOGG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
33 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
34 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
35 ),
36
37};
diff --git a/keyboards/exclusive/e85/keymaps/via/config.h b/keyboards/exclusive/e85/keymaps/via/config.h
new file mode 100644
index 000000000..78f3f6a69
--- /dev/null
+++ b/keyboards/exclusive/e85/keymaps/via/config.h
@@ -0,0 +1 @@
#define DYNAMIC_KEYMAP_LAYER_COUNT 3 \ No newline at end of file
diff --git a/keyboards/exclusive/e85/keymaps/via/keymap.c b/keyboards/exclusive/e85/keymaps/via/keymap.c
new file mode 100644
index 000000000..c55c35ce1
--- /dev/null
+++ b/keyboards/exclusive/e85/keymaps/via/keymap.c
@@ -0,0 +1,45 @@
1/* Copyright 2020 MechMerlin
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_ansi_tsangan(
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, MO(1), KC_PSCR, KC_SLCK, KC_PAUS,
21 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,
22 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,
23 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,
24 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,
25 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
26 ),
27
28 [1] = LAYOUT_ansi_tsangan(
29 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
30 RGB_MOD, RGB_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
31 _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
32 BL_TOGG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
33 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
34 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
35 ),
36
37 [2] = LAYOUT_ansi_tsangan(
38 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
39 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
40 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
41 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
42 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
43 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
44 ),
45};
diff --git a/keyboards/exclusive/e85/keymaps/via/rules.mk b/keyboards/exclusive/e85/keymaps/via/rules.mk
new file mode 100644
index 000000000..29a6f7519
--- /dev/null
+++ b/keyboards/exclusive/e85/keymaps/via/rules.mk
@@ -0,0 +1,3 @@
1VIA_ENABLE = yes
2CONSOLE_ENABLE = no # Console for debug
3COMMAND_ENABLE = no # Commands for debug and configuration \ No newline at end of file
diff --git a/keyboards/exclusive/e85/readme.md b/keyboards/exclusive/e85/readme.md
new file mode 100644
index 000000000..fe5af17de
--- /dev/null
+++ b/keyboards/exclusive/e85/readme.md
@@ -0,0 +1,17 @@
1# Exclusive E8.5 Hotswap
2
3Custom hotswap PCB for Exclusive E8.5.
4
5The switch matrix is identical between all three PCB variants of this board. Choose the correct LAYOUT that best matches the physical LAYOUT of your PCB.
6
7* Keyboard Maintainer: [MechMerlin](https://github.com/mechmerlin)
8* Hardware Supported: E8.5 Hotswap/Soldered, atmega32u4
9* Hardware Availability: [Geekhack GB](https://geekhack.org/index.php?topic=103520)
10
11Make example for this keyboard (after setting up your build environment):
12
13 make exclusive/e85:default
14
15**Reset Key**: The board can be reset by shorting the two holes underneath the PCB, or pressing the reset button on the reverse side.
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).
diff --git a/keyboards/exclusive/e85/rules.mk b/keyboards/exclusive/e85/rules.mk
new file mode 100644
index 000000000..e9c1ed8f1
--- /dev/null
+++ b/keyboards/exclusive/e85/rules.mk
@@ -0,0 +1,32 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5# Teensy halfkay
6# Pro Micro caterina
7# Atmel DFU atmel-dfu
8# LUFA DFU lufa-dfu
9# QMK DFU qmk-dfu
10# ATmega32A bootloadHID
11# ATmega328P USBasp
12BOOTLOADER = atmel-dfu
13
14# Build Options
15# change yes to no to disable
16#
17BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
18MOUSEKEY_ENABLE = yes # Mouse keys
19EXTRAKEY_ENABLE = yes # Audio control and System control
20CONSOLE_ENABLE = yes # Console for debug
21COMMAND_ENABLE = yes # Commands for debug and configuration
22# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
23SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
24# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
25NKRO_ENABLE = no # USB Nkey Rollover
26BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
27RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
28MIDI_ENABLE = no # MIDI support
29BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
30AUDIO_ENABLE = no # Audio output
31FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
32LTO_ENABLE = yes
diff --git a/keyboards/exclusive/readme.md b/keyboards/exclusive/readme.md
index 486e07d99..bee613bf4 100644
--- a/keyboards/exclusive/readme.md
+++ b/keyboards/exclusive/readme.md
@@ -8,3 +8,4 @@ All files related to firmware of keyboards designed by Exclusive.
8* [e6-v2](./e6v2/): maintainers [MechMerlin](https://github.com/mechmerlin), [amnesia0287](https://github.com/amnesia0287) 8* [e6-v2](./e6v2/): maintainers [MechMerlin](https://github.com/mechmerlin), [amnesia0287](https://github.com/amnesia0287)
9* [e7-v1](./e7v1): maintainer [masterzen](https://github.com/masterzen) 9* [e7-v1](./e7v1): maintainer [masterzen](https://github.com/masterzen)
10* [e6.5](./e65): maintainer [masterzen](https://github.com/masterzen) 10* [e6.5](./e65): maintainer [masterzen](https://github.com/masterzen)
11* [e8.5](./e85): maintainer [MechMerlin](https://github.com/mechmerlin)