diff options
Diffstat (limited to 'keyboards/afternoonlabs/gust')
-rw-r--r-- | keyboards/afternoonlabs/gust/config.h | 19 | ||||
-rw-r--r-- | keyboards/afternoonlabs/gust/gust.c | 17 | ||||
-rw-r--r-- | keyboards/afternoonlabs/gust/gust.h | 21 | ||||
-rw-r--r-- | keyboards/afternoonlabs/gust/keymaps/default/keymap.c | 38 | ||||
-rw-r--r-- | keyboards/afternoonlabs/gust/keymaps/default/readme.md | 5 | ||||
-rw-r--r-- | keyboards/afternoonlabs/gust/rev1/config.h | 34 | ||||
-rw-r--r-- | keyboards/afternoonlabs/gust/rev1/info.json | 53 | ||||
-rw-r--r-- | keyboards/afternoonlabs/gust/rev1/readme.md | 15 | ||||
-rw-r--r-- | keyboards/afternoonlabs/gust/rev1/rev1.c | 17 | ||||
-rw-r--r-- | keyboards/afternoonlabs/gust/rev1/rev1.h | 32 | ||||
-rw-r--r-- | keyboards/afternoonlabs/gust/rev1/rules.mk | 18 |
11 files changed, 0 insertions, 269 deletions
diff --git a/keyboards/afternoonlabs/gust/config.h b/keyboards/afternoonlabs/gust/config.h deleted file mode 100644 index 0b832322a3..0000000000 --- a/keyboards/afternoonlabs/gust/config.h +++ /dev/null @@ -1,19 +0,0 @@ -/* Copyright 2021 eithanshavit - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#pragma once - -#include "config_common.h" diff --git a/keyboards/afternoonlabs/gust/gust.c b/keyboards/afternoonlabs/gust/gust.c deleted file mode 100644 index ee2a9fa5ca..0000000000 --- a/keyboards/afternoonlabs/gust/gust.c +++ /dev/null @@ -1,17 +0,0 @@ -/* Copyright 2021 eithanshavit - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#include "gust.h" diff --git a/keyboards/afternoonlabs/gust/gust.h b/keyboards/afternoonlabs/gust/gust.h deleted file mode 100644 index 886dc3786f..0000000000 --- a/keyboards/afternoonlabs/gust/gust.h +++ /dev/null @@ -1,21 +0,0 @@ -/* Copyright 2021 eithanshavit - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#pragma once - -#ifdef KEYBOARD_afternoonlabs_gust_rev1 -# include "rev1.h" -#endif diff --git a/keyboards/afternoonlabs/gust/keymaps/default/keymap.c b/keyboards/afternoonlabs/gust/keymaps/default/keymap.c deleted file mode 100644 index ae5fb39592..0000000000 --- a/keyboards/afternoonlabs/gust/keymaps/default/keymap.c +++ /dev/null @@ -1,38 +0,0 @@ -/* Copyright 2021 eithanshavit - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#include QMK_KEYBOARD_H - -enum layer_names { - _MAIN, -}; - - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - - [_MAIN] = LAYOUT( - //┌─────────┬─────────┬─────────┐ - KC_1, KC_2, KC_3, - //├─────────┼─────────┼─────────┤ - KC_4, KC_5, KC_6, - //├─────────┼─────────┼─────────┤ - - //├─────────┼─────────┼─────────┤ - KC_7, KC_8, KC_9 - //└─────────┴─────────┴─────────┘ - ) - -}; diff --git a/keyboards/afternoonlabs/gust/keymaps/default/readme.md b/keyboards/afternoonlabs/gust/keymaps/default/readme.md deleted file mode 100644 index 2a22d53a43..0000000000 --- a/keyboards/afternoonlabs/gust/keymaps/default/readme.md +++ /dev/null @@ -1,5 +0,0 @@ -# Default Gust Layout - -![Gust Layout Image](https://i.imgur.com/HfouVnS.png) - -This is the default layout for Gust Macro Board. diff --git a/keyboards/afternoonlabs/gust/rev1/config.h b/keyboards/afternoonlabs/gust/rev1/config.h deleted file mode 100644 index c2f4290a0b..0000000000 --- a/keyboards/afternoonlabs/gust/rev1/config.h +++ /dev/null @@ -1,34 +0,0 @@ -/* Copyright 2021 eithanshavit - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#pragma once - -/* key matrix size */ -// Rows are doubled-up -#define MATRIX_ROWS 3 -#define MATRIX_COLS 3 - -// wiring of each half -#define MATRIX_ROW_PINS { F5, F4, D0 } -#define MATRIX_COL_PINS { D1, D2, D3 } - -/* Set 0 if debouncing isn't needed */ -#define DEBOUNCE 5 - -#define DIODE_DIRECTION COL2ROW - -#define BOOTMAGIC_LITE_ROW 0 -#define BOOTMAGIC_LITE_COL 0 diff --git a/keyboards/afternoonlabs/gust/rev1/info.json b/keyboards/afternoonlabs/gust/rev1/info.json deleted file mode 100644 index 643e9fbf25..0000000000 --- a/keyboards/afternoonlabs/gust/rev1/info.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "keyboard_name": "Gust", - "manufacturer": "AfternoonLabs", - "url": "afternoonlabs.com/breeze", - "maintainer": "eithanshavit", - "usb": { - "vid": "0x616C", - "pid": "0x0002", - "device_version": "0.0.1" - }, - "layouts": { - "LAYOUT": { - "layout": [ - { - "x": 0, - "y": 0 - }, - { - "x": 1, - "y": 0 - }, - { - "x": 2, - "y": 0 - }, - { - "x": 0, - "y": 1 - }, - { - "x": 1, - "y": 1 - }, - { - "x": 2, - "y": 1 - }, - { - "x": 0, - "y": 3 - }, - { - "x": 1, - "y": 3 - }, - { - "x": 2, - "y": 3 - } - ] - } - } -} diff --git a/keyboards/afternoonlabs/gust/rev1/readme.md b/keyboards/afternoonlabs/gust/rev1/readme.md deleted file mode 100644 index 9192d1a35b..0000000000 --- a/keyboards/afternoonlabs/gust/rev1/readme.md +++ /dev/null @@ -1,15 +0,0 @@ -# Gust - -![Gust](https://i.imgur.com/S94jViT.jpeg) - -Gust Macro Board is a simple 3x3 key macro board. The bottom row can be snapped off to get a 2x3 board. Gust comes as a free bonus with the [Breeze Split Keyboard](https://afternoonlabs.com/breeze). - -* Keyboard Maintainer: [Afternoon Labs](https://github.com/afternoonlabs) -* Hardware Supported: Gust Rev1 PCB -* Hardware Availability: [store.afternoonlab.com](https://store.afternoonlabs.com) - -Make example for this keyboard (after setting up your build environment): - - make afternoonlabs/gust/rev1:default - -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/gust/rev1/rev1.c b/keyboards/afternoonlabs/gust/rev1/rev1.c deleted file mode 100644 index ee2a9fa5ca..0000000000 --- a/keyboards/afternoonlabs/gust/rev1/rev1.c +++ /dev/null @@ -1,17 +0,0 @@ -/* Copyright 2021 eithanshavit - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#include "gust.h" diff --git a/keyboards/afternoonlabs/gust/rev1/rev1.h b/keyboards/afternoonlabs/gust/rev1/rev1.h deleted file mode 100644 index 22c1910a1f..0000000000 --- a/keyboards/afternoonlabs/gust/rev1/rev1.h +++ /dev/null @@ -1,32 +0,0 @@ -/* Copyright 2021 eithanshavit - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#pragma once - -#include "gust.h" - -#include "quantum.h" - -#define LAYOUT( \ - M00, M01, M02, \ - M10, M11, M12, \ - M20, M21, M22 \ -) \ -{ \ - { M00, M01, M02 }, \ - { M10, M11, M12 }, \ - { M20, M21, M22 } \ -} diff --git a/keyboards/afternoonlabs/gust/rev1/rules.mk b/keyboards/afternoonlabs/gust/rev1/rules.mk deleted file mode 100644 index b33e485f99..0000000000 --- a/keyboards/afternoonlabs/gust/rev1/rules.mk +++ /dev/null @@ -1,18 +0,0 @@ -# MCU name -MCU = atmega32u4 - -# Bootloader selection -BOOTLOADER = caterina - -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite -MOUSEKEY_ENABLE = yes # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = no # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output
\ No newline at end of file |