aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpaceman <rionlion100@gmail.com>2019-08-30 20:49:48 -0400
committerDrashna Jaelre <drashna@live.com>2019-08-30 17:49:48 -0700
commit42977d25fc1445ff1fdc6372511ff9ba95741565 (patch)
tree7e462029147967a8a89a74d5cb7ee82fb30fa41d
parentedc8283572d4f7648146b05d49dc446e169d4534 (diff)
downloadqmk_firmware-42977d25fc1445ff1fdc6372511ff9ba95741565.tar.gz
qmk_firmware-42977d25fc1445ff1fdc6372511ff9ba95741565.zip
[Keyboard] add Pancake Keyboard (#6610)
* Create readme.md * Add files via upload * Create readme.md * Add files via upload * Create readme.md * Add files via upload * Create readme.md * Add files via upload * Update keyboards/pancake/info.json Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/pancake/keymaps/default/keymap.c Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/pancake/keymaps/default/keymap.c Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/pancake/readme.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/pancake/keymaps/default/keymap.c Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/pancake/info.json Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/pancake/feather/rules.mk Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/pancake/promicro/rules.mk Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/pancake/keymaps/default/keymap.c Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update rules.mk * Update rules.mk * Update pancake.h
-rw-r--r--keyboards/pancake/config.h31
-rw-r--r--keyboards/pancake/feather/config.h26
-rw-r--r--keyboards/pancake/feather/readme.md1
-rw-r--r--keyboards/pancake/feather/rules.mk26
-rw-r--r--keyboards/pancake/info.json113
-rw-r--r--keyboards/pancake/keymaps/default/keymap.c90
-rw-r--r--keyboards/pancake/keymaps/default/readme.md1
-rw-r--r--keyboards/pancake/pancake.c16
-rw-r--r--keyboards/pancake/pancake.h44
-rw-r--r--keyboards/pancake/promicro/config.h22
-rw-r--r--keyboards/pancake/promicro/readme.md1
-rw-r--r--keyboards/pancake/promicro/rules.mk20
-rw-r--r--keyboards/pancake/readme.md12
13 files changed, 403 insertions, 0 deletions
diff --git a/keyboards/pancake/config.h b/keyboards/pancake/config.h
new file mode 100644
index 000000000..a83ef5d0c
--- /dev/null
+++ b/keyboards/pancake/config.h
@@ -0,0 +1,31 @@
1/* Copyright 2019 Sebastian Williams
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#pragma once
17#include "config_common.h"
18
19/* USB Device descriptor parameter */
20#define VENDOR_ID 0xFEED
21#define PRODUCT_ID 0xB195
22#define DEVICE_VER 0x0001
23#define MANUFACTURER rionlion100
24#define PRODUCT Pancake
25#define DESCRIPTION Choc Ortho Keyboard
26
27/* key matrix size */
28#define MATRIX_ROWS 4
29#define MATRIX_COLS 12
30
31#define DIODE_DIRECTION COL2ROW \ No newline at end of file
diff --git a/keyboards/pancake/feather/config.h b/keyboards/pancake/feather/config.h
new file mode 100644
index 000000000..fbb175758
--- /dev/null
+++ b/keyboards/pancake/feather/config.h
@@ -0,0 +1,26 @@
1/* Copyright 2019 Sebastian Williams
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#pragma once
17#include "config_common.h"
18
19/* Pancake default pinout */
20#define MATRIX_ROW_PINS { B5, D7, C6, D0 }
21#define MATRIX_COL_PINS { C7, D6, B7, B6, F0, D2, D3, F1, F4, F5, F6, F7 }
22#define UNUSED_PINS
23
24#define AdafruitBleResetPin D4
25#define AdafruitBleCSPin B4
26#define AdafruitBleIRQPin E6 \ No newline at end of file
diff --git a/keyboards/pancake/feather/readme.md b/keyboards/pancake/feather/readme.md
new file mode 100644
index 000000000..8b1378917
--- /dev/null
+++ b/keyboards/pancake/feather/readme.md
@@ -0,0 +1 @@
diff --git a/keyboards/pancake/feather/rules.mk b/keyboards/pancake/feather/rules.mk
new file mode 100644
index 000000000..085c87f8d
--- /dev/null
+++ b/keyboards/pancake/feather/rules.mk
@@ -0,0 +1,26 @@
1# MCU name
2MCU = atmega32u4
3
4# Processor frequency.
5F_CPU = 8000000
6
7# Bootloader
8BOOTLOADER = caterina
9
10# Build Options
11# comment out to disable the options.
12#
13
14BLUETOOTH = AdafruitBLE
15BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
16MOUSEKEY_ENABLE = no # Mouse keys(+4700)
17EXTRAKEY_ENABLE = no # Audio control and System control(+450)
18CONSOLE_ENABLE = yes # Console for debug(+400)
19COMMAND_ENABLE = yes # Commands for debug and configuration
20SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
21NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
22BACKLIGHT_ENABLE = no # Custom backlighting code is used, so this should not be enabled
23AUDIO_ENABLE = no # This can be enabled if a speaker is connected to the expansion port. Not compatible with RGBLIGHT below
24RGBLIGHT_ENABLE = no # This can be enabled if a ws2812 strip is connected to the expansion port.
25
26LAYOUTS = ortho_4x12 planck_mit
diff --git a/keyboards/pancake/info.json b/keyboards/pancake/info.json
new file mode 100644
index 000000000..c18e48b8b
--- /dev/null
+++ b/keyboards/pancake/info.json
@@ -0,0 +1,113 @@
1{
2 "keyboard_name": "Pancake",
3 "keyboard_folder": "Pancake",
4 "url": "",
5 "maintainer": "rionlion100",
6 "width": 12,
7 "height": 4,
8 "layouts": {
9 "LAYOUT_planck_mit": {
10 "key_count": 47,
11 "layout": [
12 { "w": 1, "x": 0, "y": 0 },
13 { "w": 1, "x": 1, "y": 0 },
14 { "w": 1, "x": 2, "y": 0 },
15 { "w": 1, "x": 3, "y": 0 },
16 { "w": 1, "x": 4, "y": 0 },
17 { "w": 1, "x": 5, "y": 0 },
18 { "w": 1, "x": 6, "y": 0 },
19 { "w": 1, "x": 7, "y": 0 },
20 { "w": 1, "x": 8, "y": 0 },
21 { "w": 1, "x": 9, "y": 0 },
22 { "w": 1, "x": 10, "y": 0 },
23 { "w": 1, "x": 11, "y": 0 },
24 { "w": 1, "x": 0, "y": 1 },
25 { "w": 1, "x": 1, "y": 1 },
26 { "w": 1, "x": 2, "y": 1 },
27 { "w": 1, "x": 3, "y": 1 },
28 { "w": 1, "x": 4, "y": 1 },
29 { "w": 1, "x": 5, "y": 1 },
30 { "w": 1, "x": 6, "y": 1 },
31 { "w": 1, "x": 7, "y": 1 },
32 { "w": 1, "x": 8, "y": 1 },
33 { "w": 1, "x": 9, "y": 1 },
34 { "w": 1, "x": 10, "y": 1 },
35 { "w": 1, "x": 11, "y": 1 },
36 { "w": 1, "x": 0, "y": 2 },
37 { "w": 1, "x": 1, "y": 2 },
38 { "w": 1, "x": 2, "y": 2 },
39 { "w": 1, "x": 3, "y": 2 },
40 { "w": 1, "x": 4, "y": 2 },
41 { "w": 1, "x": 5, "y": 2 },
42 { "w": 1, "x": 6, "y": 2 },
43 { "w": 1, "x": 7, "y": 2 },
44 { "w": 1, "x": 8, "y": 2 },
45 { "w": 1, "x": 9, "y": 2 },
46 { "w": 1, "x": 10, "y": 2 },
47 { "w": 1, "x": 11, "y": 2 },
48 { "w": 1, "x": 0, "y": 3 },
49 { "w": 1, "x": 1, "y": 3 },
50 { "w": 1, "x": 2, "y": 3 },
51 { "w": 1, "x": 3, "y": 3 },
52 { "w": 1, "x": 4, "y": 3 },
53 { "w": 2, "x": 5, "y": 3 },
54 { "w": 1, "x": 7, "y": 3 },
55 { "w": 1, "x": 8, "y": 3 },
56 { "w": 1, "x": 9, "y": 3 },
57 { "w": 1, "x": 10, "y": 3 },
58 { "w": 1, "x": 11, "y": 3 } ]
59 },
60 "LAYOUT_ortho_4x12": {
61 "key_count": 48,
62 "layout": [
63 { "w": 1, "x": 0, "y": 0 },
64 { "w": 1, "x": 1, "y": 0 },
65 { "w": 1, "x": 2, "y": 0 },
66 { "w": 1, "x": 3, "y": 0 },
67 { "w": 1, "x": 4, "y": 0 },
68 { "w": 1, "x": 5, "y": 0 },
69 { "w": 1, "x": 6, "y": 0 },
70 { "w": 1, "x": 7, "y": 0 },
71 { "w": 1, "x": 8, "y": 0 },
72 { "w": 1, "x": 9, "y": 0 },
73 { "w": 1, "x": 10, "y": 0 },
74 { "w": 1, "x": 11, "y": 0 },
75 { "w": 1, "x": 0, "y": 1 },
76 { "w": 1, "x": 1, "y": 1 },
77 { "w": 1, "x": 2, "y": 1 },
78 { "w": 1, "x": 3, "y": 1 },
79 { "w": 1, "x": 4, "y": 1 },
80 { "w": 1, "x": 5, "y": 1 },
81 { "w": 1, "x": 6, "y": 1 },
82 { "w": 1, "x": 7, "y": 1 },
83 { "w": 1, "x": 8, "y": 1 },
84 { "w": 1, "x": 9, "y": 1 },
85 { "w": 1, "x": 10, "y": 1 },
86 { "w": 1, "x": 11, "y": 1 },
87 { "w": 1, "x": 0, "y": 2 },
88 { "w": 1, "x": 1, "y": 2 },
89 { "w": 1, "x": 2, "y": 2 },
90 { "w": 1, "x": 3, "y": 2 },
91 { "w": 1, "x": 4, "y": 2 },
92 { "w": 1, "x": 5, "y": 2 },
93 { "w": 1, "x": 6, "y": 2 },
94 { "w": 1, "x": 7, "y": 2 },
95 { "w": 1, "x": 8, "y": 2 },
96 { "w": 1, "x": 9, "y": 2 },
97 { "w": 1, "x": 10, "y": 2 },
98 { "w": 1, "x": 11, "y": 2 },
99 { "w": 1, "x": 0, "y": 3 },
100 { "w": 1, "x": 1, "y": 3 },
101 { "w": 1, "x": 2, "y": 3 },
102 { "w": 1, "x": 3, "y": 3 },
103 { "w": 1, "x": 4, "y": 3 },
104 { "w": 1, "x": 5, "y": 3 },
105 { "w": 1, "x": 6, "y": 3 },
106 { "w": 1, "x": 7, "y": 3 },
107 { "w": 1, "x": 8, "y": 3 },
108 { "w": 1, "x": 9, "y": 3 },
109 { "w": 1, "x": 10, "y": 3 },
110 { "w": 1, "x": 11, "y": 3 } ]
111 }
112 }
113}
diff --git a/keyboards/pancake/keymaps/default/keymap.c b/keyboards/pancake/keymaps/default/keymap.c
new file mode 100644
index 000000000..159c97f0f
--- /dev/null
+++ b/keyboards/pancake/keymaps/default/keymap.c
@@ -0,0 +1,90 @@
1#include QMK_KEYBOARD_H
2enum layers {
3 _DEFAULT,
4 _LOWER,
5 _RAISE,
6 _FN
7};
8
9#define LOWER MO(_LOWER)
10#define RAISE MO(_RAISE)
11#define FN MO(_FN)
12
13const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
14
15/* Default
16 * ,-----------------------------------------------------------------------------------.
17 * | Esc | Q | W | E | R | T | Y | U | I | O | P | Bksp |
18 * |------+------+------+------+------+-------------+------+------+------+------+------|
19 * | Tab | A | S | D | F | G | H | J | K | L | " | ; |
20 * |------+------+------+------+------+------|------+------+------+------+------+------|
21 * | Shift| Z | X | C | V | B | N | M | , | . | Up |Enter |
22 * |------+------+------+------+------+------+------+------+------+------+------+------|
23 * | Ctrl | Alt | GUI | FN | Lower| Space |Raise | / | Left | Down |Right |
24 * `-----------------------------------------------------------------------------------'
25 */
26[_DEFAULT] = LAYOUT_ortho_4x12(
27 KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
28 KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_QUOT, KC_SCLN,
29 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_UP, KC_ENT ,
30 KC_LCTL, KC_LALT, KC_LGUI, FN, LOWER, KC_SPC, KC_SPC, RAISE, KC_SLSH, KC_LEFT, KC_DOWN, KC_RGHT
31),
32
33
34/* Lower
35 * ,-----------------------------------------------------------------------------------.
36 * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp |
37 * |------+------+------+------+------+------+------+------+------+------+------+------|
38 * | | | | | | | | | _ | + | | |
39 * |------+------+------+------+------+------+------+------+------+------+------+------|
40 * | | | | | | | | | { | } | Vol+ | |
41 * |------+------+------+------+------+------+------+------+------+------+------+------|
42 * | | | | | | | | ? | | Vol- | |
43 * `-----------------------------------------------------------------------------------'
44 */
45[_LOWER] = LAYOUT_ortho_4x12(
46 KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
47 _______, _______, _______, _______, _______, _______, _______, _______, KC_UNDS, KC_PLUS, _______, KC_PIPE,
48 _______, _______, _______, _______, _______, _______, _______, _______, KC_LCBR, KC_RCBR, KC_VOLU, _______,
49 _______, _______, _______, _______, _______, _______, _______, _______, KC_QUES, _______, KC_VOLD, _______
50),
51
52/* Raise
53 * ,-----------------------------------------------------------------------------------.
54 * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
55 * |------+------+------+------+------+-------------+------+------+------+------+------|
56 * | | | | | | | | | - | = | | \ |
57 * |------+------+------+------+------+------|------+------+------+------+------+------|
58 * | | | | | | | | | [ | ] | Vol- | |
59 * |------+------+------+------+------+------+------+------+------+------+------+------|
60 * | | | | | | | | | | Vol+ | |
61 * `-----------------------------------------------------------------------------------'
62 */
63[_RAISE] = LAYOUT_ortho_4x12(
64 KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
65 _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_EQL, _______, KC_BSLS,
66 _______, _______, _______, _______, _______, _______, _______, _______, KC_LBRC, KC_RBRC, KC_VOLU, _______,
67 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_VOLD, _______
68),
69
70 /* FN
71 * ,-----------------------------------------------------------------------------------.
72 * | Reset| F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | |
73 * |------+------+------+------+------+-------------+------+------+------+------+------|
74 * | | | | | | | | | | F11 | F12 | |
75 * |------+------+------+------+------+------|------+------+------+------+------+------|
76 * | | | | | | | | | | | | |
77 * |------+------+------+------+------+------+------+------+------+------+------+------|
78 * | | | | TRNS | | | | | | | |
79 * `-----------------------------------------------------------------------------------'
80 */
81[_FN] = LAYOUT_ortho_4x12(
82 RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, _______,
83 _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_F11, KC_F12, _______,
84 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
85 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
86),
87
88
89};
90
diff --git a/keyboards/pancake/keymaps/default/readme.md b/keyboards/pancake/keymaps/default/readme.md
new file mode 100644
index 000000000..8b1378917
--- /dev/null
+++ b/keyboards/pancake/keymaps/default/readme.md
@@ -0,0 +1 @@
diff --git a/keyboards/pancake/pancake.c b/keyboards/pancake/pancake.c
new file mode 100644
index 000000000..e01636016
--- /dev/null
+++ b/keyboards/pancake/pancake.c
@@ -0,0 +1,16 @@
1/* Copyright 2019 Sebastian Williams
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 "pancake.h"
diff --git a/keyboards/pancake/pancake.h b/keyboards/pancake/pancake.h
new file mode 100644
index 000000000..cb7756996
--- /dev/null
+++ b/keyboards/pancake/pancake.h
@@ -0,0 +1,44 @@
1/* Copyright 2019 Sebastian Williams
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#pragma once
17
18#include "quantum.h"
19
20#define LAYOUT_planck_mit( \
21 k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, \
22 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, \
23 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, \
24 k300, k301, k302, k303, k304, k305, k307, k308, k309, k310, k311 \
25) \
26{ \
27 { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011 }, \
28 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111 }, \
29 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211 }, \
30 { k300, k301, k302, k303, k304, k305, k305, k307, k308, k309, k310, k311 } \
31}
32
33#define LAYOUT_ortho_4x12( \
34 k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, \
35 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, \
36 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, \
37 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311 \
38) \
39{ \
40 { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011 }, \
41 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111 }, \
42 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211 }, \
43 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311 } \
44}
diff --git a/keyboards/pancake/promicro/config.h b/keyboards/pancake/promicro/config.h
new file mode 100644
index 000000000..3b65ced81
--- /dev/null
+++ b/keyboards/pancake/promicro/config.h
@@ -0,0 +1,22 @@
1/* Copyright 2019 Sebastian Williams
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#pragma once
17#include "config_common.h"
18
19/* Pancake default pinout */
20#define MATRIX_ROW_PINS { B1, B3, B2, B6 }
21#define MATRIX_COL_PINS { F4, F5, F6, F7, E6, B4, B5, D7, C6, D4, D0, D1 }
22#define UNUSED_PINS \ No newline at end of file
diff --git a/keyboards/pancake/promicro/readme.md b/keyboards/pancake/promicro/readme.md
new file mode 100644
index 000000000..8b1378917
--- /dev/null
+++ b/keyboards/pancake/promicro/readme.md
@@ -0,0 +1 @@
diff --git a/keyboards/pancake/promicro/rules.mk b/keyboards/pancake/promicro/rules.mk
new file mode 100644
index 000000000..af964df28
--- /dev/null
+++ b/keyboards/pancake/promicro/rules.mk
@@ -0,0 +1,20 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader
5BOOTLOADER = caterina
6# Build Options
7# comment out to disable the options.
8#
9BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
10MOUSEKEY_ENABLE = no # Mouse keys(+4700)
11EXTRAKEY_ENABLE = no # Audio control and System control(+450)
12CONSOLE_ENABLE = yes # Console for debug(+400)
13COMMAND_ENABLE = yes # Commands for debug and configuration
14SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
15NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
16BACKLIGHT_ENABLE = no # Custom backlighting code is used, so this should not be enabled
17AUDIO_ENABLE = no # This can be enabled if a speaker is connected to the expansion port. Not compatible with RGBLIGHT below
18RGBLIGHT_ENABLE = no # This can be enabled if a ws2812 strip is connected to the expansion port.
19
20LAYOUTS = ortho_4x12 planck_mit
diff --git a/keyboards/pancake/readme.md b/keyboards/pancake/readme.md
new file mode 100644
index 000000000..babaebf3c
--- /dev/null
+++ b/keyboards/pancake/readme.md
@@ -0,0 +1,12 @@
1# Pancake
2
3Ortho 40% Ortho Keyboard with an option for the adafruit feather
4
5Keyboard Maintainer: [Rionlion100](https://github.com/rionlion100)
6Hardware Availability: [GB](https://geekhack.org/index.php?topic=101371.0)
7
8Make example for this keyboard (after setting up your build environment):
9
10 make pancake:default
11
12See 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).