diff options
| author | Eithan Shavit <eithanshavit@users.noreply.github.com> | 2021-01-13 22:51:24 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-13 22:51:24 -0800 |
| commit | 68c3773c8ee9d409b4234f7c55d83567982474d4 (patch) | |
| tree | f1aa81781aedb57e27c49b286937337f124de693 | |
| parent | 5dfb6459df31ce1ca7dcbe57587733995a33de66 (diff) | |
| download | qmk_firmware-68c3773c8ee9d409b4234f7c55d83567982474d4.tar.gz qmk_firmware-68c3773c8ee9d409b4234f7c55d83567982474d4.zip | |
[Keyboard] Add new afternoonlabs/breeze/rev0 split keyboard (#11510)
* Adding new breeze keyboard under afternoonlabs
* Compiling only Rev0, moving readme there
* Apply suggestions from code review
Addressing review comments, removing legacy description config. Removing copy paste leftovers
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Addressing review, remove empty rules.mk
* typos
* Apply suggestions from code review
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Eithan Shavit <eithan@fb.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
| -rw-r--r-- | keyboards/afternoonlabs/breeze/breeze.c | 17 | ||||
| -rw-r--r-- | keyboards/afternoonlabs/breeze/breeze.h | 21 | ||||
| -rw-r--r-- | keyboards/afternoonlabs/breeze/config.h | 22 | ||||
| -rw-r--r-- | keyboards/afternoonlabs/breeze/keymaps/default/keymap.c | 71 | ||||
| -rw-r--r-- | keyboards/afternoonlabs/breeze/keymaps/default/readme.md | 5 | ||||
| -rw-r--r-- | keyboards/afternoonlabs/breeze/rev0/config.h | 47 | ||||
| -rw-r--r-- | keyboards/afternoonlabs/breeze/rev0/info.json | 282 | ||||
| -rw-r--r-- | keyboards/afternoonlabs/breeze/rev0/readme.md | 15 | ||||
| -rw-r--r-- | keyboards/afternoonlabs/breeze/rev0/rev0.c | 17 | ||||
| -rw-r--r-- | keyboards/afternoonlabs/breeze/rev0/rev0.h | 41 | ||||
| -rw-r--r-- | keyboards/afternoonlabs/breeze/rev0/rules.mk | 23 |
11 files changed, 561 insertions, 0 deletions
diff --git a/keyboards/afternoonlabs/breeze/breeze.c b/keyboards/afternoonlabs/breeze/breeze.c new file mode 100644 index 000000000..a39b91c5e --- /dev/null +++ b/keyboards/afternoonlabs/breeze/breeze.c | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* Copyright 2021 eithanshavit | ||
| 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 "breeze.h" | ||
diff --git a/keyboards/afternoonlabs/breeze/breeze.h b/keyboards/afternoonlabs/breeze/breeze.h new file mode 100644 index 000000000..740289961 --- /dev/null +++ b/keyboards/afternoonlabs/breeze/breeze.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | /* Copyright 2021 eithanshavit | ||
| 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 | #ifdef KEYBOARD_afternoonlabs_breeze_rev0 | ||
| 20 | # include "rev0.h" | ||
| 21 | #endif | ||
diff --git a/keyboards/afternoonlabs/breeze/config.h b/keyboards/afternoonlabs/breeze/config.h new file mode 100644 index 000000000..48331fa07 --- /dev/null +++ b/keyboards/afternoonlabs/breeze/config.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* Copyright 2021 eithanshavit | ||
| 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 | #define NO_ACTION_MACRO | ||
| 22 | #define NO_ACTION_FUNCTION | ||
diff --git a/keyboards/afternoonlabs/breeze/keymaps/default/keymap.c b/keyboards/afternoonlabs/breeze/keymaps/default/keymap.c new file mode 100644 index 000000000..85833ce80 --- /dev/null +++ b/keyboards/afternoonlabs/breeze/keymaps/default/keymap.c | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | /* Copyright 2021 eithanshavit | ||
| 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 | enum layer_names { | ||
| 20 | _MAIN, | ||
| 21 | _LOWER, | ||
| 22 | _RAISE, | ||
| 23 | }; | ||
| 24 | |||
| 25 | #define LOWER MO(_LOWER) | ||
| 26 | #define RAISE MO(_RAISE) | ||
| 27 | |||
| 28 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 29 | |||
| 30 | [_MAIN] = LAYOUT( | ||
| 31 | //┌────────┬────────┬────────┬────────┬────────┬────────┐ ┌────────┬────────┬────────┬────────┬────────┬────────┐┌────────┬────────┬────────┐ | ||
| 32 | KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, KC_MINS, KC_EQL, KC_GRV, | ||
| 33 | //├────────┼────────┼────────┼────────┼────────┼────────┤ ├────────┼────────┼────────┼────────┼────────┼────────┤├────────┼────────┼────────┤ | ||
| 34 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, KC_LBRC, KC_RBRC, KC_BSLS, | ||
| 35 | //├────────┼────────┼────────┼────────┼────────┼────────┤ ├────────┼────────┼────────┼────────┼────────┼────────┤├────────┼────────┼────────┤ | ||
| 36 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_UP, | ||
| 37 | //├────────┼────────┼────────┼────────┼────────┼────────┤ ├────────┼────────┼────────┼────────┼────────┼────────┤├────────┼────────┼────────┤ | ||
| 38 | 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_LEFT, KC_DOWN, KC_RIGHT, | ||
| 39 | //└────────┴────────┼────────┼────────┼────────┼────────┼────────┐ ┌────────┼────────┼────────┼────────┴────────┴────────┴────────┘└────────┴────────┴────────┘ | ||
| 40 | KC_LCTL, KC_LALT, KC_LGUI, KC_SPC, KC_ENT, LOWER, RAISE, XXXXXXX | ||
| 41 | // └────────┴────────┴────────┴────────┘ └────────┴────────┴────────┴────────┘ | ||
| 42 | ), | ||
| 43 | |||
| 44 | [_LOWER] = LAYOUT( | ||
| 45 | //┌────────┬────────┬────────┬────────┬────────┬────────┐ ┌────────┬────────┬────────┬────────┬────────┬────────┐┌────────┬────────┬────────┐ | ||
| 46 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 47 | //├────────┼────────┼────────┼────────┼────────┼────────┤ ├────────┼────────┼────────┼────────┼────────┼────────┤├────────┼────────┼────────┤ | ||
| 48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 49 | //├────────┼────────┼────────┼────────┼────────┼────────┤ ├────────┼────────┼────────┼────────┼────────┼────────┤├────────┼────────┼────────┤ | ||
| 50 | _______, _______, _______, _______, _______, _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______, _______, _______, | ||
| 51 | //├────────┼────────┼────────┼────────┼────────┼────────┤ ├────────┼────────┼────────┼────────┼────────┼────────┤├────────┼────────┼────────┤ | ||
| 52 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 53 | //└────────┴────────┼────────┼────────┼────────┼────────┼────────┐ ┌────────┼────────┼────────┼────────┴────────┴────────┴────────┘└────────┴────────┴────────┘ | ||
| 54 | _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 55 | // └────────┴────────┴────────┴────────┘ └────────┴────────┴────────┴────────┘ | ||
| 56 | ), | ||
| 57 | |||
| 58 | [_RAISE] = LAYOUT( | ||
| 59 | //┌────────┬────────┬────────┬────────┬────────┬────────┐ ┌────────┬────────┬────────┬────────┬────────┬────────┐┌────────┬────────┬────────┐ | ||
| 60 | _______, _______, _______, _______, _______, _______, _______, KC_PEQL, KC_PSLS, KC_PAST, KC_PMNS, _______, _______, _______, _______, | ||
| 61 | //├────────┼────────┼────────┼────────┼────────┼────────┤ ├────────┼────────┼────────┼────────┼────────┼────────┤├────────┼────────┼────────┤ | ||
| 62 | _______, _______, _______, _______, _______, _______, _______, KC_P7, KC_P8, KC_P9, KC_PPLS, _______, _______, _______, _______, | ||
| 63 | //├────────┼────────┼────────┼────────┼────────┼────────┤ ├────────┼────────┼────────┼────────┼────────┼────────┤├────────┼────────┼────────┤ | ||
| 64 | _______, _______, _______, _______, _______, _______, _______, KC_P4, KC_P5, KC_P6, _______, _______, _______, | ||
| 65 | //├────────┼────────┼────────┼────────┼────────┼────────┤ ├────────┼────────┼────────┼────────┼────────┼────────┤├────────┼────────┼────────┤ | ||
| 66 | _______, _______, _______, _______, _______, _______, _______, KC_P1, KC_P2, KC_P3, _______, _______, _______, _______, _______, | ||
| 67 | //└────────┴────────┼────────┼────────┼────────┼────────┼────────┐ ┌────────┼────────┼────────┼────────┴────────┴────────┴────────┘└────────┴────────┴────────┘ | ||
| 68 | _______, _______, _______, _______, _______, _______, KC_P0, KC_PDOT | ||
| 69 | // └────────┴────────┴────────┴────────┘ └────────┴────────┴────────┴────────┘ | ||
| 70 | ) | ||
| 71 | }; \ No newline at end of file | ||
diff --git a/keyboards/afternoonlabs/breeze/keymaps/default/readme.md b/keyboards/afternoonlabs/breeze/keymaps/default/readme.md new file mode 100644 index 000000000..6f0349b22 --- /dev/null +++ b/keyboards/afternoonlabs/breeze/keymaps/default/readme.md | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | # Default Breeze Layout | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | This is the default suggested layout for Breeze Split Keyboard. | ||
diff --git a/keyboards/afternoonlabs/breeze/rev0/config.h b/keyboards/afternoonlabs/breeze/rev0/config.h new file mode 100644 index 000000000..7dc9a68f7 --- /dev/null +++ b/keyboards/afternoonlabs/breeze/rev0/config.h | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | /* Copyright 2021 eithanshavit | ||
| 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 | /* USB Device descriptor parameter */ | ||
| 20 | #define VENDOR_ID 0x616C | ||
| 21 | #define PRODUCT_ID 0x0001 | ||
| 22 | #define DEVICE_VER 0x0000 | ||
| 23 | #define MANUFACTURER AfternoonLabs | ||
| 24 | #define PRODUCT Breeze | ||
| 25 | |||
| 26 | /* key matrix size */ | ||
| 27 | // Rows are doubled-up | ||
| 28 | #define MATRIX_ROWS 10 | ||
| 29 | #define MATRIX_COLS 9 | ||
| 30 | |||
| 31 | // wiring of each half | ||
| 32 | #define MATRIX_ROW_PINS \ | ||
| 33 | { F4, F5, F6, F7, B1 } | ||
| 34 | #define MATRIX_COL_PINS \ | ||
| 35 | { B2, D1, D0, D4, C6, D7, E6, B4, B5 } | ||
| 36 | |||
| 37 | #define SPLIT_HAND_PIN B3 | ||
| 38 | |||
| 39 | /* Set 0 if debouncing isn't needed */ | ||
| 40 | #define DEBOUNCE 5 | ||
| 41 | |||
| 42 | #define SOFT_SERIAL_PIN D2 | ||
| 43 | |||
| 44 | #define DIODE_DIRECTION COL2ROW | ||
| 45 | |||
| 46 | #define BOOTMAGIC_LITE_ROW 0 | ||
| 47 | #define BOOTMAGIC_LITE_COL 5 | ||
diff --git a/keyboards/afternoonlabs/breeze/rev0/info.json b/keyboards/afternoonlabs/breeze/rev0/info.json new file mode 100644 index 000000000..982dad51b --- /dev/null +++ b/keyboards/afternoonlabs/breeze/rev0/info.json | |||
| @@ -0,0 +1,282 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Breeze", | ||
| 3 | "url": "afternoonlabs.com/breeze", | ||
| 4 | "productId": "0x0001", | ||
| 5 | "maintainer": "eithanshavit", | ||
| 6 | "width": 19, | ||
| 7 | "height": 6, | ||
| 8 | "layouts": { | ||
| 9 | "LAYOUT": { | ||
| 10 | "layout": [ | ||
| 11 | { | ||
| 12 | "x": 3, | ||
| 13 | "y": 0 | ||
| 14 | }, | ||
| 15 | { | ||
| 16 | "x": 11.75, | ||
| 17 | "y": 0 | ||
| 18 | }, | ||
| 19 | { | ||
| 20 | "x": 2, | ||
| 21 | "y": 0.125 | ||
| 22 | }, | ||
| 23 | { | ||
| 24 | "x": 4, | ||
| 25 | "y": 0.125 | ||
| 26 | }, | ||
| 27 | { | ||
| 28 | "x": 10.75, | ||
| 29 | "y": 0.125 | ||
| 30 | }, | ||
| 31 | { | ||
| 32 | "x": 12.75, | ||
| 33 | "y": 0.125 | ||
| 34 | }, | ||
| 35 | { | ||
| 36 | "x": 5, | ||
| 37 | "y": 0.25 | ||
| 38 | }, | ||
| 39 | { | ||
| 40 | "x": 9.75, | ||
| 41 | "y": 0.25 | ||
| 42 | }, | ||
| 43 | { | ||
| 44 | "x": 0, | ||
| 45 | "y": 0.375 | ||
| 46 | }, | ||
| 47 | { | ||
| 48 | "x": 1, | ||
| 49 | "y": 0.375 | ||
| 50 | }, | ||
| 51 | { | ||
| 52 | "x": 13.75, | ||
| 53 | "y": 0.375 | ||
| 54 | }, | ||
| 55 | { | ||
| 56 | "x": 14.75, | ||
| 57 | "y": 0.375 | ||
| 58 | }, | ||
| 59 | { | ||
| 60 | "x": 16, | ||
| 61 | "y": 0.375 | ||
| 62 | }, | ||
| 63 | { | ||
| 64 | "x": 17, | ||
| 65 | "y": 0.375 | ||
| 66 | }, | ||
| 67 | { | ||
| 68 | "x": 18, | ||
| 69 | "y": 0.375 | ||
| 70 | }, | ||
| 71 | { | ||
| 72 | "x": 3, | ||
| 73 | "y": 1 | ||
| 74 | }, | ||
| 75 | { | ||
| 76 | "x": 11.75, | ||
| 77 | "y": 1 | ||
| 78 | }, | ||
| 79 | { | ||
| 80 | "x": 2, | ||
| 81 | "y": 1.125 | ||
| 82 | }, | ||
| 83 | { | ||
| 84 | "x": 4, | ||
| 85 | "y": 1.125 | ||
| 86 | }, | ||
| 87 | { | ||
| 88 | "x": 10.75, | ||
| 89 | "y": 1.125 | ||
| 90 | }, | ||
| 91 | { | ||
| 92 | "x": 12.75, | ||
| 93 | "y": 1.125 | ||
| 94 | }, | ||
| 95 | { | ||
| 96 | "x": 5, | ||
| 97 | "y": 1.25 | ||
| 98 | }, | ||
| 99 | { | ||
| 100 | "x": 9.75, | ||
| 101 | "y": 1.25 | ||
| 102 | }, | ||
| 103 | { | ||
| 104 | "x": 0, | ||
| 105 | "y": 1.375 | ||
| 106 | }, | ||
| 107 | { | ||
| 108 | "x": 1, | ||
| 109 | "y": 1.375 | ||
| 110 | }, | ||
| 111 | { | ||
| 112 | "x": 13.75, | ||
| 113 | "y": 1.375 | ||
| 114 | }, | ||
| 115 | { | ||
| 116 | "x": 14.75, | ||
| 117 | "y": 1.375 | ||
| 118 | }, | ||
| 119 | { | ||
| 120 | "x": 16, | ||
| 121 | "y": 1.375 | ||
| 122 | }, | ||
| 123 | { | ||
| 124 | "x": 17, | ||
| 125 | "y": 1.375 | ||
| 126 | }, | ||
| 127 | { | ||
| 128 | "x": 18, | ||
| 129 | "y": 1.375 | ||
| 130 | }, | ||
| 131 | { | ||
| 132 | "x": 3, | ||
| 133 | "y": 2 | ||
| 134 | }, | ||
| 135 | { | ||
| 136 | "x": 11.75, | ||
| 137 | "y": 2 | ||
| 138 | }, | ||
| 139 | { | ||
| 140 | "x": 2, | ||
| 141 | "y": 2.125 | ||
| 142 | }, | ||
| 143 | { | ||
| 144 | "x": 4, | ||
| 145 | "y": 2.125 | ||
| 146 | }, | ||
| 147 | { | ||
| 148 | "x": 10.75, | ||
| 149 | "y": 2.125 | ||
| 150 | }, | ||
| 151 | { | ||
| 152 | "x": 12.75, | ||
| 153 | "y": 2.125 | ||
| 154 | }, | ||
| 155 | { | ||
| 156 | "x": 5, | ||
| 157 | "y": 2.25 | ||
| 158 | }, | ||
| 159 | { | ||
| 160 | "x": 9.75, | ||
| 161 | "y": 2.25 | ||
| 162 | }, | ||
| 163 | { | ||
| 164 | "x": 0, | ||
| 165 | "y": 2.375 | ||
| 166 | }, | ||
| 167 | { | ||
| 168 | "x": 1, | ||
| 169 | "y": 2.375 | ||
| 170 | }, | ||
| 171 | { | ||
| 172 | "x": 13.75, | ||
| 173 | "y": 2.375 | ||
| 174 | }, | ||
| 175 | { | ||
| 176 | "x": 14.75, | ||
| 177 | "y": 2.375 | ||
| 178 | }, | ||
| 179 | { | ||
| 180 | "x": 17, | ||
| 181 | "y": 2.375 | ||
| 182 | }, | ||
| 183 | { | ||
| 184 | "x": 3, | ||
| 185 | "y": 3 | ||
| 186 | }, | ||
| 187 | { | ||
| 188 | "x": 11.75, | ||
| 189 | "y": 3 | ||
| 190 | }, | ||
| 191 | { | ||
| 192 | "x": 2, | ||
| 193 | "y": 3.125 | ||
| 194 | }, | ||
| 195 | { | ||
| 196 | "x": 4, | ||
| 197 | "y": 3.125 | ||
| 198 | }, | ||
| 199 | { | ||
| 200 | "x": 10.75, | ||
| 201 | "y": 3.125 | ||
| 202 | }, | ||
| 203 | { | ||
| 204 | "x": 12.75, | ||
| 205 | "y": 3.125 | ||
| 206 | }, | ||
| 207 | { | ||
| 208 | "x": 5, | ||
| 209 | "y": 3.25 | ||
| 210 | }, | ||
| 211 | { | ||
| 212 | "x": 9.75, | ||
| 213 | "y": 3.25 | ||
| 214 | }, | ||
| 215 | { | ||
| 216 | "x": 0, | ||
| 217 | "y": 3.375 | ||
| 218 | }, | ||
| 219 | { | ||
| 220 | "x": 1, | ||
| 221 | "y": 3.375 | ||
| 222 | }, | ||
| 223 | { | ||
| 224 | "x": 13.75, | ||
| 225 | "y": 3.375 | ||
| 226 | }, | ||
| 227 | { | ||
| 228 | "x": 14.75, | ||
| 229 | "y": 3.375 | ||
| 230 | }, | ||
| 231 | { | ||
| 232 | "x": 16, | ||
| 233 | "y": 3.375 | ||
| 234 | }, | ||
| 235 | { | ||
| 236 | "x": 17, | ||
| 237 | "y": 3.375 | ||
| 238 | }, | ||
| 239 | { | ||
| 240 | "x": 18, | ||
| 241 | "y": 3.375 | ||
| 242 | }, | ||
| 243 | { | ||
| 244 | "x": 2.5, | ||
| 245 | "y": 4.25 | ||
| 246 | }, | ||
| 247 | { | ||
| 248 | "x": 3.5, | ||
| 249 | "y": 4.25 | ||
| 250 | }, | ||
| 251 | { | ||
| 252 | "x": 11.25, | ||
| 253 | "y": 4.25 | ||
| 254 | }, | ||
| 255 | { | ||
| 256 | "x": 12.25, | ||
| 257 | "y": 4.25 | ||
| 258 | }, | ||
| 259 | { | ||
| 260 | "x": 4.5, | ||
| 261 | "y": 4.5 | ||
| 262 | }, | ||
| 263 | { | ||
| 264 | "x": 10.25, | ||
| 265 | "y": 4.5 | ||
| 266 | }, | ||
| 267 | { | ||
| 268 | "x": 8.5, | ||
| 269 | "y": 3.75, | ||
| 270 | "h": 2, | ||
| 271 | "r": -30 | ||
| 272 | }, | ||
| 273 | { | ||
| 274 | "x": 6.25, | ||
| 275 | "y": 3.75, | ||
| 276 | "h": 2, | ||
| 277 | "r": 30 | ||
| 278 | } | ||
| 279 | ] | ||
| 280 | } | ||
| 281 | } | ||
| 282 | } | ||
diff --git a/keyboards/afternoonlabs/breeze/rev0/readme.md b/keyboards/afternoonlabs/breeze/rev0/readme.md new file mode 100644 index 000000000..98df3d955 --- /dev/null +++ b/keyboards/afternoonlabs/breeze/rev0/readme.md | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # Breeze | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | Split ergonomics meets productivity. Breeze Rev0 is a split keyboard with 6×4 keys, 4 key thumb cluster, arrow keys, and a 6 key macro cluster, with ortholinear column-staggered. | ||
| 6 | |||
| 7 | * Keyboard Maintainer: [Eithan Shavit](https://github.com/eithanshavit) | ||
| 8 | * Hardware Supported: Breeze Rev0 PCB | ||
| 9 | * Hardware Availability: Coming soon | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make afternoonlabs/breeze/rev0:default | ||
| 14 | |||
| 15 | 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/afternoonlabs/breeze/rev0/rev0.c b/keyboards/afternoonlabs/breeze/rev0/rev0.c new file mode 100644 index 000000000..a39b91c5e --- /dev/null +++ b/keyboards/afternoonlabs/breeze/rev0/rev0.c | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* Copyright 2021 eithanshavit | ||
| 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 "breeze.h" | ||
diff --git a/keyboards/afternoonlabs/breeze/rev0/rev0.h b/keyboards/afternoonlabs/breeze/rev0/rev0.h new file mode 100644 index 000000000..b7d7025be --- /dev/null +++ b/keyboards/afternoonlabs/breeze/rev0/rev0.h | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | /* Copyright 2021 eithanshavit | ||
| 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 "breeze.h" | ||
| 20 | |||
| 21 | #include "quantum.h" | ||
| 22 | |||
| 23 | #define LAYOUT( \ | ||
| 24 | L00, L01, L02, L03, L04, L05, R00, R01, R02, R03, R04, R05, MC0, MC1, MC2, \ | ||
| 25 | L10, L11, L12, L13, L14, L15, R10, R11, R12, R13, R14, R15, MC3, MC4, MC5, \ | ||
| 26 | L20, L21, L22, L23, L24, L25, R20, R21, R22, R23, R24, R25, AUP, \ | ||
| 27 | L30, L31, L32, L33, L34, L35, R30, R31, R32, R33, R34, R35, ALT, ADN, ART, \ | ||
| 28 | LT0, LT1, LT2, LT3, RT0, RT1, RT2, RT3 \ | ||
| 29 | ) \ | ||
| 30 | { \ | ||
| 31 | { L05, L04, L03, L02, L01, L00, KC_NO, KC_NO, KC_NO }, \ | ||
| 32 | { L15, L14, L13, L12, L11, L10, KC_NO, KC_NO, KC_NO }, \ | ||
| 33 | { L25, L24, L23, L22, L21, L20, KC_NO, KC_NO, KC_NO }, \ | ||
| 34 | { L35, L34, L33, L32, L31, L30, KC_NO, KC_NO, KC_NO }, \ | ||
| 35 | { LT3, LT2, LT1, LT0, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO }, \ | ||
| 36 | { R00, R01, R02, R03, R04, R05, MC0, MC1, MC2 }, \ | ||
| 37 | { R10, R11, R12, R13, R14, R15, MC3, MC4, MC5 }, \ | ||
| 38 | { R20, R21, R22, R23, R24, R25, KC_NO, AUP, KC_NO }, \ | ||
| 39 | { R30, R31, R32, R33, R34, R35, ALT, ADN, ART }, \ | ||
| 40 | { RT0, RT1, RT2, RT3, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO }, \ | ||
| 41 | } | ||
diff --git a/keyboards/afternoonlabs/breeze/rev0/rules.mk b/keyboards/afternoonlabs/breeze/rev0/rules.mk new file mode 100644 index 000000000..f73350f58 --- /dev/null +++ b/keyboards/afternoonlabs/breeze/rev0/rules.mk | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | BOOTLOADER = caterina | ||
| 6 | |||
| 7 | # Build Options | ||
| 8 | # change yes to no to disable | ||
| 9 | # | ||
| 10 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 11 | MOUSEKEY_ENABLE = no # Mouse keys | ||
| 12 | EXTRAKEY_ENABLE = no # Audio control and System control | ||
| 13 | CONSOLE_ENABLE = yes # 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 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
| 22 | AUDIO_ENABLE = no # Audio output | ||
| 23 | SPLIT_KEYBOARD = yes | ||
