aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstudiokestra <74369928+studiokestra@users.noreply.github.com>2021-11-15 16:44:17 -0700
committerGitHub <noreply@github.com>2021-11-15 15:44:17 -0800
commit269990ed95f80db2349661b2731b42501e3b2803 (patch)
treeffbb5bdd726e4cf974e9249f811142d957065e77
parent0db70f1f2a397e1e8a298f8add9a47dca09c7c55 (diff)
downloadqmk_firmware-269990ed95f80db2349661b2731b42501e3b2803.tar.gz
qmk_firmware-269990ed95f80db2349661b2731b42501e3b2803.zip
[Keyboard] Add Bourgeau 75% PCB (#15072)
Co-authored-by: Drashna Jaelre <drashna@live.com>
-rw-r--r--keyboards/studiokestra/bourgeau/bourgeau.c18
-rw-r--r--keyboards/studiokestra/bourgeau/bourgeau.h46
-rw-r--r--keyboards/studiokestra/bourgeau/config.h83
-rw-r--r--keyboards/studiokestra/bourgeau/info.json94
-rw-r--r--keyboards/studiokestra/bourgeau/keymaps/default/keymap.c43
-rw-r--r--keyboards/studiokestra/bourgeau/keymaps/default/readme.md3
-rw-r--r--keyboards/studiokestra/bourgeau/keymaps/via/keymap.c54
-rw-r--r--keyboards/studiokestra/bourgeau/keymaps/via/readme.md3
-rw-r--r--keyboards/studiokestra/bourgeau/keymaps/via/rules.mk1
-rw-r--r--keyboards/studiokestra/bourgeau/readme.md23
-rw-r--r--keyboards/studiokestra/bourgeau/rules.mk21
11 files changed, 389 insertions, 0 deletions
diff --git a/keyboards/studiokestra/bourgeau/bourgeau.c b/keyboards/studiokestra/bourgeau/bourgeau.c
new file mode 100644
index 000000000..87368df50
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/bourgeau.c
@@ -0,0 +1,18 @@
1/*
2Copyright 2021 Studio Kestra
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 "bourgeau.h"
diff --git a/keyboards/studiokestra/bourgeau/bourgeau.h b/keyboards/studiokestra/bourgeau/bourgeau.h
new file mode 100644
index 000000000..32a848eca
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/bourgeau.h
@@ -0,0 +1,46 @@
1/*
2Copyright 2021 Studio Kestra
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/* This a shortcut to help you visually see your layout.
23 *
24 * The first section contains all of the arguments representing the physical
25 * layout of the board and position of the keys.
26 *
27 * The second converts the arguments into a two-dimensional array which
28 * represents the switch matrix.
29 */
30#define LAYOUT_all( \
31 K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K015, \
32 K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K114, K115, \
33 K200, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214, K215, \
34 K300, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K314, K315, \
35 K400, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, K413, K414, K415, \
36 K500, K501, K502, K506, K510, K512, K513, K514, K515 \
37) \
38{ \
39 { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K015 }, \
40 { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, KC_NO, K114, K115 }, \
41 { K200, KC_NO, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K213, K214, K215 }, \
42 { K300, KC_NO, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, KC_NO, K314, K315 }, \
43 { K400, KC_NO, K402, K403, K404, K405, K406, K407, K408, K409, K410, K411, KC_NO, K413, K414, K415 }, \
44 { K500, K501, K502, KC_NO, KC_NO, KC_NO, K506, KC_NO, KC_NO, KC_NO, K510, KC_NO, K512, K513, K514, K515 } \
45}
46
diff --git a/keyboards/studiokestra/bourgeau/config.h b/keyboards/studiokestra/bourgeau/config.h
new file mode 100644
index 000000000..744149c34
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/config.h
@@ -0,0 +1,83 @@
1/*
2Copyright 2021 Studio Kestra
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 0x7C10
24#define PRODUCT_ID 0x7501
25#define DEVICE_VER 0x0001
26#define MANUFACTURER Studio Kestra
27#define PRODUCT Bourgeau
28
29#define MATRIX_ROWS 6
30#define MATRIX_COLS 16
31
32#define MATRIX_ROW_PINS { D4, D6, D7, D5, B1, F0 }
33#define MATRIX_COL_PINS { E6, B0, D2, D1, D0, D3, B6, F1, F4, F5, F6, F7, C7, C6, B5, B4 }
34
35/* COL2ROW, ROW2COL*/
36#define DIODE_DIRECTION COL2ROW
37
38
39#define RGB_DI_PIN B7
40#ifdef RGB_DI_PIN
41 #define RGBLED_NUM 24
42 #define RGBLIGHT_HUE_STEP 8
43 #define RGBLIGHT_SAT_STEP 8
44 #define RGBLIGHT_VAL_STEP 8
45 #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
46 #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
47/*== all animations enable ==*/
48#define RGBLIGHT_EFFECT_BREATHING
49#define RGBLIGHT_EFFECT_RAINBOW_MOOD
50#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
51#define RGBLIGHT_EFFECT_SNAKE
52#define RGBLIGHT_EFFECT_KNIGHT
53#define RGBLIGHT_EFFECT_CHRISTMAS
54#define RGBLIGHT_EFFECT_STATIC_GRADIENT
55#define RGBLIGHT_EFFECT_RGB_TEST
56#define RGBLIGHT_EFFECT_ALTERNATING
57#define RGBLIGHT_EFFECT_TWINKLE
58// /*== customize breathing effect ==*/
59// /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/
60 #define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
61// /*==== use exp() and sin() ====*/
62// #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
63// #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
64#endif
65
66/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
67#define DEBOUNCE 5
68
69/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
70#define LOCKING_SUPPORT_ENABLE
71/* Locking resynchronize hack */
72#define LOCKING_RESYNC_ENABLE
73
74/* disable action features */
75//#define NO_ACTION_LAYER
76//#define NO_ACTION_TAPPING
77//#define NO_ACTION_ONESHOT
78//#define NO_ACTION_MACRO
79//#define NO_ACTION_FUNCTION
80
81/* Bootmagic Lite key configuration */
82#define BOOTMAGIC_LITE_ROW 0
83#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/studiokestra/bourgeau/info.json b/keyboards/studiokestra/bourgeau/info.json
new file mode 100644
index 000000000..8fd62f651
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/info.json
@@ -0,0 +1,94 @@
1{
2 "keyboard_name": "Bourgeau",
3 "url": "https://studiokestra.ca/bourgeau/",
4 "maintainer": "Studio Kestra",
5 "layouts": {
6 "LAYOUT_all": {
7 "layout": [
8 {"label":"Esc", "x":0, "y":0},
9 {"label":"F1", "x":1, "y":0},
10 {"label":"F2", "x":2, "y":0},
11 {"label":"F3", "x":3, "y":0},
12 {"label":"F4", "x":4, "y":0},
13 {"label":"F5", "x":5, "y":0},
14 {"label":"F6", "x":6, "y":0},
15 {"label":"F7", "x":7, "y":0},
16 {"label":"F8", "x":8, "y":0},
17 {"label":"F9", "x":9, "y":0},
18 {"label":"F10", "x":10, "y":0},
19 {"label":"F11", "x":11, "y":0},
20 {"label":"F12", "x":12, "y":0},
21 {"label":"PrtSc", "x":13, "y":0},
22 {"label":"Insert", "x":14, "y":0},
23 {"label":"Delete", "x":15, "y":0},
24 {"label":"~", "x":0, "y":1},
25 {"label":"!", "x":1, "y":1},
26 {"label":"@", "x":2, "y":1},
27 {"label":"#", "x":3, "y":1},
28 {"label":"$", "x":4, "y":1},
29 {"label":"%", "x":5, "y":1},
30 {"label":"^", "x":6, "y":1},
31 {"label":"&", "x":7, "y":1},
32 {"label":"*", "x":8, "y":1},
33 {"label":"(", "x":9, "y":1},
34 {"label":")", "x":10, "y":1},
35 {"label":"_", "x":11, "y":1},
36 {"label":"+", "x":12, "y":1},
37 {"label":"Backspace", "x":13, "y":1, "w":2},
38 {"label":"Home", "x":15, "y":1},
39 {"label":"Tab", "x":0, "y":2, "w":1.5},
40 {"label":"Q", "x":1.5, "y":2},
41 {"label":"W", "x":2.5, "y":2},
42 {"label":"E", "x":3.5, "y":2},
43 {"label":"R", "x":4.5, "y":2},
44 {"label":"T", "x":5.5, "y":2},
45 {"label":"Y", "x":6.5, "y":2},
46 {"label":"U", "x":7.5, "y":2},
47 {"label":"I", "x":8.5, "y":2},
48 {"label":"O", "x":9.5, "y":2},
49 {"label":"P", "x":10.5, "y":2},
50 {"label":"{", "x":11.5, "y":2},
51 {"label":"}", "x":12.5, "y":2},
52 {"label":"|", "x":13.5, "y":2, "w":1.5},
53 {"label":"PgUp", "x":15, "y":2},
54 {"label":"Caps Lock", "x":0, "y":3, "w":1.75},
55 {"label":"A", "x":1.75, "y":3},
56 {"label":"S", "x":2.75, "y":3},
57 {"label":"D", "x":3.75, "y":3},
58 {"label":"F", "x":4.75, "y":3},
59 {"label":"G", "x":5.75, "y":3},
60 {"label":"H", "x":6.75, "y":3},
61 {"label":"J", "x":7.75, "y":3},
62 {"label":"K", "x":8.75, "y":3},
63 {"label":"L", "x":9.75, "y":3},
64 {"label":":", "x":10.75, "y":3},
65 {"label":"\"", "x":11.75, "y":3},
66 {"label":"Enter", "x":12.75, "y":3, "w":2.25},
67 {"label":"PgDn", "x":15, "y":3},
68 {"label":"Shift", "x":0, "y":4, "w":2.25},
69 {"label":"Z", "x":2.25, "y":4},
70 {"label":"X", "x":3.25, "y":4},
71 {"label":"C", "x":4.25, "y":4},
72 {"label":"V", "x":5.25, "y":4},
73 {"label":"B", "x":6.25, "y":4},
74 {"label":"N", "x":7.25, "y":4},
75 {"label":"M", "x":8.25, "y":4},
76 {"label":"<", "x":9.25, "y":4},
77 {"label":">", "x":10.25, "y":4},
78 {"label":"?", "x":11.25, "y":4},
79 {"label":"Shift", "x":12.25, "y":4, "w":1.75},
80 {"label":"\u2191", "x":14, "y":4},
81 {"label":"End", "x":15, "y":4},
82 {"label":"Ctrl", "x":0, "y":5, "w":1.25},
83 {"label":"Win", "x":1.25, "y":5, "w":1.25},
84 {"label":"Alt", "x":2.5, "y":5, "w":1.25},
85 {"x":3.75, "y":5, "w":6.25},
86 {"label":"Fn", "x":10, "y":5, "w":1.5},
87 {"label":"Ctrl", "x":11.5, "y":5, "w":1.5},
88 {"label":"\u2190", "x":13, "y":5},
89 {"label":"\u2193", "x":14, "y":5},
90 {"label":"\u2192", "x":15, "y":5}
91 ]
92 }
93 }
94}
diff --git a/keyboards/studiokestra/bourgeau/keymaps/default/keymap.c b/keyboards/studiokestra/bourgeau/keymaps/default/keymap.c
new file mode 100644
index 000000000..31d7d70a0
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/keymaps/default/keymap.c
@@ -0,0 +1,43 @@
1/*
2Copyright 2021 Studio Kestra
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
20enum layer_names {
21 _BASE,
22 _FN
23};
24
25const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
26 [_BASE] = LAYOUT_all( /* Base */
27 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_INS, KC_DEL,
28 KC_GRAVE,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_HOME,
29 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_PGUP,
30 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, KC_PGDN,
31 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END,
32 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RIGHT
33 ),
34 [_FN] = LAYOUT_all( /* FN */
35 RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
36 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
37 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
38 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
39 _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, _______, _______, _______,
40 _______, _______, _______, _______, _______, _______, _______, _______, _______
41 )
42};
43
diff --git a/keyboards/studiokestra/bourgeau/keymaps/default/readme.md b/keyboards/studiokestra/bourgeau/keymaps/default/readme.md
new file mode 100644
index 000000000..cbed84958
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/keymaps/default/readme.md
@@ -0,0 +1,3 @@
1# The default keymap for Bourgeau
2
3Default key configuration. \ No newline at end of file
diff --git a/keyboards/studiokestra/bourgeau/keymaps/via/keymap.c b/keyboards/studiokestra/bourgeau/keymaps/via/keymap.c
new file mode 100644
index 000000000..d0491c30a
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/keymaps/via/keymap.c
@@ -0,0 +1,54 @@
1/*
2Copyright 2021 Studio Kestra
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
21const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
22 [0] = LAYOUT_all(
23 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_INS, KC_DEL,
24 KC_GRAVE,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_HOME,
25 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_PGUP,
26 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, KC_PGDN,
27 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END,
28 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RIGHT
29 ),
30 [1] = LAYOUT_all( /* FN */
31 RESET, KC_TRNS, KC_TRNS, KC_TRNS, 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,
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,
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,
35 KC_TRNS, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, 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
37 ),
38 [2] = LAYOUT_all( /* Layer 3 */
39 RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
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,
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,
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,
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,
44 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
45 ),
46 [3] = LAYOUT_all( /* Layer 3 */
47 RESET, KC_TRNS, KC_TRNS, KC_TRNS, 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 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
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,
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,
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,
52 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
53 )
54};
diff --git a/keyboards/studiokestra/bourgeau/keymaps/via/readme.md b/keyboards/studiokestra/bourgeau/keymaps/via/readme.md
new file mode 100644
index 000000000..bf2bc20a6
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/keymaps/via/readme.md
@@ -0,0 +1,3 @@
1# The via keymap for Bourgeau
2
3For via configurator use \ No newline at end of file
diff --git a/keyboards/studiokestra/bourgeau/keymaps/via/rules.mk b/keyboards/studiokestra/bourgeau/keymaps/via/rules.mk
new file mode 100644
index 000000000..036bd6d1c
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes \ No newline at end of file
diff --git a/keyboards/studiokestra/bourgeau/readme.md b/keyboards/studiokestra/bourgeau/readme.md
new file mode 100644
index 000000000..16f87618e
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/readme.md
@@ -0,0 +1,23 @@
1# Bourgeau
2
3Compact 75% universal hotswap PCB with USB-C that supports a fixed 6.25U bottom row layout.
4
5* Keyboard Maintainer: [Studio Kestra](https://github.com/studiokestra/)
6* Hardware Supported: PLA75
7* Hardware Availability: [RNDKBD.com](https://rndkbd.com/)
8
9## Bootload Sequence
10
11There are 3 ways to put the board in bootloader mode:
12
13- Hold the top-left key (typically `Esc`) while plugging in the USB cable, OR
14- While the PCB is plugged into the PC, press the physical `RESET` button on the back of the board, OR
15- With the default layout, toggle Layer 1 and press the `ESC` key.
16
17## Compiling Firmware
18
19Make example for this keyboard (after setting up your build environment):
20
21 make studiokestra/bourgeau:default
22
23See 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/studiokestra/bourgeau/rules.mk b/keyboards/studiokestra/bourgeau/rules.mk
new file mode 100644
index 000000000..0acd19e67
--- /dev/null
+++ b/keyboards/studiokestra/bourgeau/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 = no # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = no # Console for debug
14COMMAND_ENABLE = yes # 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 = yes # Enable keyboard RGB underglow
21AUDIO_ENABLE = no # Audio output