diff options
| author | Callum Hart <mini-ninja-64@users.noreply.github.com> | 2021-11-19 17:41:12 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-19 09:41:12 -0800 |
| commit | 10c36032a075258516f30da79949a755d67a53a2 (patch) | |
| tree | 1c351ef5e09d2d370e3d55e7d61a5aac49210432 /keyboards/cutie_club | |
| parent | 58e7527e602395b0e90ed2560c390c3a6b493db2 (diff) | |
| download | qmk_firmware-10c36032a075258516f30da79949a755d67a53a2.tar.gz qmk_firmware-10c36032a075258516f30da79949a755d67a53a2.zip | |
[Keyboard] Add Keebcats Dougal PCB (#15168)
Diffstat (limited to 'keyboards/cutie_club')
| -rw-r--r-- | keyboards/cutie_club/keebcats/dougal/config.h | 50 | ||||
| -rw-r--r-- | keyboards/cutie_club/keebcats/dougal/dougal.c | 17 | ||||
| -rw-r--r-- | keyboards/cutie_club/keebcats/dougal/dougal.h | 34 | ||||
| -rw-r--r-- | keyboards/cutie_club/keebcats/dougal/info.json | 84 | ||||
| -rw-r--r-- | keyboards/cutie_club/keebcats/dougal/keymaps/default/keymap.c | 28 | ||||
| -rw-r--r-- | keyboards/cutie_club/keebcats/dougal/keymaps/via/keymap.c | 49 | ||||
| -rw-r--r-- | keyboards/cutie_club/keebcats/dougal/keymaps/via/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/cutie_club/keebcats/dougal/readme.md | 18 | ||||
| -rw-r--r-- | keyboards/cutie_club/keebcats/dougal/rules.mk | 21 |
9 files changed, 302 insertions, 0 deletions
diff --git a/keyboards/cutie_club/keebcats/dougal/config.h b/keyboards/cutie_club/keebcats/dougal/config.h new file mode 100644 index 000000000..05160322c --- /dev/null +++ b/keyboards/cutie_club/keebcats/dougal/config.h | |||
| @@ -0,0 +1,50 @@ | |||
| 1 | /* Copyright 2021 Cutie Club | ||
| 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 "config_common.h" | ||
| 20 | |||
| 21 | /* USB Device descriptor parameter */ | ||
| 22 | #define VENDOR_ID 0xFB9C | ||
| 23 | #define PRODUCT_ID 0xB265 | ||
| 24 | #define DEVICE_VER 0x0000 | ||
| 25 | #define MANUFACTURER Cutie Club | ||
| 26 | #define PRODUCT Keebcats Dougal 65% | ||
| 27 | |||
| 28 | /* key matrix size */ | ||
| 29 | #define MATRIX_ROWS 5 | ||
| 30 | #define MATRIX_COLS 16 | ||
| 31 | |||
| 32 | /* | ||
| 33 | * Keyboard Matrix Assignments | ||
| 34 | */ | ||
| 35 | #define MATRIX_ROW_PINS { B2, D0, F5, F4, F1 } | ||
| 36 | #define MATRIX_COL_PINS { E6, F6, F7, C7, C6, B6, B5, B4, D7, D6, D4, D5, D3, D2, D1, B7 } | ||
| 37 | #define UNUSED_PINS { B0, B1, B3 } | ||
| 38 | |||
| 39 | /* COL2ROW, ROW2COL*/ | ||
| 40 | #define DIODE_DIRECTION COL2ROW | ||
| 41 | |||
| 42 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 43 | #define DEBOUNCE 5 | ||
| 44 | |||
| 45 | #define LED_CAPS_LOCK_PIN F0 | ||
| 46 | |||
| 47 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 48 | #define LOCKING_SUPPORT_ENABLE | ||
| 49 | /* Locking resynchronize hack */ | ||
| 50 | #define LOCKING_RESYNC_ENABLE | ||
diff --git a/keyboards/cutie_club/keebcats/dougal/dougal.c b/keyboards/cutie_club/keebcats/dougal/dougal.c new file mode 100644 index 000000000..8f247bd28 --- /dev/null +++ b/keyboards/cutie_club/keebcats/dougal/dougal.c | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* Copyright 2021 Cutie Club | ||
| 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 "dougal.h" | ||
diff --git a/keyboards/cutie_club/keebcats/dougal/dougal.h b/keyboards/cutie_club/keebcats/dougal/dougal.h new file mode 100644 index 000000000..cd0fa1d2c --- /dev/null +++ b/keyboards/cutie_club/keebcats/dougal/dougal.h | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | /* Copyright 2021 Cutie Club | ||
| 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 LAYOUT_all( \ | ||
| 22 | k00_00, k00_01, k00_02, k00_03, k00_04, k00_05, k00_06, k00_07, k00_08, k00_09, k00_10, k00_11, k00_12, k00_13, k00_14, k00_15, \ | ||
| 23 | k01_00, k01_01, k01_02, k01_03, k01_04, k01_05, k01_06, k01_07, k01_08, k01_09, k01_10, k01_11, k01_12, k01_13, k01_15, \ | ||
| 24 | k02_00, k02_01, k02_02, k02_03, k02_04, k02_05, k02_06, k02_07, k02_08, k02_09, k02_10, k02_11, k02_12, k02_13, k02_15, \ | ||
| 25 | k03_00, k03_01, k03_02, k03_03, k03_04, k03_05, k03_06, k03_07, k03_08, k03_09, k03_10, k03_11, k03_12, k03_13, k03_15, \ | ||
| 26 | k04_00, k04_01, k04_02, k04_04, k04_06, k04_08, k04_09, k04_10, k04_11, k04_12, k04_13, k04_15 \ | ||
| 27 | ) \ | ||
| 28 | { \ | ||
| 29 | { k00_00, k00_01, k00_02, k00_03, k00_04, k00_05, k00_06, k00_07, k00_08, k00_09, k00_10, k00_11, k00_12, k00_13, k00_14, k00_15 }, \ | ||
| 30 | { k01_00, k01_01, k01_02, k01_03, k01_04, k01_05, k01_06, k01_07, k01_08, k01_09, k01_10, k01_11, k01_12, k01_13, KC_NO, k01_15 }, \ | ||
| 31 | { k02_00, k02_01, k02_02, k02_03, k02_04, k02_05, k02_06, k02_07, k02_08, k02_09, k02_10, k02_11, k02_12, k02_13, KC_NO, k02_15 }, \ | ||
| 32 | { k03_00, k03_01, k03_02, k03_03, k03_04, k03_05, k03_06, k03_07, k03_08, k03_09, k03_10, k03_11, k03_12, k03_13, KC_NO, k03_15 }, \ | ||
| 33 | { k04_00, k04_01, k04_02, KC_NO, k04_04, KC_NO, k04_06, KC_NO, k04_08, k04_09, k04_10, k04_11, k04_12, k04_13, KC_NO, k04_15 } \ | ||
| 34 | } | ||
diff --git a/keyboards/cutie_club/keebcats/dougal/info.json b/keyboards/cutie_club/keebcats/dougal/info.json new file mode 100644 index 000000000..70c804e20 --- /dev/null +++ b/keyboards/cutie_club/keebcats/dougal/info.json | |||
| @@ -0,0 +1,84 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Keebcats Dougal", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "Cutie Club", | ||
| 5 | "layouts": { | ||
| 6 | "LAYOUT_all": { | ||
| 7 | "layout": [ | ||
| 8 | { "x": 0, "y": 0 }, | ||
| 9 | { "x": 1, "y": 0 }, | ||
| 10 | { "x": 2, "y": 0 }, | ||
| 11 | { "x": 3, "y": 0 }, | ||
| 12 | { "x": 4, "y": 0 }, | ||
| 13 | { "x": 5, "y": 0 }, | ||
| 14 | { "x": 6, "y": 0 }, | ||
| 15 | { "x": 7, "y": 0 }, | ||
| 16 | { "x": 8, "y": 0 }, | ||
| 17 | { "x": 9, "y": 0 }, | ||
| 18 | { "x": 10, "y": 0 }, | ||
| 19 | { "x": 11, "y": 0 }, | ||
| 20 | { "x": 12, "y": 0 }, | ||
| 21 | { "x": 13, "y": 0 }, | ||
| 22 | { "x": 14, "y": 0 }, | ||
| 23 | { "x": 15, "y": 0 }, | ||
| 24 | { "x": 0, "y": 1, "w": 1.5 }, | ||
| 25 | { "x": 1.5, "y": 1 }, | ||
| 26 | { "x": 2.5, "y": 1 }, | ||
| 27 | { "x": 3.5, "y": 1 }, | ||
| 28 | { "x": 4.5, "y": 1 }, | ||
| 29 | { "x": 5.5, "y": 1 }, | ||
| 30 | { "x": 6.5, "y": 1 }, | ||
| 31 | { "x": 7.5, "y": 1 }, | ||
| 32 | { "x": 8.5, "y": 1 }, | ||
| 33 | { "x": 9.5, "y": 1 }, | ||
| 34 | { "x": 10.5, "y": 1 }, | ||
| 35 | { "x": 11.5, "y": 1 }, | ||
| 36 | { "x": 12.5, "y": 1 }, | ||
| 37 | { "x": 13.5, "y": 1, "w": 1.5 }, | ||
| 38 | { "x": 15, "y": 1 }, | ||
| 39 | { "x": 0, "y": 2, "w": 1.75 }, | ||
| 40 | { "x": 1.75, "y": 2 }, | ||
| 41 | { "x": 2.75, "y": 2 }, | ||
| 42 | { "x": 3.75, "y": 2 }, | ||
| 43 | { "x": 4.75, "y": 2 }, | ||
| 44 | { "x": 5.75, "y": 2 }, | ||
| 45 | { "x": 6.75, "y": 2 }, | ||
| 46 | { "x": 7.75, "y": 2 }, | ||
| 47 | { "x": 8.75, "y": 2 }, | ||
| 48 | { "x": 9.75, "y": 2 }, | ||
| 49 | { "x": 10.75, "y": 2 }, | ||
| 50 | { "x": 11.75, "y": 2 }, | ||
| 51 | { "x": 12.75, "y": 2 }, | ||
| 52 | { "x": 14, "y": 2 }, | ||
| 53 | { "x": 15, "y": 2 }, | ||
| 54 | { "x": 0, "y": 3, "w": 1.25 }, | ||
| 55 | { "x": 1.25, "y": 3 }, | ||
| 56 | { "x": 2.25, "y": 3 }, | ||
| 57 | { "x": 3.25, "y": 3 }, | ||
| 58 | { "x": 4.25, "y": 3 }, | ||
| 59 | { "x": 5.25, "y": 3 }, | ||
| 60 | { "x": 6.25, "y": 3 }, | ||
| 61 | { "x": 7.25, "y": 3 }, | ||
| 62 | { "x": 8.25, "y": 3 }, | ||
| 63 | { "x": 9.25, "y": 3 }, | ||
| 64 | { "x": 10.25, "y": 3 }, | ||
| 65 | { "x": 11.25, "y": 3 }, | ||
| 66 | { "x": 12.25, "y": 3, "w": 1.75 }, | ||
| 67 | { "x": 14, "y": 3 }, | ||
| 68 | { "x": 15, "y": 3 }, | ||
| 69 | { "x": 0, "y": 4, "w": 1.25 }, | ||
| 70 | { "x": 1.25, "y": 4, "w": 1.25 }, | ||
| 71 | { "x": 2.5, "y": 4, "w": 1.25 }, | ||
| 72 | { "x": 3.75, "y": 4, "w": 2.25 }, | ||
| 73 | { "x": 6, "y": 4, "w": 1.25 }, | ||
| 74 | { "x": 7.25, "y": 4, "w": 2.75 }, | ||
| 75 | { "x": 10, "y": 4 }, | ||
| 76 | { "x": 11, "y": 4 }, | ||
| 77 | { "x": 12, "y": 4 }, | ||
| 78 | { "x": 13, "y": 4 }, | ||
| 79 | { "x": 14, "y": 4 }, | ||
| 80 | { "x": 15, "y": 4 } | ||
| 81 | ] | ||
| 82 | } | ||
| 83 | } | ||
| 84 | } | ||
diff --git a/keyboards/cutie_club/keebcats/dougal/keymaps/default/keymap.c b/keyboards/cutie_club/keebcats/dougal/keymaps/default/keymap.c new file mode 100644 index 000000000..ec3e1c21f --- /dev/null +++ b/keyboards/cutie_club/keebcats/dougal/keymaps/default/keymap.c | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | /* Copyright 2021 Cutie Club | ||
| 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 QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 20 | /* Base */ | ||
| 21 | [0] = LAYOUT_all( | ||
| 22 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_BSPC, KC_DEL, | ||
| 23 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_HOME, | ||
| 24 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT, KC_PGUP, | ||
| 25 | 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, KC_PGDN, | ||
| 26 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RGUI, KC_RCTRL, KC_LEFT, KC_DOWN, KC_RIGHT | ||
| 27 | ) | ||
| 28 | }; | ||
diff --git a/keyboards/cutie_club/keebcats/dougal/keymaps/via/keymap.c b/keyboards/cutie_club/keebcats/dougal/keymaps/via/keymap.c new file mode 100644 index 000000000..58d184a06 --- /dev/null +++ b/keyboards/cutie_club/keebcats/dougal/keymaps/via/keymap.c | |||
| @@ -0,0 +1,49 @@ | |||
| 1 | /* Copyright 2021 Cutie Club | ||
| 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 QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 20 | /* Base */ | ||
| 21 | [0] = LAYOUT_all( | ||
| 22 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_BSPC, KC_DEL, | ||
| 23 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_HOME, | ||
| 24 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT, KC_PGUP, | ||
| 25 | 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, KC_PGDN, | ||
| 26 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_RALT, KC_RGUI, KC_RCTRL, KC_LEFT, KC_DOWN, KC_RIGHT | ||
| 27 | ), | ||
| 28 | [1] = LAYOUT_all( | ||
| 29 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 30 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 31 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 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 | ||
| 34 | ), | ||
| 35 | [2] = LAYOUT_all( | ||
| 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, 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, 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, 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, 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 | ||
| 41 | ), | ||
| 42 | [3] = LAYOUT_all( | ||
| 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, 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, KC_TRNS, | ||
| 46 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 47 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS | ||
| 48 | ) | ||
| 49 | }; | ||
diff --git a/keyboards/cutie_club/keebcats/dougal/keymaps/via/rules.mk b/keyboards/cutie_club/keebcats/dougal/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/cutie_club/keebcats/dougal/keymaps/via/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| VIA_ENABLE = yes | |||
diff --git a/keyboards/cutie_club/keebcats/dougal/readme.md b/keyboards/cutie_club/keebcats/dougal/readme.md new file mode 100644 index 000000000..3c0dd932a --- /dev/null +++ b/keyboards/cutie_club/keebcats/dougal/readme.md | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | # Dougal | ||
| 2 | |||
| 3 | * Keyboard Maintainer: [Cutie Club](https://github.com/cutie-club/) | ||
| 4 | * Hardware Supported: Atmega32u4 based 65% PCB, with wide compatibility | ||
| 5 | * Hardware Availability: [Keebcats](https://keebcats.co.uk) | ||
| 6 | |||
| 7 | ## Bootloader | ||
| 8 | |||
| 9 | Enter the bootloader in 2 ways with the default configuration: | ||
| 10 | |||
| 11 | * **Bootmagic reset**: Hold down the key at top left key (matrix position 0,0) and plug the device in | ||
| 12 | * **Physical reset button**: Press the button marked reset on the back of the PCB | ||
| 13 | |||
| 14 | Make example for this keyboard (after setting up your build environment): | ||
| 15 | |||
| 16 | make cutie_club/keebcats/dougal:default | ||
| 17 | |||
| 18 | See 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/cutie_club/keebcats/dougal/rules.mk b/keyboards/cutie_club/keebcats/dougal/rules.mk new file mode 100644 index 000000000..05c513615 --- /dev/null +++ b/keyboards/cutie_club/keebcats/dougal/rules.mk | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | BOOTLOADER = atmel-dfu | ||
| 6 | |||
| 7 | # Build Options | ||
| 8 | # change yes to no to disable | ||
| 9 | # | ||
| 10 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic | ||
| 11 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 13 | CONSOLE_ENABLE = no # Console for debug | ||
| 14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 15 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 16 | SLEEP_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 | ||
| 18 | NKRO_ENABLE = no # USB Nkey Rollover | ||
| 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 21 | AUDIO_ENABLE = no # Audio output | ||
