diff options
Diffstat (limited to 'keyboards/handwired/6macro')
-rw-r--r-- | keyboards/handwired/6macro/6macro.c | 16 | ||||
-rw-r--r-- | keyboards/handwired/6macro/6macro.h | 35 | ||||
-rw-r--r-- | keyboards/handwired/6macro/config.h | 62 | ||||
-rw-r--r-- | keyboards/handwired/6macro/info.json | 16 | ||||
-rw-r--r-- | keyboards/handwired/6macro/keymaps/default/config.h | 18 | ||||
-rw-r--r-- | keyboards/handwired/6macro/keymaps/default/keymap.c | 56 | ||||
-rw-r--r-- | keyboards/handwired/6macro/keymaps/default/readme.md | 15 | ||||
-rw-r--r-- | keyboards/handwired/6macro/keymaps/osu/config.h | 18 | ||||
-rw-r--r-- | keyboards/handwired/6macro/keymaps/osu/keymap.c | 56 | ||||
-rw-r--r-- | keyboards/handwired/6macro/keymaps/osu/readme.md | 15 | ||||
-rw-r--r-- | keyboards/handwired/6macro/readme.md | 15 | ||||
-rw-r--r-- | keyboards/handwired/6macro/rules.mk | 21 |
12 files changed, 0 insertions, 343 deletions
diff --git a/keyboards/handwired/6macro/6macro.c b/keyboards/handwired/6macro/6macro.c deleted file mode 100644 index 0a62bedf16..0000000000 --- a/keyboards/handwired/6macro/6macro.c +++ /dev/null @@ -1,16 +0,0 @@ -/* Copyright 2019 joaofbmaia - * - * 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 "6macro.h" diff --git a/keyboards/handwired/6macro/6macro.h b/keyboards/handwired/6macro/6macro.h deleted file mode 100644 index c1d5005128..0000000000 --- a/keyboards/handwired/6macro/6macro.h +++ /dev/null @@ -1,35 +0,0 @@ -/* Copyright 2019 joaofbmaia - * - * 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 "quantum.h" - -/* This a shortcut to help you visually see your layout. - * - * The first section contains all of the arguments representing the physical - * layout of the board and position of the keys. - * - * The second converts the arguments into a two-dimensional array which - * represents the switch matrix. - */ -#define LAYOUT( \ - k00, k01, k02, \ - k10, k11, k12 \ -) \ -{ \ - { k00, k01, k02 }, \ - { k10, k11, k12 }, \ -} diff --git a/keyboards/handwired/6macro/config.h b/keyboards/handwired/6macro/config.h deleted file mode 100644 index 1e8c296855..0000000000 --- a/keyboards/handwired/6macro/config.h +++ /dev/null @@ -1,62 +0,0 @@ -/* -Copyright 2019 joaofbmaia - -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" - -/* key matrix size */ -#define MATRIX_ROWS 2 -#define MATRIX_COLS 3 - -/* pinout - DON'T CHANGE */ -#define MATRIX_ROW_PINS { B3, B4 } -#define MATRIX_COL_PINS { B0, B1, B2 } - -/* COL2ROW, ROW2COL*/ -#define DIODE_DIRECTION COL2ROW - -#define RGB_DI_PIN D2 -#define RGBLED_NUM 10 -#define DRIVER_LED_TOTAL RGBLED_NUM -#define RGBLIGHT_HUE_STEP 10 -#define RGBLIGHT_SAT_STEP 17 -#define RGBLIGHT_VAL_STEP 17 -#define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ -// #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ -// /*== all animations enable ==*/ -// #define RGBLIGHT_ANIMATIONS -// /*== or choose animations ==*/ -#define RGBLIGHT_EFFECT_BREATHING -#define RGBLIGHT_EFFECT_RAINBOW_MOOD -#define RGBLIGHT_EFFECT_RAINBOW_SWIRL -#define RGBLIGHT_EFFECT_SNAKE -#define RGBLIGHT_EFFECT_KNIGHT -// #define RGBLIGHT_EFFECT_CHRISTMAS -#define RGBLIGHT_EFFECT_STATIC_GRADIENT -// #define RGBLIGHT_EFFECT_RGB_TEST -// #define RGBLIGHT_EFFECT_ALTERNATING -// /*== customize breathing effect ==*/ -// /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ -// #define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64 -// /*==== use exp() and sin() ====*/ -// #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7 -// #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255 - - -/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ -#define DEBOUNCE 5 diff --git a/keyboards/handwired/6macro/info.json b/keyboards/handwired/6macro/info.json deleted file mode 100644 index 2fd8e24a5b..0000000000 --- a/keyboards/handwired/6macro/info.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "keyboard_name": "6macro", - "manufacturer": "joaofbmaia", - "url": "", - "maintainer": "joaofbmaia", - "usb": { - "vid": "0xFEED", - "pid": "0x0037", - "device_version": "0.0.1" - }, - "layouts": { - "LAYOUT": { - "layout": [{"label":"k00", "x":0, "y":0}, {"label":"k01", "x":1, "y":0}, {"label":"k02", "x":2, "y":0}, {"label":"k10", "x":0, "y":1}, {"label":"k11", "x":1, "y":1}, {"label":"k12", "x":2, "y":1}] - } - } - } diff --git a/keyboards/handwired/6macro/keymaps/default/config.h b/keyboards/handwired/6macro/keymaps/default/config.h deleted file mode 100644 index 64ba57443f..0000000000 --- a/keyboards/handwired/6macro/keymaps/default/config.h +++ /dev/null @@ -1,18 +0,0 @@ -/* Copyright 2019 joaofbmaia - * - * 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 - diff --git a/keyboards/handwired/6macro/keymaps/default/keymap.c b/keyboards/handwired/6macro/keymaps/default/keymap.c deleted file mode 100644 index 26c6f84dcd..0000000000 --- a/keyboards/handwired/6macro/keymaps/default/keymap.c +++ /dev/null @@ -1,56 +0,0 @@ -/* Copyright 2019 joaofbmaia - * - * 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 - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - - /* LAYER 0 - * ,-----------------------. - * | F13 | F14 | F15/FN| Hold for FN - * |-------+-------+-------| - * | F16 | F17 | F18 | - * `-------+-------+-------' - */ - [0] = LAYOUT( - KC_F13, KC_F14, LT(1, KC_F15), - KC_F16, KC_F17, KC_F18 - ), - - /* LAYER 1 - * ,-----------------------. - * |RGB_TOG|RGBMOD+| | - * |-------+-------+-------| - * |RGBHUE+|RGBBRI+|Spec FN| Hold along with previous to access special funtions (QK_BOOT) - * `-------+-------+-------' - */ - [1] = LAYOUT( - RGB_TOG, RGB_MOD, KC_TRNS, - RGB_HUI, RGB_VAI, MO(2) - ), - - /* LAYER 2 - * ,-----------------------. - * | QK_BOOT |RGBMOD-| | - * |-------+-------+-------| - * |RGBHUE-|RGBBRI-| | - * `-------+-------+-------' - */ - [2] = LAYOUT( - QK_BOOT, RGB_RMOD, KC_NO, - RGB_HUD, RGB_VAD, KC_TRNS - ) - -}; diff --git a/keyboards/handwired/6macro/keymaps/default/readme.md b/keyboards/handwired/6macro/keymaps/default/readme.md deleted file mode 100644 index dd42a8fc62..0000000000 --- a/keyboards/handwired/6macro/keymaps/default/readme.md +++ /dev/null @@ -1,15 +0,0 @@ -Layer 0: - -![Layer 0](https://raw.githubusercontent.com/joaofbmaia/6macro/master/layer0_default.png) - -Layer 1: - -![Layer 1](https://raw.githubusercontent.com/joaofbmaia/6macro/master/layer1.png) - -Layer 2: - -![Layer 2](https://raw.githubusercontent.com/joaofbmaia/6macro/master/layer2.png) - -# Default 6macro Layout - -This is the default layout. Layer 0 is mappped to function keys 13-18. Top right key switches to layer above when held. Upper layers are for RGB control.
\ No newline at end of file diff --git a/keyboards/handwired/6macro/keymaps/osu/config.h b/keyboards/handwired/6macro/keymaps/osu/config.h deleted file mode 100644 index 64ba57443f..0000000000 --- a/keyboards/handwired/6macro/keymaps/osu/config.h +++ /dev/null @@ -1,18 +0,0 @@ -/* Copyright 2019 joaofbmaia - * - * 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 - diff --git a/keyboards/handwired/6macro/keymaps/osu/keymap.c b/keyboards/handwired/6macro/keymaps/osu/keymap.c deleted file mode 100644 index c3ee0f2ccf..0000000000 --- a/keyboards/handwired/6macro/keymaps/osu/keymap.c +++ /dev/null @@ -1,56 +0,0 @@ -/* Copyright 2019 joaofbmaia - * - * 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 - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - - /* LAYER 0 - * ,-----------------------. - * | ESC | ~ | SPC/FN| Hold for FN - * |-------+-------+-------| - * | C | Z | X | - * `-------+-------+-------' - */ - [0] = LAYOUT( - KC_ESC, KC_GRAVE, LT(1, KC_SPC), \ - KC_C, KC_Z, KC_X \ - ), - - /* LAYER 1 - * ,-----------------------. - * |RGB_TOG|RGBMOD+| | - * |-------+-------+-------| - * |RGBHUE+|RGBBRI+|Spec FN| Hold along with previous to access special funtions (QK_BOOT) - * `-------+-------+-------' - */ - [1] = LAYOUT( - RGB_TOG, RGB_MOD, KC_TRNS, \ - RGB_HUI, RGB_VAI, MO(2) \ - ), - - /* LAYER 2 - * ,-----------------------. - * | QK_BOOT |RGBMOD-| | - * |-------+-------+-------| - * |RGBHUE-|RGBBRI-| | - * `-------+-------+-------' - */ - [2] = LAYOUT( - QK_BOOT, RGB_RMOD, KC_NO, \ - RGB_HUD, RGB_VAD, KC_TRNS \ - ) - -}; diff --git a/keyboards/handwired/6macro/keymaps/osu/readme.md b/keyboards/handwired/6macro/keymaps/osu/readme.md deleted file mode 100644 index 0de5d6bf2e..0000000000 --- a/keyboards/handwired/6macro/keymaps/osu/readme.md +++ /dev/null @@ -1,15 +0,0 @@ -Layer 0: - -![Layer 0](https://raw.githubusercontent.com/joaofbmaia/6macro/master/layer0_osu.png) - -Layer 1: - -![Layer 1](https://raw.githubusercontent.com/joaofbmaia/6macro/master/layer1.png) - -Layer 2: - -![Layer 2](https://raw.githubusercontent.com/joaofbmaia/6macro/master/layer2.png) - -# OSU 6macro Layout - -This layout is for the game OSU. Layer 0 is mappped as shown above. Top right key switches to layer above when held. Upper layers are for RGB control.
\ No newline at end of file diff --git a/keyboards/handwired/6macro/readme.md b/keyboards/handwired/6macro/readme.md deleted file mode 100644 index 3fbd917c80..0000000000 --- a/keyboards/handwired/6macro/readme.md +++ /dev/null @@ -1,15 +0,0 @@ -# 6macro - -![6macro photo](https://raw.githubusercontent.com/joaofbmaia/6macro/master/photo.jpg) -![6macro photo with RGB](https://raw.githubusercontent.com/joaofbmaia/6macro/master/photo_rgb.jpg) - -This is a 6-key keyboard intended for macros or as a dedicated controller for games with few bindings. - -Keyboard Maintainer: [joaofbmaia](https://github.com/joaofbmaia) -Hardware: https://github.com/joaofbmaia/6macro - -Make example for this keyboard (after setting up your build environment): - - make handwired/6macro: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/handwired/6macro/rules.mk b/keyboards/handwired/6macro/rules.mk deleted file mode 100644 index 73fc9f4951..0000000000 --- a/keyboards/handwired/6macro/rules.mk +++ /dev/null @@ -1,21 +0,0 @@ -# MCU name -MCU = atmega32u2 - -# Bootloader selection -BOOTLOADER = atmel-dfu - -# 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 = yes # Enable N-Key Rollover -RGB_MATRIX_ENABLE = no # Enable per-key coordinate based RGB effects. Do not enable with RGBlight -RGB_MATRIX_DRIVER = WS2812 -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow -UNICODE_ENABLE = yes # Unicode -AUDIO_ENABLE = no # Audio output |