diff options
Diffstat (limited to 'keyboards/bbrfkr')
-rw-r--r-- | keyboards/bbrfkr/dynamis/config.h | 49 | ||||
-rw-r--r-- | keyboards/bbrfkr/dynamis/dynamis.c | 29 | ||||
-rw-r--r-- | keyboards/bbrfkr/dynamis/keymaps/via/rules.mk | 2 | ||||
-rw-r--r-- | keyboards/bbrfkr/dynamis/readme.md | 29 | ||||
-rw-r--r-- | keyboards/bbrfkr/dynamis/rules.mk | 23 |
5 files changed, 0 insertions, 132 deletions
diff --git a/keyboards/bbrfkr/dynamis/config.h b/keyboards/bbrfkr/dynamis/config.h deleted file mode 100644 index ccf5f3f1c9..0000000000 --- a/keyboards/bbrfkr/dynamis/config.h +++ /dev/null @@ -1,49 +0,0 @@ -/* Copyright 2022 bbrfkr - * - * 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 */ -#define MATRIX_ROWS 10 -#define MATRIX_COLS 7 -#define MATRIX_ROW_PINS { B6, B4, D6, D5, D1, C6, B5, D7, D4, D0 } -#define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, C7 } - -/* rgb num */ -#define RGBLED_NUM 10 -#define RGB_DI_PIN D3 -#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 -#define RGBLIGHT_EFFECT_TWINKLE - -/* COL2ROW, ROW2COL*/ -#define DIODE_DIRECTION COL2ROW - -/* rotary encoder */ -#define ENCODERS_PAD_A { B7 } -#define ENCODERS_PAD_B { E6 } - -#define PMW33XX_CS_PIN SPI_SS_PIN -#define POINTING_DEVICE_INVERT_Y diff --git a/keyboards/bbrfkr/dynamis/dynamis.c b/keyboards/bbrfkr/dynamis/dynamis.c deleted file mode 100644 index 8655cbc7bc..0000000000 --- a/keyboards/bbrfkr/dynamis/dynamis.c +++ /dev/null @@ -1,29 +0,0 @@ -/* Copyright 2022 bbrfkr - * - * 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 "dynamis.h" - -#ifdef ENCODER_ENABLE -bool encoder_update_kb(uint8_t index, bool clockwise) { - if (!encoder_update_user(index, clockwise)) { return false; } - if (clockwise) { - tap_code(layer_state == 0 ? KC_WH_D : KC_VOLD); - } else { - tap_code(layer_state == 0 ? KC_WH_U : KC_VOLU); - } - return true; -} -#endif diff --git a/keyboards/bbrfkr/dynamis/keymaps/via/rules.mk b/keyboards/bbrfkr/dynamis/keymaps/via/rules.mk deleted file mode 100644 index f1adcab005..0000000000 --- a/keyboards/bbrfkr/dynamis/keymaps/via/rules.mk +++ /dev/null @@ -1,2 +0,0 @@ -VIA_ENABLE = yes -ENCODER_MAP_ENABLE = yes diff --git a/keyboards/bbrfkr/dynamis/readme.md b/keyboards/bbrfkr/dynamis/readme.md deleted file mode 100644 index 2cfd225b1b..0000000000 --- a/keyboards/bbrfkr/dynamis/readme.md +++ /dev/null @@ -1,29 +0,0 @@ -# dynamis - -## general information -![dynamis](https://i.imgur.com/GRPE5hzh.jpg) - -Gasket mounted 65% row staggered keyboard integrated a trackball - -* Keyboard Maintainer: [bbrfkr](https://github.com/bbrfkr/) -* Hardware Supported: dynamis PCBs -* Hardware Availability: https://github.com/bbrfkr/dynamis-keyboard - -## bootloader - -Enter the bootloader in 2 ways: - -* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead -* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available - -## build and flash firmware - -Make example for this keyboard (after setting up your build environment): - - make bbrfkr/dynamis:default - -Flashing example for this keyboard: - - make bbrfkr/dynamis:default:flash - -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/bbrfkr/dynamis/rules.mk b/keyboards/bbrfkr/dynamis/rules.mk deleted file mode 100644 index 6fa6562d9e..0000000000 --- a/keyboards/bbrfkr/dynamis/rules.mk +++ /dev/null @@ -1,23 +0,0 @@ -# MCU name -MCU = atmega32u4 - -# Bootloader selection -BOOTLOADER = qmk-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 = no # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output -SPLIT_KEYBOARD = no -POINTING_DEVICE_ENABLE = yes -POINTING_DEVICE_DRIVER = pmw3360 -ENCODER_ENABLE = yes -LTO_ENABLE = yes |