diff options
author | peepeetee <43021794+peepeetee@users.noreply.github.com> | 2022-01-31 03:28:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-30 11:28:04 -0800 |
commit | a1b39e6db231923935055846384eb2e78e538268 (patch) | |
tree | eeaee7335efdff3d9ce960050882acf2cfe570a9 /keyboards/6ball | |
parent | 07bb65384cf96be88feb2916604cb4a89cd0ad33 (diff) |
[Keyboard] move That-Canadian 's boards into /maple_computing (#16050)
Diffstat (limited to 'keyboards/6ball')
-rw-r--r-- | keyboards/6ball/6ball.c | 1 | ||||
-rw-r--r-- | keyboards/6ball/6ball.h | 10 | ||||
-rw-r--r-- | keyboards/6ball/config.h | 47 | ||||
-rw-r--r-- | keyboards/6ball/info.json | 18 | ||||
-rw-r--r-- | keyboards/6ball/keymaps/default/keymap.c | 22 | ||||
-rw-r--r-- | keyboards/6ball/readme.md | 14 | ||||
-rw-r--r-- | keyboards/6ball/rules.mk | 19 |
7 files changed, 0 insertions, 131 deletions
diff --git a/keyboards/6ball/6ball.c b/keyboards/6ball/6ball.c deleted file mode 100644 index 1eddde9ba5..0000000000 --- a/keyboards/6ball/6ball.c +++ /dev/null @@ -1 +0,0 @@ -#include "6ball.h" diff --git a/keyboards/6ball/6ball.h b/keyboards/6ball/6ball.h deleted file mode 100644 index ef73a72053..0000000000 --- a/keyboards/6ball/6ball.h +++ /dev/null @@ -1,10 +0,0 @@ -#pragma once - -#include "quantum.h" - -#define LAYOUT( \ - k05, k00, k01, \ - k04, k03, k02 \ -) { \ - { k00, k01, k02, k03, k04, k05 } \ -} diff --git a/keyboards/6ball/config.h b/keyboards/6ball/config.h deleted file mode 100644 index cc496d675a..0000000000 --- a/keyboards/6ball/config.h +++ /dev/null @@ -1,47 +0,0 @@ -/* -Copyright 2012 Jun Wako <wakojun@gmail.com> - -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" - -/* USB Device descriptor parameter */ -#define VENDOR_ID 0xCEEB -#define PRODUCT_ID 0x0007 -#define DEVICE_VER 0x0001 -#define MANUFACTURER That-Canadian -#define PRODUCT 6-Ball - -/* key matrix size */ -#define MATRIX_ROWS 1 -#define MATRIX_COLS 6 - -/* pin-out */ -#define MATRIX_ROW_PINS { F5 } -#define MATRIX_COL_PINS { F4, D4, B5, B6, B2, F6 } -#define UNUSED_PINS - -/* ws2812 RGB LED */ -#define RGB_DI_PIN F7 - -#define RGBLIGHT_ANIMATIONS -#define RGBLED_NUM 6 // Number of LEDs - -/* COL2ROW or ROW2COL */ -#define DIODE_DIRECTION COL2ROW - -#define TAPPING_TERM 200 diff --git a/keyboards/6ball/info.json b/keyboards/6ball/info.json deleted file mode 100644 index fc742ad517..0000000000 --- a/keyboards/6ball/info.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "keyboard_name": "6-Ball", - "url": "", - "maintainer": "qmk", - "layouts": { - "LAYOUT": { - "layout": [ - {"x":0, "y":0.5}, - {"x":1, "y":0}, - {"x":2, "y":0.5}, - - {"x":0, "y":1.5}, - {"x":1, "y":2}, - {"x":2, "y":1.5} - ] - } - } -} diff --git a/keyboards/6ball/keymaps/default/keymap.c b/keyboards/6ball/keymaps/default/keymap.c deleted file mode 100644 index 5081161e38..0000000000 --- a/keyboards/6ball/keymaps/default/keymap.c +++ /dev/null @@ -1,22 +0,0 @@ -#include QMK_KEYBOARD_H - -#define _MAIN 0 -#define _FN 1 - -#define KC_CAPW LGUI(LSFT(KC_3)) // Capture whole screen -#define KC_CPYW LGUI(LSFT(LCTL(KC_3))) // Copy whole screen -#define KC_CAPP LGUI(LSFT(KC_4)) // Capture portion of screen -#define KC_CPYP LGUI(LSFT(LCTL(KC_4))) // Copy portion of screen -#define KC_X0 LT(_FN, KC_ESC) - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - [_MAIN] = LAYOUT( - KC_F, KC_X0, KC_LCTL, - KC_R, KC_D, KC_M - ), - - [_FN] = LAYOUT( - KC_F, KC_TRNS, RGB_HUI, - RGB_TOG, RGB_MOD, RGB_HUD - ) -}; diff --git a/keyboards/6ball/readme.md b/keyboards/6ball/readme.md deleted file mode 100644 index c9548453a9..0000000000 --- a/keyboards/6ball/readme.md +++ /dev/null @@ -1,14 +0,0 @@ -6-Ball -====== - -A circular 6-key macropad made by ThatCanadian. - -Keyboard Maintainer: QMK Community -Hardware Supported: Pro Micro ATmega32U4 -Hardware Availability: ThatCanadian - -Make example for this keyboard (after setting up your build environment): - - make 6ball:default - -See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. diff --git a/keyboards/6ball/rules.mk b/keyboards/6ball/rules.mk deleted file mode 100644 index bb1a873d64..0000000000 --- a/keyboards/6ball/rules.mk +++ /dev/null @@ -1,19 +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 = yes # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -AUDIO_ENABLE = no # Audio output -UNICODE_ENABLE = yes # Unicode -RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. |