diff options
Diffstat (limited to 'keyboards/handwired')
26 files changed, 0 insertions, 2113 deletions
diff --git a/keyboards/handwired/downbubble/config.h b/keyboards/handwired/downbubble/config.h deleted file mode 100644 index f2628cb70..000000000 --- a/keyboards/handwired/downbubble/config.h +++ /dev/null | |||
| @@ -1,240 +0,0 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2018 Don Chiou | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | #include "config_common.h" | ||
| 21 | |||
| 22 | /* USB Device descriptor parameter */ | ||
| 23 | #define VENDOR_ID 0xFEED | ||
| 24 | #define PRODUCT_ID 0x0000 | ||
| 25 | #define DEVICE_VER 0x0001 | ||
| 26 | #define MANUFACTURER Flehrad | ||
| 27 | #define PRODUCT downbubble | ||
| 28 | #define DESCRIPTION An Ergonomic Centered Numpad Keyboard | ||
| 29 | |||
| 30 | /* key matrix size */ | ||
| 31 | #define MATRIX_ROWS 6 | ||
| 32 | #define MATRIX_COLS 20 | ||
| 33 | |||
| 34 | /* | ||
| 35 | * Keyboard Matrix Assignments | ||
| 36 | * | ||
| 37 | * Change this to how you wired your keyboard | ||
| 38 | * COLS: AVR pins used for columns, left to right | ||
| 39 | * ROWS: AVR pins used for rows, top to bottom | ||
| 40 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
| 41 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
| 42 | * | ||
| 43 | */ | ||
| 44 | #define MATRIX_ROW_PINS { F1, F2, F3, F4, F5, F6 } | ||
| 45 | #define MATRIX_COL_PINS { F7, C7, C6, C5, C4, C3, C2, C1, C0, E1, E0, D7, D6, D5, D4, D3, D2, D1, D0, B7 } | ||
| 46 | #define UNUSED_PINS | ||
| 47 | |||
| 48 | /* COL2ROW, ROW2COL*/ | ||
| 49 | #define DIODE_DIRECTION COL2ROW | ||
| 50 | |||
| 51 | /* | ||
| 52 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN. | ||
| 53 | */ | ||
| 54 | //#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
| 55 | |||
| 56 | // #define BACKLIGHT_PIN B7 | ||
| 57 | // #define BACKLIGHT_BREATHING | ||
| 58 | // #define BACKLIGHT_LEVELS 3 | ||
| 59 | |||
| 60 | // #define RGB_DI_PIN E2 | ||
| 61 | // #ifdef RGB_DI_PIN | ||
| 62 | // #define RGBLED_NUM 16 | ||
| 63 | // #define RGBLIGHT_HUE_STEP 8 | ||
| 64 | // #define RGBLIGHT_SAT_STEP 8 | ||
| 65 | // #define RGBLIGHT_VAL_STEP 8 | ||
| 66 | // #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ | ||
| 67 | // #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ | ||
| 68 | // /*== all animations enable ==*/ | ||
| 69 | // #define RGBLIGHT_ANIMATIONS | ||
| 70 | // /*== or choose animations ==*/ | ||
| 71 | // #define RGBLIGHT_EFFECT_BREATHING | ||
| 72 | // #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
| 73 | // #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
| 74 | // #define RGBLIGHT_EFFECT_SNAKE | ||
| 75 | // #define RGBLIGHT_EFFECT_KNIGHT | ||
| 76 | // #define RGBLIGHT_EFFECT_CHRISTMAS | ||
| 77 | // #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
| 78 | // #define RGBLIGHT_EFFECT_RGB_TEST | ||
| 79 | // #define RGBLIGHT_EFFECT_ALTERNATING | ||
| 80 | // #endif | ||
| 81 | |||
| 82 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 83 | #define DEBOUNCE 5 | ||
| 84 | |||
| 85 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 86 | //#define MATRIX_HAS_GHOST | ||
| 87 | |||
| 88 | /* number of backlight levels */ | ||
| 89 | |||
| 90 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 91 | #define LOCKING_SUPPORT_ENABLE | ||
| 92 | /* Locking resynchronize hack */ | ||
| 93 | #define LOCKING_RESYNC_ENABLE | ||
| 94 | |||
| 95 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
| 96 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
| 97 | */ | ||
| 98 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
| 99 | |||
| 100 | /* | ||
| 101 | * Force NKRO | ||
| 102 | * | ||
| 103 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
| 104 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
| 105 | * makefile for this to work.) | ||
| 106 | * | ||
| 107 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
| 108 | * until the next keyboard reset. | ||
| 109 | * | ||
| 110 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
| 111 | * fully operational during normal computer usage. | ||
| 112 | * | ||
| 113 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
| 114 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
| 115 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
| 116 | * power-up. | ||
| 117 | * | ||
| 118 | */ | ||
| 119 | //#define FORCE_NKRO | ||
| 120 | |||
| 121 | /* | ||
| 122 | * Magic Key Options | ||
| 123 | * | ||
| 124 | * Magic keys are hotkey commands that allow control over firmware functions of | ||
| 125 | * the keyboard. They are best used in combination with the HID Listen program, | ||
| 126 | * found here: https://www.pjrc.com/teensy/hid_listen.html | ||
| 127 | * | ||
| 128 | * The options below allow the magic key functionality to be changed. This is | ||
| 129 | * useful if your keyboard/keypad is missing keys and you want magic key support. | ||
| 130 | * | ||
| 131 | */ | ||
| 132 | |||
| 133 | /* control how magic key switches layers */ | ||
| 134 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true | ||
| 135 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true | ||
| 136 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false | ||
| 137 | |||
| 138 | /* override magic key keymap */ | ||
| 139 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS | ||
| 140 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS | ||
| 141 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM | ||
| 142 | //#define MAGIC_KEY_HELP1 H | ||
| 143 | //#define MAGIC_KEY_HELP2 SLASH | ||
| 144 | //#define MAGIC_KEY_DEBUG D | ||
| 145 | //#define MAGIC_KEY_DEBUG_MATRIX X | ||
| 146 | //#define MAGIC_KEY_DEBUG_KBD K | ||
| 147 | //#define MAGIC_KEY_DEBUG_MOUSE M | ||
| 148 | //#define MAGIC_KEY_VERSION V | ||
| 149 | //#define MAGIC_KEY_STATUS S | ||
| 150 | //#define MAGIC_KEY_CONSOLE C | ||
| 151 | //#define MAGIC_KEY_LAYER0_ALT1 ESC | ||
| 152 | //#define MAGIC_KEY_LAYER0_ALT2 GRAVE | ||
| 153 | //#define MAGIC_KEY_LAYER0 0 | ||
| 154 | //#define MAGIC_KEY_LAYER1 1 | ||
| 155 | //#define MAGIC_KEY_LAYER2 2 | ||
| 156 | //#define MAGIC_KEY_LAYER3 3 | ||
| 157 | //#define MAGIC_KEY_LAYER4 4 | ||
| 158 | //#define MAGIC_KEY_LAYER5 5 | ||
| 159 | //#define MAGIC_KEY_LAYER6 6 | ||
| 160 | //#define MAGIC_KEY_LAYER7 7 | ||
| 161 | //#define MAGIC_KEY_LAYER8 8 | ||
| 162 | //#define MAGIC_KEY_LAYER9 9 | ||
| 163 | //#define MAGIC_KEY_BOOTLOADER PAUSE | ||
| 164 | //#define MAGIC_KEY_LOCK CAPS | ||
| 165 | //#define MAGIC_KEY_EEPROM E | ||
| 166 | //#define MAGIC_KEY_NKRO N | ||
| 167 | //#define MAGIC_KEY_SLEEP_LED Z | ||
| 168 | |||
| 169 | /* | ||
| 170 | * Feature disable options | ||
| 171 | * These options are also useful to firmware size reduction. | ||
| 172 | */ | ||
| 173 | |||
| 174 | /* disable debug print */ | ||
| 175 | //#define NO_DEBUG | ||
| 176 | |||
| 177 | /* disable print */ | ||
| 178 | //#define NO_PRINT | ||
| 179 | |||
| 180 | /* disable action features */ | ||
| 181 | //#define NO_ACTION_LAYER | ||
| 182 | //#define NO_ACTION_TAPPING | ||
| 183 | //#define NO_ACTION_ONESHOT | ||
| 184 | //#define NO_ACTION_MACRO | ||
| 185 | //#define NO_ACTION_FUNCTION | ||
| 186 | |||
| 187 | /* | ||
| 188 | * MIDI options | ||
| 189 | */ | ||
| 190 | |||
| 191 | /* Prevent use of disabled MIDI features in the keymap */ | ||
| 192 | //#define MIDI_ENABLE_STRICT 1 | ||
| 193 | |||
| 194 | /* enable basic MIDI features: | ||
| 195 | - MIDI notes can be sent when in Music mode is on | ||
| 196 | */ | ||
| 197 | //#define MIDI_BASIC | ||
| 198 | |||
| 199 | /* enable advanced MIDI features: | ||
| 200 | - MIDI notes can be added to the keymap | ||
| 201 | - Octave shift and transpose | ||
| 202 | - Virtual sustain, portamento, and modulation wheel | ||
| 203 | - etc. | ||
| 204 | */ | ||
| 205 | //#define MIDI_ADVANCED | ||
| 206 | |||
| 207 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
| 208 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
| 209 | |||
| 210 | /* | ||
| 211 | * HD44780 LCD Display Configuration | ||
| 212 | */ | ||
| 213 | /* | ||
| 214 | #define LCD_LINES 2 //< number of visible lines of the display | ||
| 215 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
| 216 | |||
| 217 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
| 218 | |||
| 219 | #if LCD_IO_MODE | ||
| 220 | #define LCD_PORT PORTB //< port for the LCD lines | ||
| 221 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
| 222 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
| 223 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
| 224 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
| 225 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
| 226 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
| 227 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
| 228 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
| 229 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
| 230 | #define LCD_RS_PIN 3 //< pin for RS line | ||
| 231 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
| 232 | #define LCD_RW_PIN 2 //< pin for RW line | ||
| 233 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
| 234 | #define LCD_E_PIN 1 //< pin for Enable line | ||
| 235 | #endif | ||
| 236 | */ | ||
| 237 | |||
| 238 | /* Bootmagic Lite key configuration */ | ||
| 239 | // #define BOOTMAGIC_LITE_ROW 0 | ||
| 240 | // #define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/handwired/downbubble/downbubble.c b/keyboards/handwired/downbubble/downbubble.c deleted file mode 100644 index 48be8e499..000000000 --- a/keyboards/handwired/downbubble/downbubble.c +++ /dev/null | |||
| @@ -1,16 +0,0 @@ | |||
| 1 | /* Copyright 2018 REPLACE_WITH_YOUR_NAME | ||
| 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 | #include "downbubble.h" | ||
diff --git a/keyboards/handwired/downbubble/downbubble.h b/keyboards/handwired/downbubble/downbubble.h deleted file mode 100644 index 0df39dd9e..000000000 --- a/keyboards/handwired/downbubble/downbubble.h +++ /dev/null | |||
| @@ -1,111 +0,0 @@ | |||
| 1 | /* Copyright 2018 REPLACE_WITH_YOUR_NAME | ||
| 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 | #pragma once | ||
| 17 | |||
| 18 | #include "quantum.h" | ||
| 19 | |||
| 20 | /* This a shortcut to help you visually see your layout. | ||
| 21 | * | ||
| 22 | * The first section contains all of the arguments representing the physical | ||
| 23 | * layout of the board and position of the keys. | ||
| 24 | * | ||
| 25 | * The second converts the arguments into a two-dimensional array which | ||
| 26 | * represents the switch matrix. | ||
| 27 | */ | ||
| 28 | #define LAYOUT_standard( \ | ||
| 29 | K00, K01, K02, K03, K04, K05, K06, K010, K011, K012, K013, K014, K015, K016, K017, K018, K019,\ | ||
| 30 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K110, K111, K112, K113, K114, K115, K116, K118, K119,\ | ||
| 31 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K210, K211, K212, K213, K214, K215, K216, K217, K218, K219,\ | ||
| 32 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K29, K310, K311, K312, K313, K314, K315, K317, \ | ||
| 33 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K410, K411, K412, K413, K414, K416, K418, \ | ||
| 34 | K50, K51, K52, K53, K54, K56, K58, K49, K510, K512, K513, K514, K516, K517, K518, K519 \ | ||
| 35 | ) \ | ||
| 36 | { \ | ||
| 37 | { K00, K01, K02, K03, K04, K05, K06, KC_NO, KC_NO, KC_NO, K010, K011, K012, K013, K014, K015, K016, K017, K018, K019 }, \ | ||
| 38 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K110, K111, K112, K113, K114, K115, K116, KC_NO, K118, K119 }, \ | ||
| 39 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K210, K211, K212, K213, K214, K215, K216, K217, K218, K219 }, \ | ||
| 40 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, KC_NO, K310, K311, K312, K313, K314, K315, KC_NO, K317, KC_NO, KC_NO }, \ | ||
| 41 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K410, K411, K412, K413, K414, KC_NO, K416, KC_NO, K418, KC_NO }, \ | ||
| 42 | { K50, K51, K52, K53, K54, KC_NO, K56, KC_NO, K58, KC_NO, K510, KC_NO, K512, K513, K514, KC_NO, K516, K517, K518, K519 }, \ | ||
| 43 | } | ||
| 44 | |||
| 45 | #define LAYOUT_split_bs( \ | ||
| 46 | K00, K01, K02, K03, K04, K05, K06, K010, K011, K012, K013, K014, K015, K016, K017, K018, K019,\ | ||
| 47 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K110, K111, K112, K113, K114, K115, K116, K117, K118, K119,\ | ||
| 48 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K210, K211, K212, K213, K214, K215, K216, K217, K218, K219,\ | ||
| 49 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K29, K310, K311, K312, K313, K314, K315, K317, \ | ||
| 50 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K410, K411, K412, K413, K414, K416, K418, \ | ||
| 51 | K50, K51, K52, K53, K54, K56, K58, K49, K510, K512, K513, K514, K516, K517, K518, K519 \ | ||
| 52 | ) \ | ||
| 53 | { \ | ||
| 54 | { K00, K01, K02, K03, K04, K05, K06, KC_NO, KC_NO, KC_NO, K010, K011, K012, K013, K014, K015, K016, K017, K018, K019 }, \ | ||
| 55 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K110, K111, K112, K113, K114, K115, K116, K117, K118, K119 }, \ | ||
| 56 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K210, K211, K212, K213, K214, K215, K216, K217, K218, K219 }, \ | ||
| 57 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, KC_NO, K310, K311, K312, K313, K314, K315, KC_NO, K317, KC_NO, KC_NO }, \ | ||
| 58 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K410, K411, K412, K413, K414, KC_NO, K416, KC_NO, K418, KC_NO }, \ | ||
| 59 | { K50, K51, K52, K53, K54, KC_NO, K56, KC_NO, K58, KC_NO, K510, KC_NO, K512, K513, K514, KC_NO, K516, K517, K518, K519 }, \ | ||
| 60 | } | ||
| 61 | |||
| 62 | #define LAYOUT_split_rshift( \ | ||
| 63 | K00, K01, K02, K03, K04, K05, K06, K010, K011, K012, K013, K014, K015, K016, K017, K018, K019,\ | ||
| 64 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K110, K111, K112, K113, K114, K115, K116, K118, K119,\ | ||
| 65 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K210, K211, K212, K213, K214, K215, K216, K217, K218, K219,\ | ||
| 66 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K29, K310, K311, K312, K313, K314, K315, K317, \ | ||
| 67 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K410, K411, K412, K413, K414, K416, K417, K418, \ | ||
| 68 | K50, K51, K52, K53, K54, K56, K58, K49, K510, K512, K513, K514, K516, K517, K518, K519 \ | ||
| 69 | ) \ | ||
| 70 | { \ | ||
| 71 | { K00, K01, K02, K03, K04, K05, K06, KC_NO, KC_NO, KC_NO, K010, K011, K012, K013, K014, K015, K016, K017, K018, K019 }, \ | ||
| 72 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K110, K111, K112, K113, K114, K115, K116, KC_NO, K118, K119 }, \ | ||
| 73 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K210, K211, K212, K213, K214, K215, K216, K217, K218, K219 }, \ | ||
| 74 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, KC_NO, K310, K311, K312, K313, K314, K315, KC_NO, K317, KC_NO, KC_NO }, \ | ||
| 75 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K410, K411, K412, K413, K414, KC_NO, K416, K417, K418, KC_NO }, \ | ||
| 76 | { K50, K51, K52, K53, K54, KC_NO, K56, KC_NO, K58, KC_NO, K510, KC_NO, K512, K513, K514, KC_NO, K516, K517, K518, K519 }, \ | ||
| 77 | } | ||
| 78 | |||
| 79 | #define LAYOUT_split_numpad( \ | ||
| 80 | K00, K01, K02, K03, K04, K05, K06, K010, K011, K012, K013, K014, K015, K016, K017, K018, K019,\ | ||
| 81 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K110, K111, K112, K113, K114, K115, K116, K118, K119,\ | ||
| 82 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K210, K211, K212, K213, K214, K215, K216, K217, K218, K219,\ | ||
| 83 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K310, K311, K312, K313, K314, K315, K317, \ | ||
| 84 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K410, K411, K412, K413, K414, K416, K418, \ | ||
| 85 | K50, K51, K52, K53, K54, K56, K57, K58, K59, K510, K512, K513, K514, K516, K517, K518, K519 \ | ||
| 86 | ) \ | ||
| 87 | { \ | ||
| 88 | { K00, K01, K02, K03, K04, K05, K06, KC_NO, KC_NO, KC_NO, K010, K011, K012, K013, K014, K015, K016, K017, K018, K019 }, \ | ||
| 89 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K110, K111, K112, K113, K114, K115, K116, KC_NO, K118, K119 }, \ | ||
| 90 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K210, K211, K212, K213, K214, K215, K216, K217, K218, K219 }, \ | ||
| 91 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K310, K311, K312, K313, K314, K315, KC_NO, K317, KC_NO, KC_NO }, \ | ||
| 92 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K410, K411, K412, K413, K414, KC_NO, K416, KC_NO, K418, KC_NO }, \ | ||
| 93 | { K50, K51, K52, K53, K54, KC_NO, K56, K57, K58, K59, K510, KC_NO, K512, K513, K514, KC_NO, K516, K517, K518, K519 }, \ | ||
| 94 | } | ||
| 95 | |||
| 96 | #define LAYOUT_all( \ | ||
| 97 | K00, K01, K02, K03, K04, K05, K06, K010, K011, K012, K013, K014, K015, K016, K017, K018, K019,\ | ||
| 98 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K110, K111, K112, K113, K114, K115, K116, K117, K118, K119,\ | ||
| 99 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K210, K211, K212, K213, K214, K215, K216, K217, K218, K219,\ | ||
| 100 | K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K310, K311, K312, K313, K314, K315, K317, \ | ||
| 101 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K410, K411, K412, K413, K414, K416, K417, K418, \ | ||
| 102 | K50, K51, K52, K53, K54, K56, K57, K58, K59, K510, K512, K513, K514, K516, K517, K518, K519 \ | ||
| 103 | ) \ | ||
| 104 | { \ | ||
| 105 | { K00, K01, K02, K03, K04, K05, K06, KC_NO, KC_NO, KC_NO, K010, K011, K012, K013, K014, K015, K016, K017, K018, K019 }, \ | ||
| 106 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K110, K111, K112, K113, K114, K115, K116, K117, K118, K119 }, \ | ||
| 107 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K210, K211, K212, K213, K214, K215, K216, K217, K218, K219 }, \ | ||
| 108 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K310, K311, K312, K313, K314, K315, KC_NO, K317, KC_NO, KC_NO }, \ | ||
| 109 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K410, K411, K412, K413, K414, KC_NO, K416, K417, K418, KC_NO }, \ | ||
| 110 | { K50, K51, K52, K53, K54, KC_NO, K56, K57, K58, K59, K510, KC_NO, K512, K513, K514, KC_NO, K516, K517, K518, K519 }, \ | ||
| 111 | } | ||
diff --git a/keyboards/handwired/downbubble/info.json b/keyboards/handwired/downbubble/info.json deleted file mode 100644 index c5cd97de5..000000000 --- a/keyboards/handwired/downbubble/info.json +++ /dev/null | |||
| @@ -1,559 +0,0 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "downbubble", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "flehrad", | ||
| 5 | "width": 22.75, | ||
| 6 | "height": 6, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_standard": { | ||
| 9 | "layout": [ | ||
| 10 | {"label":"K00", "x":0, "y":0}, | ||
| 11 | {"label":"K01", "x":1, "y":0}, | ||
| 12 | {"label":"K02", "x":2, "y":0}, | ||
| 13 | {"label":"K03", "x":3, "y":0}, | ||
| 14 | {"label":"K04", "x":4, "y":0}, | ||
| 15 | {"label":"K05", "x":5, "y":0}, | ||
| 16 | {"label":"K06", "x":6, "y":0}, | ||
| 17 | {"label":"K010", "x":12.75, "y":0}, | ||
| 18 | {"label":"K011", "x":13.75, "y":0}, | ||
| 19 | {"label":"K012", "x":14.75, "y":0}, | ||
| 20 | {"label":"K013", "x":15.75, "y":0}, | ||
| 21 | {"label":"K014", "x":16.75, "y":0}, | ||
| 22 | {"label":"K015", "x":17.75, "y":0}, | ||
| 23 | {"label":"K016", "x":18.75, "y":0}, | ||
| 24 | {"label":"K017", "x":19.75, "y":0}, | ||
| 25 | {"label":"K018", "x":20.75, "y":0}, | ||
| 26 | {"label":"K019", "x":21.75, "y":0}, | ||
| 27 | {"label":"K10", "x":0, "y":1}, | ||
| 28 | {"label":"K11", "x":1, "y":1}, | ||
| 29 | {"label":"K12", "x":2, "y":1}, | ||
| 30 | {"label":"K13", "x":3, "y":1}, | ||
| 31 | {"label":"K14", "x":4, "y":1}, | ||
| 32 | {"label":"K15", "x":5, "y":1}, | ||
| 33 | {"label":"K16", "x":6, "y":1}, | ||
| 34 | {"label":"K17", "x":8.75, "y":1}, | ||
| 35 | {"label":"K18", "x":9.75, "y":1}, | ||
| 36 | {"label":"K19", "x":10.75, "y":1}, | ||
| 37 | {"label":"K110", "x":12.75, "y":1}, | ||
| 38 | {"label":"K111", "x":13.75, "y":1}, | ||
| 39 | {"label":"K112", "x":14.75, "y":1}, | ||
| 40 | {"label":"K113", "x":15.75, "y":1}, | ||
| 41 | {"label":"K114", "x":16.75, "y":1}, | ||
| 42 | {"label":"K115", "x":17.75, "y":1}, | ||
| 43 | {"label":"K116", "x":18.75, "y":1, "w":2}, | ||
| 44 | {"label":"K118", "x":20.75, "y":1}, | ||
| 45 | {"label":"K119", "x":21.75, "y":1}, | ||
| 46 | {"label":"K20", "x":0, "y":2, "w":1.5}, | ||
| 47 | {"label":"K21", "x":1.5, "y":2}, | ||
| 48 | {"label":"K22", "x":2.5, "y":2}, | ||
| 49 | {"label":"K23", "x":3.5, "y":2}, | ||
| 50 | {"label":"K24", "x":4.5, "y":2}, | ||
| 51 | {"label":"K25", "x":5.5, "y":2}, | ||
| 52 | {"label":"K26", "x":7.75, "y":2}, | ||
| 53 | {"label":"K17", "x":8.75, "y":2}, | ||
| 54 | {"label":"K28", "x":9.75, "y":2}, | ||
| 55 | {"label":"K210", "x":12.25, "y":2}, | ||
| 56 | {"label":"K211", "x":13.25, "y":2}, | ||
| 57 | {"label":"K212", "x":14.25, "y":2}, | ||
| 58 | {"label":"K213", "x":15.25, "y":2}, | ||
| 59 | {"label":"K214", "x":16.25, "y":2}, | ||
| 60 | {"label":"K215", "x":17.25, "y":2}, | ||
| 61 | {"label":"K216", "x":18.25, "y":2}, | ||
| 62 | {"label":"K217", "x":19.25, "y":2, "w":1.5}, | ||
| 63 | {"label":"K218", "x":20.75, "y":2}, | ||
| 64 | {"label":"K219", "x":21.75, "y":2}, | ||
| 65 | {"label":"K30", "x":0, "y":3, "w":1.75}, | ||
| 66 | {"label":"K31", "x":1.75, "y":3}, | ||
| 67 | {"label":"K32", "x":2.75, "y":3}, | ||
| 68 | {"label":"K33", "x":3.75, "y":3}, | ||
| 69 | {"label":"K34", "x":4.75, "y":3}, | ||
| 70 | {"label":"K35", "x":5.75, "y":3}, | ||
| 71 | {"label":"K36", "x":7.75, "y":3}, | ||
| 72 | {"label":"K37", "x":8.75, "y":3}, | ||
| 73 | {"label":"K38", "x":9.75, "y":3}, | ||
| 74 | {"label":"K29", "x":10.75, "y":2, "h":2}, | ||
| 75 | {"label":"K310", "x":12.5, "y":3}, | ||
| 76 | {"label":"K311", "x":13.5, "y":3}, | ||
| 77 | {"label":"K312", "x":14.5, "y":3}, | ||
| 78 | {"label":"K313", "x":15.5, "y":3}, | ||
| 79 | {"label":"K314", "x":16.5, "y":3}, | ||
| 80 | {"label":"K315", "x":17.5, "y":3}, | ||
| 81 | {"label":"K317", "x":18.5, "y":3, "w":2.25}, | ||
| 82 | {"label":"K40", "x":0, "y":4, "w":2.25}, | ||
| 83 | {"label":"K41", "x":2.25, "y":4}, | ||
| 84 | {"label":"K42", "x":3.25, "y":4}, | ||
| 85 | {"label":"K43", "x":4.25, "y":4}, | ||
| 86 | {"label":"K44", "x":5.25, "y":4}, | ||
| 87 | {"label":"K45", "x":6.25, "y":4}, | ||
| 88 | {"label":"K46", "x":7.75, "y":4}, | ||
| 89 | {"label":"K47", "x":8.75, "y":4}, | ||
| 90 | {"label":"K48", "x":9.75, "y":4}, | ||
| 91 | {"label":"K410", "x":13, "y":4}, | ||
| 92 | {"label":"K411", "x":14, "y":4}, | ||
| 93 | {"label":"K412", "x":15, "y":4}, | ||
| 94 | {"label":"K413", "x":16, "y":4}, | ||
| 95 | {"label":"K414", "x":17, "y":4}, | ||
| 96 | {"label":"K416", "x":18, "y":4, "w":2.75}, | ||
| 97 | {"label":"K418", "x":20.75, "y":4}, | ||
| 98 | {"label":"K50", "x":0, "y":5, "w":1.25}, | ||
| 99 | {"label":"K51", "x":1.25, "y":5, "w":1.25}, | ||
| 100 | {"label":"K52", "x":2.5, "y":5, "w":1.25}, | ||
| 101 | {"label":"K53", "x":3.75, "y":5, "w":1.25}, | ||
| 102 | {"label":"K54", "x":5, "y":5, "w":2.25}, | ||
| 103 | {"label":"K56", "x":7.75, "y":5, "w":2}, | ||
| 104 | {"label":"K58", "x":9.75, "y":5}, | ||
| 105 | {"label":"K49", "x":10.75, "y":4, "h":2}, | ||
| 106 | {"label":"K510", "x":13, "y":5, "w":2}, | ||
| 107 | {"label":"K512", "x":15, "y":5, "w":1.25}, | ||
| 108 | {"label":"K513", "x":16.25, "y":5, "w":1.25}, | ||
| 109 | {"label":"K514", "x":17.5, "y":5, "w":1.25}, | ||
| 110 | {"label":"K516", "x":18.75, "y":5}, | ||
| 111 | {"label":"K517", "x":19.75, "y":5}, | ||
| 112 | {"label":"K518", "x":20.75, "y":5}, | ||
| 113 | {"label":"K519", "x":21.75, "y":5} | ||
| 114 | ] | ||
| 115 | }, | ||
| 116 | "LAYOUT_split_bs": { | ||
| 117 | "layout": [ | ||
| 118 | {"label":"K00", "x":0, "y":0}, | ||
| 119 | {"label":"K01", "x":1, "y":0}, | ||
| 120 | {"label":"K02", "x":2, "y":0}, | ||
| 121 | {"label":"K03", "x":3, "y":0}, | ||
| 122 | {"label":"K04", "x":4, "y":0}, | ||
| 123 | {"label":"K05", "x":5, "y":0}, | ||
| 124 | {"label":"K06", "x":6, "y":0}, | ||
| 125 | {"label":"K010", "x":12.75, "y":0}, | ||
| 126 | {"label":"K011", "x":13.75, "y":0}, | ||
| 127 | {"label":"K012", "x":14.75, "y":0}, | ||
| 128 | {"label":"K013", "x":15.75, "y":0}, | ||
| 129 | {"label":"K014", "x":16.75, "y":0}, | ||
| 130 | {"label":"K015", "x":17.75, "y":0}, | ||
| 131 | {"label":"K016", "x":18.75, "y":0}, | ||
| 132 | {"label":"K017", "x":19.75, "y":0}, | ||
| 133 | {"label":"K018", "x":20.75, "y":0}, | ||
| 134 | {"label":"K019", "x":21.75, "y":0}, | ||
| 135 | {"label":"K10", "x":0, "y":1}, | ||
| 136 | {"label":"K11", "x":1, "y":1}, | ||
| 137 | {"label":"K12", "x":2, "y":1}, | ||
| 138 | {"label":"K13", "x":3, "y":1}, | ||
| 139 | {"label":"K14", "x":4, "y":1}, | ||
| 140 | {"label":"K15", "x":5, "y":1}, | ||
| 141 | {"label":"K16", "x":6, "y":1}, | ||
| 142 | {"label":"K17", "x":8.75, "y":1}, | ||
| 143 | {"label":"K18", "x":9.75, "y":1}, | ||
| 144 | {"label":"K19", "x":10.75, "y":1}, | ||
| 145 | {"label":"K110", "x":12.75, "y":1}, | ||
| 146 | {"label":"K111", "x":13.75, "y":1}, | ||
| 147 | {"label":"K112", "x":14.75, "y":1}, | ||
| 148 | {"label":"K113", "x":15.75, "y":1}, | ||
| 149 | {"label":"K114", "x":16.75, "y":1}, | ||
| 150 | {"label":"K115", "x":17.75, "y":1}, | ||
| 151 | {"label":"K116", "x":18.75, "y":1}, | ||
| 152 | {"label":"K117", "x":19.75, "y":1}, | ||
| 153 | {"label":"K118", "x":20.75, "y":1}, | ||
| 154 | {"label":"K119", "x":21.75, "y":1}, | ||
| 155 | {"label":"K20", "x":0, "y":2, "w":1.5}, | ||
| 156 | {"label":"K21", "x":1.5, "y":2}, | ||
| 157 | {"label":"K22", "x":2.5, "y":2}, | ||
| 158 | {"label":"K23", "x":3.5, "y":2}, | ||
| 159 | {"label":"K24", "x":4.5, "y":2}, | ||
| 160 | {"label":"K25", "x":5.5, "y":2}, | ||
| 161 | {"label":"K26", "x":7.75, "y":2}, | ||
| 162 | {"label":"K17", "x":8.75, "y":2}, | ||
| 163 | {"label":"K28", "x":9.75, "y":2}, | ||
| 164 | {"label":"K210", "x":12.25, "y":2}, | ||
| 165 | {"label":"K211", "x":13.25, "y":2}, | ||
| 166 | {"label":"K212", "x":14.25, "y":2}, | ||
| 167 | {"label":"K213", "x":15.25, "y":2}, | ||
| 168 | {"label":"K214", "x":16.25, "y":2}, | ||
| 169 | {"label":"K215", "x":17.25, "y":2}, | ||
| 170 | {"label":"K216", "x":18.25, "y":2}, | ||
| 171 | {"label":"K217", "x":19.25, "y":2, "w":1.5}, | ||
| 172 | {"label":"K218", "x":20.75, "y":2}, | ||
| 173 | {"label":"K219", "x":21.75, "y":2}, | ||
| 174 | {"label":"K30", "x":0, "y":3, "w":1.75}, | ||
| 175 | {"label":"K31", "x":1.75, "y":3}, | ||
| 176 | {"label":"K32", "x":2.75, "y":3}, | ||
| 177 | {"label":"K33", "x":3.75, "y":3}, | ||
| 178 | {"label":"K34", "x":4.75, "y":3}, | ||
| 179 | {"label":"K35", "x":5.75, "y":3}, | ||
| 180 | {"label":"K36", "x":7.75, "y":3}, | ||
| 181 | {"label":"K37", "x":8.75, "y":3}, | ||
| 182 | {"label":"K38", "x":9.75, "y":3}, | ||
| 183 | {"label":"K29", "x":10.75, "y":2, "h":2}, | ||
| 184 | {"label":"K310", "x":12.5, "y":3}, | ||
| 185 | {"label":"K311", "x":13.5, "y":3}, | ||
| 186 | {"label":"K312", "x":14.5, "y":3}, | ||
| 187 | {"label":"K313", "x":15.5, "y":3}, | ||
| 188 | {"label":"K314", "x":16.5, "y":3}, | ||
| 189 | {"label":"K315", "x":17.5, "y":3}, | ||
| 190 | {"label":"K317", "x":18.5, "y":3, "w":2.25}, | ||
| 191 | {"label":"K40", "x":0, "y":4, "w":2.25}, | ||
| 192 | {"label":"K41", "x":2.25, "y":4}, | ||
| 193 | {"label":"K42", "x":3.25, "y":4}, | ||
| 194 | {"label":"K43", "x":4.25, "y":4}, | ||
| 195 | {"label":"K44", "x":5.25, "y":4}, | ||
| 196 | {"label":"K45", "x":6.25, "y":4}, | ||
| 197 | {"label":"K46", "x":7.75, "y":4}, | ||
| 198 | {"label":"K47", "x":8.75, "y":4}, | ||
| 199 | {"label":"K48", "x":9.75, "y":4}, | ||
| 200 | {"label":"K410", "x":13, "y":4}, | ||
| 201 | {"label":"K411", "x":14, "y":4}, | ||
| 202 | {"label":"K412", "x":15, "y":4}, | ||
| 203 | {"label":"K413", "x":16, "y":4}, | ||
| 204 | {"label":"K414", "x":17, "y":4}, | ||
| 205 | {"label":"K416", "x":18, "y":4, "w":2.75}, | ||
| 206 | {"label":"K418", "x":20.75, "y":4}, | ||
| 207 | {"label":"K50", "x":0, "y":5, "w":1.25}, | ||
| 208 | {"label":"K51", "x":1.25, "y":5, "w":1.25}, | ||
| 209 | {"label":"K52", "x":2.5, "y":5, "w":1.25}, | ||
| 210 | {"label":"K53", "x":3.75, "y":5, "w":1.25}, | ||
| 211 | {"label":"K54", "x":5, "y":5, "w":2.25}, | ||
| 212 | {"label":"K56", "x":7.75, "y":5, "w":2}, | ||
| 213 | {"label":"K58", "x":9.75, "y":5}, | ||
| 214 | {"label":"K49", "x":10.75, "y":4, "h":2}, | ||
| 215 | {"label":"K510", "x":13, "y":5, "w":2}, | ||
| 216 | {"label":"K512", "x":15, "y":5, "w":1.25}, | ||
| 217 | {"label":"K513", "x":16.25, "y":5, "w":1.25}, | ||
| 218 | {"label":"K514", "x":17.5, "y":5, "w":1.25}, | ||
| 219 | {"label":"K516", "x":18.75, "y":5}, | ||
| 220 | {"label":"K517", "x":19.75, "y":5}, | ||
| 221 | {"label":"K518", "x":20.75, "y":5}, | ||
| 222 | {"label":"K519", "x":21.75, "y":5} | ||
| 223 | ] | ||
| 224 | }, | ||
| 225 | "LAYOUT_split_rshift": { | ||
| 226 | "layout": [ | ||
| 227 | {"label":"K00", "x":0, "y":0}, | ||
| 228 | {"label":"K01", "x":1, "y":0}, | ||
| 229 | {"label":"K02", "x":2, "y":0}, | ||
| 230 | {"label":"K03", "x":3, "y":0}, | ||
| 231 | {"label":"K04", "x":4, "y":0}, | ||
| 232 | {"label":"K05", "x":5, "y":0}, | ||
| 233 | {"label":"K06", "x":6, "y":0}, | ||
| 234 | {"label":"K010", "x":12.75, "y":0}, | ||
| 235 | {"label":"K011", "x":13.75, "y":0}, | ||
| 236 | {"label":"K012", "x":14.75, "y":0}, | ||
| 237 | {"label":"K013", "x":15.75, "y":0}, | ||
| 238 | {"label":"K014", "x":16.75, "y":0}, | ||
| 239 | {"label":"K015", "x":17.75, "y":0}, | ||
| 240 | {"label":"K016", "x":18.75, "y":0}, | ||
| 241 | {"label":"K017", "x":19.75, "y":0}, | ||
| 242 | {"label":"K018", "x":20.75, "y":0}, | ||
| 243 | {"label":"K019", "x":21.75, "y":0}, | ||
| 244 | {"label":"K10", "x":0, "y":1}, | ||
| 245 | {"label":"K11", "x":1, "y":1}, | ||
| 246 | {"label":"K12", "x":2, "y":1}, | ||
| 247 | {"label":"K13", "x":3, "y":1}, | ||
| 248 | {"label":"K14", "x":4, "y":1}, | ||
| 249 | {"label":"K15", "x":5, "y":1}, | ||
| 250 | {"label":"K16", "x":6, "y":1}, | ||
| 251 | {"label":"K17", "x":8.75, "y":1}, | ||
| 252 | {"label":"K18", "x":9.75, "y":1}, | ||
| 253 | {"label":"K19", "x":10.75, "y":1}, | ||
| 254 | {"label":"K110", "x":12.75, "y":1}, | ||
| 255 | {"label":"K111", "x":13.75, "y":1}, | ||
| 256 | {"label":"K112", "x":14.75, "y":1}, | ||
| 257 | {"label":"K113", "x":15.75, "y":1}, | ||
| 258 | {"label":"K114", "x":16.75, "y":1}, | ||
| 259 | {"label":"K115", "x":17.75, "y":1}, | ||
| 260 | {"label":"K116", "x":18.75, "y":1, "w":2}, | ||
| 261 | {"label":"K118", "x":20.75, "y":1}, | ||
| 262 | {"label":"K119", "x":21.75, "y":1}, | ||
| 263 | {"label":"K20", "x":0, "y":2, "w":1.5}, | ||
| 264 | {"label":"K21", "x":1.5, "y":2}, | ||
| 265 | {"label":"K22", "x":2.5, "y":2}, | ||
| 266 | {"label":"K23", "x":3.5, "y":2}, | ||
| 267 | {"label":"K24", "x":4.5, "y":2}, | ||
| 268 | {"label":"K25", "x":5.5, "y":2}, | ||
| 269 | {"label":"K26", "x":7.75, "y":2}, | ||
| 270 | {"label":"K17", "x":8.75, "y":2}, | ||
| 271 | {"label":"K28", "x":9.75, "y":2}, | ||
| 272 | {"label":"K210", "x":12.25, "y":2}, | ||
| 273 | {"label":"K211", "x":13.25, "y":2}, | ||
| 274 | {"label":"K212", "x":14.25, "y":2}, | ||
| 275 | {"label":"K213", "x":15.25, "y":2}, | ||
| 276 | {"label":"K214", "x":16.25, "y":2}, | ||
| 277 | {"label":"K215", "x":17.25, "y":2}, | ||
| 278 | {"label":"K216", "x":18.25, "y":2}, | ||
| 279 | {"label":"K217", "x":19.25, "y":2, "w":1.5}, | ||
| 280 | {"label":"K218", "x":20.75, "y":2}, | ||
| 281 | {"label":"K219", "x":21.75, "y":2}, | ||
| 282 | {"label":"K30", "x":0, "y":3, "w":1.75}, | ||
| 283 | {"label":"K31", "x":1.75, "y":3}, | ||
| 284 | {"label":"K32", "x":2.75, "y":3}, | ||
| 285 | {"label":"K33", "x":3.75, "y":3}, | ||
| 286 | {"label":"K34", "x":4.75, "y":3}, | ||
| 287 | {"label":"K35", "x":5.75, "y":3}, | ||
| 288 | {"label":"K36", "x":7.75, "y":3}, | ||
| 289 | {"label":"K37", "x":8.75, "y":3}, | ||
| 290 | {"label":"K38", "x":9.75, "y":3}, | ||
| 291 | {"label":"K29", "x":10.75, "y":2, "h":2}, | ||
| 292 | {"label":"K310", "x":12.5, "y":3}, | ||
| 293 | {"label":"K311", "x":13.5, "y":3}, | ||
| 294 | {"label":"K312", "x":14.5, "y":3}, | ||
| 295 | {"label":"K313", "x":15.5, "y":3}, | ||
| 296 | {"label":"K314", "x":16.5, "y":3}, | ||
| 297 | {"label":"K315", "x":17.5, "y":3}, | ||
| 298 | {"label":"K317", "x":18.5, "y":3, "w":2.25}, | ||
| 299 | {"label":"K40", "x":0, "y":4, "w":2.25}, | ||
| 300 | {"label":"K41", "x":2.25, "y":4}, | ||
| 301 | {"label":"K42", "x":3.25, "y":4}, | ||
| 302 | {"label":"K43", "x":4.25, "y":4}, | ||
| 303 | {"label":"K44", "x":5.25, "y":4}, | ||
| 304 | {"label":"K45", "x":6.25, "y":4}, | ||
| 305 | {"label":"K46", "x":7.75, "y":4}, | ||
| 306 | {"label":"K47", "x":8.75, "y":4}, | ||
| 307 | {"label":"K48", "x":9.75, "y":4}, | ||
| 308 | {"label":"K410", "x":13, "y":4}, | ||
| 309 | {"label":"K411", "x":14, "y":4}, | ||
| 310 | {"label":"K412", "x":15, "y":4}, | ||
| 311 | {"label":"K413", "x":16, "y":4}, | ||
| 312 | {"label":"K414", "x":17, "y":4}, | ||
| 313 | {"label":"K416", "x":18, "y":4, "w":1.75}, | ||
| 314 | {"label":"K417", "x":19.75, "y":4}, | ||
| 315 | {"label":"K418", "x":20.75, "y":4}, | ||
| 316 | {"label":"K50", "x":0, "y":5, "w":1.25}, | ||
| 317 | {"label":"K51", "x":1.25, "y":5, "w":1.25}, | ||
| 318 | {"label":"K52", "x":2.5, "y":5, "w":1.25}, | ||
| 319 | {"label":"K53", "x":3.75, "y":5, "w":1.25}, | ||
| 320 | {"label":"K54", "x":5, "y":5, "w":2.25}, | ||
| 321 | {"label":"K56", "x":7.75, "y":5, "w":2}, | ||
| 322 | {"label":"K58", "x":9.75, "y":5}, | ||
| 323 | {"label":"K49", "x":10.75, "y":4, "h":2}, | ||
| 324 | {"label":"K510", "x":13, "y":5, "w":2}, | ||
| 325 | {"label":"K512", "x":15, "y":5, "w":1.25}, | ||
| 326 | {"label":"K513", "x":16.25, "y":5, "w":1.25}, | ||
| 327 | {"label":"K514", "x":17.5, "y":5, "w":1.25}, | ||
| 328 | {"label":"K516", "x":18.75, "y":5}, | ||
| 329 | {"label":"K517", "x":19.75, "y":5}, | ||
| 330 | {"label":"K518", "x":20.75, "y":5}, | ||
| 331 | {"label":"K519", "x":21.75, "y":5} | ||
| 332 | ] | ||
| 333 | }, | ||
| 334 | "LAYOUT_split_numpad": { | ||
| 335 | "layout": [ | ||
| 336 | {"label":"K00", "x":0, "y":0}, | ||
| 337 | {"label":"K01", "x":1, "y":0}, | ||
| 338 | {"label":"K02", "x":2, "y":0}, | ||
| 339 | {"label":"K03", "x":3, "y":0}, | ||
| 340 | {"label":"K04", "x":4, "y":0}, | ||
| 341 | {"label":"K05", "x":5, "y":0}, | ||
| 342 | {"label":"K06", "x":6, "y":0}, | ||
| 343 | {"label":"K010", "x":12.75, "y":0}, | ||
| 344 | {"label":"K011", "x":13.75, "y":0}, | ||
| 345 | {"label":"K012", "x":14.75, "y":0}, | ||
| 346 | {"label":"K013", "x":15.75, "y":0}, | ||
| 347 | {"label":"K014", "x":16.75, "y":0}, | ||
| 348 | {"label":"K015", "x":17.75, "y":0}, | ||
| 349 | {"label":"K016", "x":18.75, "y":0}, | ||
| 350 | {"label":"K017", "x":19.75, "y":0}, | ||
| 351 | {"label":"K018", "x":20.75, "y":0}, | ||
| 352 | {"label":"K019", "x":21.75, "y":0}, | ||
| 353 | {"label":"K10", "x":0, "y":1}, | ||
| 354 | {"label":"K11", "x":1, "y":1}, | ||
| 355 | {"label":"K12", "x":2, "y":1}, | ||
| 356 | {"label":"K13", "x":3, "y":1}, | ||
| 357 | {"label":"K14", "x":4, "y":1}, | ||
| 358 | {"label":"K15", "x":5, "y":1}, | ||
| 359 | {"label":"K16", "x":6, "y":1}, | ||
| 360 | {"label":"K17", "x":8.75, "y":1}, | ||
| 361 | {"label":"K18", "x":9.75, "y":1}, | ||
| 362 | {"label":"K19", "x":10.75, "y":1}, | ||
| 363 | {"label":"K110", "x":12.75, "y":1}, | ||
| 364 | {"label":"K111", "x":13.75, "y":1}, | ||
| 365 | {"label":"K112", "x":14.75, "y":1}, | ||
| 366 | {"label":"K113", "x":15.75, "y":1}, | ||
| 367 | {"label":"K114", "x":16.75, "y":1}, | ||
| 368 | {"label":"K115", "x":17.75, "y":1}, | ||
| 369 | {"label":"K116", "x":18.75, "y":1, "w":2}, | ||
| 370 | {"label":"K118", "x":20.75, "y":1}, | ||
| 371 | {"label":"K119", "x":21.75, "y":1}, | ||
| 372 | {"label":"K20", "x":0, "y":2, "w":1.5}, | ||
| 373 | {"label":"K21", "x":1.5, "y":2}, | ||
| 374 | {"label":"K22", "x":2.5, "y":2}, | ||
| 375 | {"label":"K23", "x":3.5, "y":2}, | ||
| 376 | {"label":"K24", "x":4.5, "y":2}, | ||
| 377 | {"label":"K25", "x":5.5, "y":2}, | ||
| 378 | {"label":"K26", "x":7.75, "y":2}, | ||
| 379 | {"label":"K17", "x":8.75, "y":2}, | ||
| 380 | {"label":"K28", "x":9.75, "y":2}, | ||
| 381 | {"label":"K29", "x":10.75, "y":2}, | ||
| 382 | {"label":"K210", "x":12.25, "y":2}, | ||
| 383 | {"label":"K211", "x":13.25, "y":2}, | ||
| 384 | {"label":"K212", "x":14.25, "y":2}, | ||
| 385 | {"label":"K213", "x":15.25, "y":2}, | ||
| 386 | {"label":"K214", "x":16.25, "y":2}, | ||
| 387 | {"label":"K215", "x":17.25, "y":2}, | ||
| 388 | {"label":"K216", "x":18.25, "y":2}, | ||
| 389 | {"label":"K217", "x":19.25, "y":2, "w":1.5}, | ||
| 390 | {"label":"K218", "x":20.75, "y":2}, | ||
| 391 | {"label":"K219", "x":21.75, "y":2}, | ||
| 392 | {"label":"K30", "x":0, "y":3, "w":1.75}, | ||
| 393 | {"label":"K31", "x":1.75, "y":3}, | ||
| 394 | {"label":"K32", "x":2.75, "y":3}, | ||
| 395 | {"label":"K33", "x":3.75, "y":3}, | ||
| 396 | {"label":"K34", "x":4.75, "y":3}, | ||
| 397 | {"label":"K35", "x":5.75, "y":3}, | ||
| 398 | {"label":"K36", "x":7.75, "y":3}, | ||
| 399 | {"label":"K37", "x":8.75, "y":3}, | ||
| 400 | {"label":"K38", "x":9.75, "y":3}, | ||
| 401 | {"label":"K39", "x":10.75, "y":3}, | ||
| 402 | {"label":"K310", "x":12.5, "y":3}, | ||
| 403 | {"label":"K311", "x":13.5, "y":3}, | ||
| 404 | {"label":"K312", "x":14.5, "y":3}, | ||
| 405 | {"label":"K313", "x":15.5, "y":3}, | ||
| 406 | {"label":"K314", "x":16.5, "y":3}, | ||
| 407 | {"label":"K315", "x":17.5, "y":3}, | ||
| 408 | {"label":"K317", "x":18.5, "y":3, "w":2.25}, | ||
| 409 | {"label":"K40", "x":0, "y":4, "w":2.25}, | ||
| 410 | {"label":"K41", "x":2.25, "y":4}, | ||
| 411 | {"label":"K42", "x":3.25, "y":4}, | ||
| 412 | {"label":"K43", "x":4.25, "y":4}, | ||
| 413 | {"label":"K44", "x":5.25, "y":4}, | ||
| 414 | {"label":"K45", "x":6.25, "y":4}, | ||
| 415 | {"label":"K46", "x":7.75, "y":4}, | ||
| 416 | {"label":"K47", "x":8.75, "y":4}, | ||
| 417 | {"label":"K48", "x":9.75, "y":4}, | ||
| 418 | {"label":"K49", "x":10.75, "y":4}, | ||
| 419 | {"label":"K410", "x":13, "y":4}, | ||
| 420 | {"label":"K411", "x":14, "y":4}, | ||
| 421 | {"label":"K412", "x":15, "y":4}, | ||
| 422 | {"label":"K413", "x":16, "y":4}, | ||
| 423 | {"label":"K414", "x":17, "y":4}, | ||
| 424 | {"label":"K416", "x":18, "y":4, "w":2.75}, | ||
| 425 | {"label":"K418", "x":20.75, "y":4}, | ||
| 426 | {"label":"K50", "x":0, "y":5, "w":1.25}, | ||
| 427 | {"label":"K51", "x":1.25, "y":5, "w":1.25}, | ||
| 428 | {"label":"K52", "x":2.5, "y":5, "w":1.25}, | ||
| 429 | {"label":"K53", "x":3.75, "y":5, "w":1.25}, | ||
| 430 | {"label":"K54", "x":5, "y":5, "w":2.25}, | ||
| 431 | {"label":"K56", "x":7.75, "y":5}, | ||
| 432 | {"Label":"K57", "x":8.75, "y":5}, | ||
| 433 | {"label":"K58", "x":9.75, "y":5}, | ||
| 434 | {"label":"K59", "x":10.75, "y":5}, | ||
| 435 | {"label":"K510", "x":13, "y":5, "w":2}, | ||
| 436 | {"label":"K512", "x":15, "y":5, "w":1.25}, | ||
| 437 | {"label":"K513", "x":16.25, "y":5, "w":1.25}, | ||
| 438 | {"label":"K514", "x":17.5, "y":5, "w":1.25}, | ||
| 439 | {"label":"K516", "x":18.75, "y":5}, | ||
| 440 | {"label":"K517", "x":19.75, "y":5}, | ||
| 441 | {"label":"K518", "x":20.75, "y":5}, | ||
| 442 | {"label":"K519", "x":21.75, "y":5} | ||
| 443 | ] | ||
| 444 | }, | ||
| 445 | "LAYOUT_all": { | ||
| 446 | "layout": [ | ||
| 447 | {"label":"K00", "x":0, "y":0}, | ||
| 448 | {"label":"K01", "x":1, "y":0}, | ||
| 449 | {"label":"K02", "x":2, "y":0}, | ||
| 450 | {"label":"K03", "x":3, "y":0}, | ||
| 451 | {"label":"K04", "x":4, "y":0}, | ||
| 452 | {"label":"K05", "x":5, "y":0}, | ||
| 453 | {"label":"K06", "x":6, "y":0}, | ||
| 454 | {"label":"K010", "x":12.75, "y":0}, | ||
| 455 | {"label":"K011", "x":13.75, "y":0}, | ||
| 456 | {"label":"K012", "x":14.75, "y":0}, | ||
| 457 | {"label":"K013", "x":15.75, "y":0}, | ||
| 458 | {"label":"K014", "x":16.75, "y":0}, | ||
| 459 | {"label":"K015", "x":17.75, "y":0}, | ||
| 460 | {"label":"K016", "x":18.75, "y":0}, | ||
| 461 | {"label":"K017", "x":19.75, "y":0}, | ||
| 462 | {"label":"K018", "x":20.75, "y":0}, | ||
| 463 | {"label":"K019", "x":21.75, "y":0}, | ||
| 464 | {"label":"K10", "x":0, "y":1}, | ||
| 465 | {"label":"K11", "x":1, "y":1}, | ||
| 466 | {"label":"K12", "x":2, "y":1}, | ||
| 467 | {"label":"K13", "x":3, "y":1}, | ||
| 468 | {"label":"K14", "x":4, "y":1}, | ||
| 469 | {"label":"K15", "x":5, "y":1}, | ||
| 470 | {"label":"K16", "x":6, "y":1}, | ||
| 471 | {"label":"K17", "x":8.75, "y":1}, | ||
| 472 | {"label":"K18", "x":9.75, "y":1}, | ||
| 473 | {"label":"K19", "x":10.75, "y":1}, | ||
| 474 | {"label":"K110", "x":12.75, "y":1}, | ||
| 475 | {"label":"K111", "x":13.75, "y":1}, | ||
| 476 | {"label":"K112", "x":14.75, "y":1}, | ||
| 477 | {"label":"K113", "x":15.75, "y":1}, | ||
| 478 | {"label":"K114", "x":16.75, "y":1}, | ||
| 479 | {"label":"K115", "x":17.75, "y":1}, | ||
| 480 | {"label":"K116", "x":18.75, "y":1}, | ||
| 481 | {"label":"K117", "x":19.75, "y":1}, | ||
| 482 | {"label":"K118", "x":20.75, "y":1}, | ||
| 483 | {"label":"K119", "x":21.75, "y":1}, | ||
| 484 | {"label":"K20", "x":0, "y":2, "w":1.5}, | ||
| 485 | {"label":"K21", "x":1.5, "y":2}, | ||
| 486 | {"label":"K22", "x":2.5, "y":2}, | ||
| 487 | {"label":"K23", "x":3.5, "y":2}, | ||
| 488 | {"label":"K24", "x":4.5, "y":2}, | ||
| 489 | {"label":"K25", "x":5.5, "y":2}, | ||
| 490 | {"label":"K26", "x":7.75, "y":2}, | ||
| 491 | {"label":"K27", "x":8.75, "y":2}, | ||
| 492 | {"label":"K28", "x":9.75, "y":2}, | ||
| 493 | {"label":"K29", "x":10.75, "y":2}, | ||
| 494 | {"label":"K210", "x":12.25, "y":2}, | ||
| 495 | {"label":"K211", "x":13.25, "y":2}, | ||
| 496 | {"label":"K212", "x":14.25, "y":2}, | ||
| 497 | {"label":"K213", "x":15.25, "y":2}, | ||
| 498 | {"label":"K214", "x":16.25, "y":2}, | ||
| 499 | {"label":"K215", "x":17.25, "y":2}, | ||
| 500 | {"label":"K216", "x":18.25, "y":2}, | ||
| 501 | {"label":"K217", "x":19.25, "y":2, "w":1.5}, | ||
| 502 | {"label":"K218", "x":20.75, "y":2}, | ||
| 503 | {"label":"K219", "x":21.75, "y":2}, | ||
| 504 | {"label":"K30", "x":0, "y":3, "w":1.75}, | ||
| 505 | {"label":"K31", "x":1.75, "y":3}, | ||
| 506 | {"label":"K32", "x":2.75, "y":3}, | ||
| 507 | {"label":"K33", "x":3.75, "y":3}, | ||
| 508 | {"label":"K34", "x":4.75, "y":3}, | ||
| 509 | {"label":"K35", "x":5.75, "y":3}, | ||
| 510 | {"label":"K36", "x":7.75, "y":3}, | ||
| 511 | {"label":"K37", "x":8.75, "y":3}, | ||
| 512 | {"label":"K38", "x":9.75, "y":3}, | ||
| 513 | {"label":"K39", "x":10.75, "y":3}, | ||
| 514 | {"label":"K310", "x":12.5, "y":3}, | ||
| 515 | {"label":"K311", "x":13.5, "y":3}, | ||
| 516 | {"label":"K312", "x":14.5, "y":3}, | ||
| 517 | {"label":"K313", "x":15.5, "y":3}, | ||
| 518 | {"label":"K314", "x":16.5, "y":3}, | ||
| 519 | {"label":"K315", "x":17.5, "y":3}, | ||
| 520 | {"label":"K317", "x":18.5, "y":3, "w":2.25}, | ||
| 521 | {"label":"K40", "x":0, "y":4, "w":2.25}, | ||
| 522 | {"label":"K41", "x":2.25, "y":4}, | ||
| 523 | {"label":"K42", "x":3.25, "y":4}, | ||
| 524 | {"label":"K43", "x":4.25, "y":4}, | ||
| 525 | {"label":"K44", "x":5.25, "y":4}, | ||
| 526 | {"label":"K45", "x":6.25, "y":4}, | ||
| 527 | {"label":"K46", "x":7.75, "y":4}, | ||
| 528 | {"label":"K47", "x":8.75, "y":4}, | ||
| 529 | {"label":"K48", "x":9.75, "y":4}, | ||
| 530 | {"label":"K49", "x":10.75, "y":4}, | ||
| 531 | {"label":"K410", "x":13, "y":4}, | ||
| 532 | {"label":"K411", "x":14, "y":4}, | ||
| 533 | {"label":"K412", "x":15, "y":4}, | ||
| 534 | {"label":"K413", "x":16, "y":4}, | ||
| 535 | {"label":"K414", "x":17, "y":4}, | ||
| 536 | {"label":"K416", "x":18, "y":4, "w":1.75}, | ||
| 537 | {"label":"K417", "x":19.75, "y":4}, | ||
| 538 | {"label":"K418", "x":20.75, "y":4}, | ||
| 539 | {"label":"K50", "x":0, "y":5, "w":1.25}, | ||
| 540 | {"label":"K51", "x":1.25, "y":5, "w":1.25}, | ||
| 541 | {"label":"K52", "x":2.5, "y":5, "w":1.25}, | ||
| 542 | {"label":"K53", "x":3.75, "y":5, "w":1.25}, | ||
| 543 | {"label":"K54", "x":5, "y":5, "w":2.25}, | ||
| 544 | {"label":"K56", "x":7.75, "y":5}, | ||
| 545 | {"label":"K57", "x":8.75, "y":5}, | ||
| 546 | {"label":"K58", "x":9.75, "y":5}, | ||
| 547 | {"label":"K59", "x":10.75, "y":5}, | ||
| 548 | {"label":"K510", "x":13, "y":5, "w":2}, | ||
| 549 | {"label":"K512", "x":15, "y":5, "w":1.25}, | ||
| 550 | {"label":"K513", "x":16.25, "y":5, "w":1.25}, | ||
| 551 | {"label":"K514", "x":17.5, "y":5, "w":1.25}, | ||
| 552 | {"label":"K516", "x":18.75, "y":5}, | ||
| 553 | {"label":"K517", "x":19.75, "y":5}, | ||
| 554 | {"label":"K518", "x":20.75, "y":5}, | ||
| 555 | {"label":"K519", "x":21.75, "y":5} | ||
| 556 | ] | ||
| 557 | } | ||
| 558 | } | ||
| 559 | } | ||
diff --git a/keyboards/handwired/downbubble/keymaps/default/config.h b/keyboards/handwired/downbubble/keymaps/default/config.h deleted file mode 100644 index 4496c5910..000000000 --- a/keyboards/handwired/downbubble/keymaps/default/config.h +++ /dev/null | |||
| @@ -1,19 +0,0 @@ | |||
| 1 | /* Copyright 2018 REPLACE_WITH_YOUR_NAME | ||
| 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 | // place overrides here | ||
diff --git a/keyboards/handwired/downbubble/keymaps/default/keymap.c b/keyboards/handwired/downbubble/keymaps/default/keymap.c deleted file mode 100644 index 48303900f..000000000 --- a/keyboards/handwired/downbubble/keymaps/default/keymap.c +++ /dev/null | |||
| @@ -1,103 +0,0 @@ | |||
| 1 | /* Copyright 2018 REPLACE_WITH_YOUR_NAME | ||
| 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 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | // Defines the keycodes used by our macros in process_record_user | ||
| 19 | enum custom_keycodes { | ||
| 20 | QMKBEST = SAFE_RANGE, | ||
| 21 | QMKURL | ||
| 22 | }; | ||
| 23 | |||
| 24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 25 | [0] = LAYOUT_standard(\ | ||
| 26 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_NLCK, KC_HOME, KC_TRNS, | ||
| 27 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_PSLS, KC_PAST, KC_PMNS, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_END, KC_PGUP, | ||
| 28 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_P7, KC_P8, KC_P9, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_PGDN, | ||
| 29 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_P4, KC_P5, KC_P6, KC_PPLS, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 30 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_P1, KC_P2, KC_P3, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, | ||
| 31 | KC_LCTL, KC_LGUI, KC_LALT, KC_BSPC, KC_SPC, KC_P0, KC_PDOT, KC_PENT, KC_BSPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 32 | ), | ||
| 33 | |||
| 34 | LAYOUT_split_bs(\ | ||
| 35 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_NLCK, KC_HOME, KC_TRNS, | ||
| 36 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_PSLS, KC_PAST, KC_PMNS, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_TRNS, KC_END, KC_PGUP, | ||
| 37 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_P7, KC_P8, KC_P9, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_PGDN, | ||
| 38 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_P4, KC_P5, KC_P6, KC_PPLS, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 39 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_P1, KC_P2, KC_P3, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, | ||
| 40 | KC_LCTL, KC_LGUI, KC_LALT, KC_BSPC, KC_SPC, KC_P0, KC_PDOT, KC_PENT, KC_BSPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 41 | ), | ||
| 42 | |||
| 43 | LAYOUT_split_rshift(\ | ||
| 44 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_NLCK, KC_HOME, KC_TRNS, | ||
| 45 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_PSLS, KC_PAST, KC_PMNS, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_END, KC_PGUP, | ||
| 46 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_P7, KC_P8, KC_P9, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_PGDN, | ||
| 47 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_P4, KC_P5, KC_P6, KC_PPLS, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 48 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_P1, KC_P2, KC_P3, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_TRNS, KC_UP, | ||
| 49 | KC_LCTL, KC_LGUI, KC_LALT, KC_BSPC, KC_SPC, KC_P0, KC_PDOT, KC_PENT, KC_BSPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 50 | ), | ||
| 51 | |||
| 52 | LAYOUT_split_numpad(\ | ||
| 53 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_NLCK, KC_HOME, KC_TRNS, | ||
| 54 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_PSLS, KC_PAST, KC_PMNS, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_END, KC_PGUP, | ||
| 55 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_P7, KC_P8, KC_P9, KC_PPLS, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_PGDN, | ||
| 56 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_P4, KC_P5, KC_P6, KC_TRNS, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 57 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_P1, KC_P2, KC_P3, KC_PENT, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, | ||
| 58 | KC_LCTL, KC_LGUI, KC_LALT, KC_BSPC, KC_SPC, KC_P0, KC_TRNS, KC_PDOT, KC_TRNS, KC_BSPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 59 | ), | ||
| 60 | |||
| 61 | LAYOUT_all(\ | ||
| 62 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_NLCK, KC_HOME, KC_TRNS, | ||
| 63 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_PSLS, KC_PAST, KC_PMNS, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_TRNS, KC_END, KC_PGUP, | ||
| 64 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_P7, KC_P8, KC_P9, KC_PPLS, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_PGDN, | ||
| 65 | KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_P4, KC_P5, KC_P6, KC_TRNS, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 66 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_P1, KC_P2, KC_P3, KC_PENT, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_TRNS, KC_UP, | ||
| 67 | KC_LCTL, KC_LGUI, KC_LALT, KC_BSPC, KC_SPC, KC_P0, KC_TRNS, KC_PDOT, KC_TRNS, KC_BSPC, KC_RALT, KC_RGUI, KC_APP, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 68 | ), | ||
| 69 | }; | ||
| 70 | |||
| 71 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 72 | switch (keycode) { | ||
| 73 | case QMKBEST: | ||
| 74 | if (record->event.pressed) { | ||
| 75 | // when keycode QMKBEST is pressed | ||
| 76 | SEND_STRING("QMK is the best thing ever!"); | ||
| 77 | } else { | ||
| 78 | // when keycode QMKBEST is released | ||
| 79 | } | ||
| 80 | break; | ||
| 81 | case QMKURL: | ||
| 82 | if (record->event.pressed) { | ||
| 83 | // when keycode QMKURL is pressed | ||
| 84 | SEND_STRING("https://qmk.fm/" SS_TAP(X_ENTER)); | ||
| 85 | } else { | ||
| 86 | // when keycode QMKURL is released | ||
| 87 | } | ||
| 88 | break; | ||
| 89 | } | ||
| 90 | return true; | ||
| 91 | } | ||
| 92 | |||
| 93 | void matrix_init_user(void) { | ||
| 94 | |||
| 95 | } | ||
| 96 | |||
| 97 | void matrix_scan_user(void) { | ||
| 98 | |||
| 99 | } | ||
| 100 | |||
| 101 | void led_set_user(uint8_t usb_led) { | ||
| 102 | |||
| 103 | } | ||
diff --git a/keyboards/handwired/downbubble/keymaps/default/readme.md b/keyboards/handwired/downbubble/keymaps/default/readme.md deleted file mode 100644 index 757d99062..000000000 --- a/keyboards/handwired/downbubble/keymaps/default/readme.md +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | # The default keymaps for downbubble | ||
diff --git a/keyboards/handwired/downbubble/license b/keyboards/handwired/downbubble/license deleted file mode 100644 index e6e77b089..000000000 --- a/keyboards/handwired/downbubble/license +++ /dev/null | |||
| @@ -1,201 +0,0 @@ | |||
| 1 | Apache License | ||
| 2 | Version 2.0, January 2004 | ||
| 3 | http://www.apache.org/licenses/ | ||
| 4 | |||
| 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | ||
| 6 | |||
| 7 | 1. Definitions. | ||
| 8 | |||
| 9 | "License" shall mean the terms and conditions for use, reproduction, | ||
| 10 | and distribution as defined by Sections 1 through 9 of this document. | ||
| 11 | |||
| 12 | "Licensor" shall mean the copyright owner or entity authorized by | ||
| 13 | the copyright owner that is granting the License. | ||
| 14 | |||
| 15 | "Legal Entity" shall mean the union of the acting entity and all | ||
| 16 | other entities that control, are controlled by, or are under common | ||
| 17 | control with that entity. For the purposes of this definition, | ||
| 18 | "control" means (i) the power, direct or indirect, to cause the | ||
| 19 | direction or management of such entity, whether by contract or | ||
| 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the | ||
| 21 | outstanding shares, or (iii) beneficial ownership of such entity. | ||
| 22 | |||
| 23 | "You" (or "Your") shall mean an individual or Legal Entity | ||
| 24 | exercising permissions granted by this License. | ||
| 25 | |||
| 26 | "Source" form shall mean the preferred form for making modifications, | ||
| 27 | including but not limited to software source code, documentation | ||
| 28 | source, and configuration files. | ||
| 29 | |||
| 30 | "Object" form shall mean any form resulting from mechanical | ||
| 31 | transformation or translation of a Source form, including but | ||
| 32 | not limited to compiled object code, generated documentation, | ||
| 33 | and conversions to other media types. | ||
| 34 | |||
| 35 | "Work" shall mean the work of authorship, whether in Source or | ||
| 36 | Object form, made available under the License, as indicated by a | ||
| 37 | copyright notice that is included in or attached to the work | ||
| 38 | (an example is provided in the Appendix below). | ||
| 39 | |||
| 40 | "Derivative Works" shall mean any work, whether in Source or Object | ||
| 41 | form, that is based on (or derived from) the Work and for which the | ||
| 42 | editorial revisions, annotations, elaborations, or other modifications | ||
| 43 | represent, as a whole, an original work of authorship. For the purposes | ||
| 44 | of this License, Derivative Works shall not include works that remain | ||
| 45 | separable from, or merely link (or bind by name) to the interfaces of, | ||
| 46 | the Work and Derivative Works thereof. | ||
| 47 | |||
| 48 | "Contribution" shall mean any work of authorship, including | ||
| 49 | the original version of the Work and any modifications or additions | ||
| 50 | to that Work or Derivative Works thereof, that is intentionally | ||
| 51 | submitted to Licensor for inclusion in the Work by the copyright owner | ||
| 52 | or by an individual or Legal Entity authorized to submit on behalf of | ||
| 53 | the copyright owner. For the purposes of this definition, "submitted" | ||
| 54 | means any form of electronic, verbal, or written communication sent | ||
| 55 | to the Licensor or its representatives, including but not limited to | ||
| 56 | communication on electronic mailing lists, source code control systems, | ||
| 57 | and issue tracking systems that are managed by, or on behalf of, the | ||
| 58 | Licensor for the purpose of discussing and improving the Work, but | ||
| 59 | excluding communication that is conspicuously marked or otherwise | ||
| 60 | designated in writing by the copyright owner as "Not a Contribution." | ||
| 61 | |||
| 62 | "Contributor" shall mean Licensor and any individual or Legal Entity | ||
| 63 | on behalf of whom a Contribution has been received by Licensor and | ||
| 64 | subsequently incorporated within the Work. | ||
| 65 | |||
| 66 | 2. Grant of Copyright License. Subject to the terms and conditions of | ||
| 67 | this License, each Contributor hereby grants to You a perpetual, | ||
| 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
| 69 | copyright license to reproduce, prepare Derivative Works of, | ||
| 70 | publicly display, publicly perform, sublicense, and distribute the | ||
| 71 | Work and such Derivative Works in Source or Object form. | ||
| 72 | |||
| 73 | 3. Grant of Patent License. Subject to the terms and conditions of | ||
| 74 | this License, each Contributor hereby grants to You a perpetual, | ||
| 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
| 76 | (except as stated in this section) patent license to make, have made, | ||
| 77 | use, offer to sell, sell, import, and otherwise transfer the Work, | ||
| 78 | where such license applies only to those patent claims licensable | ||
| 79 | by such Contributor that are necessarily infringed by their | ||
| 80 | Contribution(s) alone or by combination of their Contribution(s) | ||
| 81 | with the Work to which such Contribution(s) was submitted. If You | ||
| 82 | institute patent litigation against any entity (including a | ||
| 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work | ||
| 84 | or a Contribution incorporated within the Work constitutes direct | ||
| 85 | or contributory patent infringement, then any patent licenses | ||
| 86 | granted to You under this License for that Work shall terminate | ||
| 87 | as of the date such litigation is filed. | ||
| 88 | |||
| 89 | 4. Redistribution. You may reproduce and distribute copies of the | ||
| 90 | Work or Derivative Works thereof in any medium, with or without | ||
| 91 | modifications, and in Source or Object form, provided that You | ||
| 92 | meet the following conditions: | ||
| 93 | |||
| 94 | (a) You must give any other recipients of the Work or | ||
| 95 | Derivative Works a copy of this License; and | ||
| 96 | |||
| 97 | (b) You must cause any modified files to carry prominent notices | ||
| 98 | stating that You changed the files; and | ||
| 99 | |||
| 100 | (c) You must retain, in the Source form of any Derivative Works | ||
| 101 | that You distribute, all copyright, patent, trademark, and | ||
| 102 | attribution notices from the Source form of the Work, | ||
| 103 | excluding those notices that do not pertain to any part of | ||
| 104 | the Derivative Works; and | ||
| 105 | |||
| 106 | (d) If the Work includes a "NOTICE" text file as part of its | ||
| 107 | distribution, then any Derivative Works that You distribute must | ||
| 108 | include a readable copy of the attribution notices contained | ||
| 109 | within such NOTICE file, excluding those notices that do not | ||
| 110 | pertain to any part of the Derivative Works, in at least one | ||
| 111 | of the following places: within a NOTICE text file distributed | ||
| 112 | as part of the Derivative Works; within the Source form or | ||
| 113 | documentation, if provided along with the Derivative Works; or, | ||
| 114 | within a display generated by the Derivative Works, if and | ||
| 115 | wherever such third-party notices normally appear. The contents | ||
| 116 | of the NOTICE file are for informational purposes only and | ||
| 117 | do not modify the License. You may add Your own attribution | ||
| 118 | notices within Derivative Works that You distribute, alongside | ||
| 119 | or as an addendum to the NOTICE text from the Work, provided | ||
| 120 | that such additional attribution notices cannot be construed | ||
| 121 | as modifying the License. | ||
| 122 | |||
| 123 | You may add Your own copyright statement to Your modifications and | ||
| 124 | may provide additional or different license terms and conditions | ||
| 125 | for use, reproduction, or distribution of Your modifications, or | ||
| 126 | for any such Derivative Works as a whole, provided Your use, | ||
| 127 | reproduction, and distribution of the Work otherwise complies with | ||
| 128 | the conditions stated in this License. | ||
| 129 | |||
| 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, | ||
| 131 | any Contribution intentionally submitted for inclusion in the Work | ||
| 132 | by You to the Licensor shall be under the terms and conditions of | ||
| 133 | this License, without any additional terms or conditions. | ||
| 134 | Notwithstanding the above, nothing herein shall supersede or modify | ||
| 135 | the terms of any separate license agreement you may have executed | ||
| 136 | with Licensor regarding such Contributions. | ||
| 137 | |||
| 138 | 6. Trademarks. This License does not grant permission to use the trade | ||
| 139 | names, trademarks, service marks, or product names of the Licensor, | ||
| 140 | except as required for reasonable and customary use in describing the | ||
| 141 | origin of the Work and reproducing the content of the NOTICE file. | ||
| 142 | |||
| 143 | 7. Disclaimer of Warranty. Unless required by applicable law or | ||
| 144 | agreed to in writing, Licensor provides the Work (and each | ||
| 145 | Contributor provides its Contributions) on an "AS IS" BASIS, | ||
| 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
| 147 | implied, including, without limitation, any warranties or conditions | ||
| 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A | ||
| 149 | PARTICULAR PURPOSE. You are solely responsible for determining the | ||
| 150 | appropriateness of using or redistributing the Work and assume any | ||
| 151 | risks associated with Your exercise of permissions under this License. | ||
| 152 | |||
| 153 | 8. Limitation of Liability. In no event and under no legal theory, | ||
| 154 | whether in tort (including negligence), contract, or otherwise, | ||
| 155 | unless required by applicable law (such as deliberate and grossly | ||
| 156 | negligent acts) or agreed to in writing, shall any Contributor be | ||
| 157 | liable to You for damages, including any direct, indirect, special, | ||
| 158 | incidental, or consequential damages of any character arising as a | ||
| 159 | result of this License or out of the use or inability to use the | ||
| 160 | Work (including but not limited to damages for loss of goodwill, | ||
| 161 | work stoppage, computer failure or malfunction, or any and all | ||
| 162 | other commercial damages or losses), even if such Contributor | ||
| 163 | has been advised of the possibility of such damages. | ||
| 164 | |||
| 165 | 9. Accepting Warranty or Additional Liability. While redistributing | ||
| 166 | the Work or Derivative Works thereof, You may choose to offer, | ||
| 167 | and charge a fee for, acceptance of support, warranty, indemnity, | ||
| 168 | or other liability obligations and/or rights consistent with this | ||
| 169 | License. However, in accepting such obligations, You may act only | ||
| 170 | on Your own behalf and on Your sole responsibility, not on behalf | ||
| 171 | of any other Contributor, and only if You agree to indemnify, | ||
| 172 | defend, and hold each Contributor harmless for any liability | ||
| 173 | incurred by, or claims asserted against, such Contributor by reason | ||
| 174 | of your accepting any such warranty or additional liability. | ||
| 175 | |||
| 176 | END OF TERMS AND CONDITIONS | ||
| 177 | |||
| 178 | APPENDIX: How to apply the Apache License to your work. | ||
| 179 | |||
| 180 | To apply the Apache License to your work, attach the following | ||
| 181 | boilerplate notice, with the fields enclosed by brackets "[]" | ||
| 182 | replaced with your own identifying information. (Don't include | ||
| 183 | the brackets!) The text should be enclosed in the appropriate | ||
| 184 | comment syntax for the file format. We also recommend that a | ||
| 185 | file or class name and description of purpose be included on the | ||
| 186 | same "printed page" as the copyright notice for easier | ||
| 187 | identification within third-party archives. | ||
| 188 | |||
| 189 | Copyright [yyyy] [name of copyright owner] | ||
| 190 | |||
| 191 | Licensed under the Apache License, Version 2.0 (the "License"); | ||
| 192 | you may not use this file except in compliance with the License. | ||
| 193 | You may obtain a copy of the License at | ||
| 194 | |||
| 195 | http://www.apache.org/licenses/LICENSE-2.0 | ||
| 196 | |||
| 197 | Unless required by applicable law or agreed to in writing, software | ||
| 198 | distributed under the License is distributed on an "AS IS" BASIS, | ||
| 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| 200 | See the License for the specific language governing permissions and | ||
| 201 | limitations under the License. | ||
diff --git a/keyboards/handwired/downbubble/readme.md b/keyboards/handwired/downbubble/readme.md deleted file mode 100644 index e66234512..000000000 --- a/keyboards/handwired/downbubble/readme.md +++ /dev/null | |||
| @@ -1,15 +0,0 @@ | |||
| 1 | # downbubble | ||
| 2 | |||
| 3 | Prototype hand-wired version of this keyboard - https://imgur.com/a/0KbX1JH | ||
| 4 | |||
| 5 | This is an ergonomic keyboard with a 5 degree rotation on keyboard halves, and a rotated numpad in the center for RH users. | ||
| 6 | |||
| 7 | Keyboard Maintainer: [Flehrad](https://github.com/flehrad) | ||
| 8 | Hardware Supported: downbubble PCB, AT90USB1286 MCU, MX switches and MiniUSB connector | ||
| 9 | Hardware Availability: The Board Podcast Slack | ||
| 10 | |||
| 11 | Make example for this keyboard (after setting up your build environment): | ||
| 12 | |||
| 13 | make downbubble: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/handwired/downbubble/rules.mk b/keyboards/handwired/downbubble/rules.mk deleted file mode 100644 index 189b82720..000000000 --- a/keyboards/handwired/downbubble/rules.mk +++ /dev/null | |||
| @@ -1,33 +0,0 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = at90usb1286 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | # Teensy halfkay | ||
| 6 | # Pro Micro caterina | ||
| 7 | # Atmel DFU atmel-dfu | ||
| 8 | # LUFA DFU lufa-dfu | ||
| 9 | # QMK DFU qmk-dfu | ||
| 10 | # ATmega32A bootloadHID | ||
| 11 | # ATmega328P USBasp | ||
| 12 | BOOTLOADER = atmel-dfu | ||
| 13 | |||
| 14 | # Build Options | ||
| 15 | # change yes to no to disable | ||
| 16 | # | ||
| 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) | ||
| 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | ||
| 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | ||
| 20 | CONSOLE_ENABLE = yes # Console for debug(+400) | ||
| 21 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 25 | NKRO_ENABLE = no # USB Nkey Rollover | ||
| 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | ||
| 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
| 29 | UNICODE_ENABLE = no # Unicode | ||
| 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 31 | AUDIO_ENABLE = no # Audio output on port C6 | ||
| 32 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 33 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400) | ||
diff --git a/keyboards/handwired/numbrero/config.h b/keyboards/handwired/numbrero/config.h deleted file mode 100644 index ac38e0814..000000000 --- a/keyboards/handwired/numbrero/config.h +++ /dev/null | |||
| @@ -1,46 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "config_common.h" | ||
| 4 | |||
| 5 | /* USB Device descriptor parameter */ | ||
| 6 | #define VENDOR_ID 0xFEED | ||
| 7 | #define PRODUCT_ID 0x6060 | ||
| 8 | #define DEVICE_VER 0x0001 | ||
| 9 | #define MANUFACTURER Flehrad | ||
| 10 | #define PRODUCT Numbrero | ||
| 11 | #define DESCRIPTION Pro Micro-powered Reversible L/H Numpad with Extra Macro Keys | ||
| 12 | |||
| 13 | /* key matrix size */ | ||
| 14 | #define MATRIX_ROWS 5 | ||
| 15 | #define MATRIX_COLS 5 | ||
| 16 | |||
| 17 | /* key matrix pins */ | ||
| 18 | #define MATRIX_ROW_PINS { F6, B5, B4, E6, F7 } | ||
| 19 | #define MATRIX_COL_PINS { D1, D0, D4, F5, F4 } | ||
| 20 | #define UNUSED_PINS | ||
| 21 | |||
| 22 | /* COL2ROW or ROW2COL */ | ||
| 23 | #define DIODE_DIRECTION COL2ROW | ||
| 24 | |||
| 25 | /* number of backlight levels */ | ||
| 26 | |||
| 27 | #ifdef BACKLIGHT_PIN | ||
| 28 | #define BACKLIGHT_LEVELS 3 | ||
| 29 | #endif | ||
| 30 | |||
| 31 | /* Set 0 if debouncing isn't needed */ | ||
| 32 | #define DEBOUNCE 5 | ||
| 33 | |||
| 34 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 35 | #define LOCKING_SUPPORT_ENABLE | ||
| 36 | |||
| 37 | /* Locking resynchronize hack */ | ||
| 38 | #define LOCKING_RESYNC_ENABLE | ||
| 39 | |||
| 40 | #ifdef RGB_DI_PIN | ||
| 41 | #define RGBLIGHT_ANIMATIONS | ||
| 42 | #define RGBLED_NUM 5 | ||
| 43 | #define RGBLIGHT_HUE_STEP 8 | ||
| 44 | #define RGBLIGHT_SAT_STEP 8 | ||
| 45 | #define RGBLIGHT_VAL_STEP 8 | ||
| 46 | #endif | ||
diff --git a/keyboards/handwired/numbrero/info.json b/keyboards/handwired/numbrero/info.json deleted file mode 100644 index d2f7ebd03..000000000 --- a/keyboards/handwired/numbrero/info.json +++ /dev/null | |||
| @@ -1,62 +0,0 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Numbrero", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "Flehrad", | ||
| 5 | "width": 5, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_numbrero_numpad": { | ||
| 9 | "layout": [ | ||
| 10 | {"label":"K00", "x":0, "y":0}, | ||
| 11 | {"label":"K01", "x":1, "y":0}, | ||
| 12 | {"label":"K02", "x":2, "y":0}, | ||
| 13 | {"label":"K03", "x":3, "y":0}, | ||
| 14 | {"label":"K04", "x":4, "y":0}, | ||
| 15 | {"label":"K10", "x":0, "y":1, "h":1.5}, | ||
| 16 | {"label":"K11", "x":1, "y":1}, | ||
| 17 | {"label":"K12", "x":2, "y":1}, | ||
| 18 | {"label":"K13", "x":3, "y":1}, | ||
| 19 | {"label":"K20", "x":0, "y":2.5}, | ||
| 20 | {"label":"K21", "x":1, "y":2}, | ||
| 21 | {"label":"K22", "x":2, "y":2}, | ||
| 22 | {"label":"K23", "x":3, "y":2}, | ||
| 23 | {"label":"K14", "x":4, "y":1, "h":2}, | ||
| 24 | {"label":"K30", "x":0, "y":3.5, "h":1.5}, | ||
| 25 | {"label":"K31", "x":1, "y":3}, | ||
| 26 | {"label":"K32", "x":2, "y":3}, | ||
| 27 | {"label":"K33", "x":3, "y":3}, | ||
| 28 | {"label":"K41", "x":1, "y":4, "w":2}, | ||
| 29 | {"label":"K43", "x":3, "y":4}, | ||
| 30 | {"label":"K34", "x":4, "y":3, "h":2} | ||
| 31 | ] | ||
| 32 | }, | ||
| 33 | "LAYOUT_numbrero_ortho": { | ||
| 34 | "layout": [ | ||
| 35 | {"label":"K00", "x":0, "y":0}, | ||
| 36 | {"label":"K01", "x":1, "y":0}, | ||
| 37 | {"label":"K02", "x":2, "y":0}, | ||
| 38 | {"label":"K03", "x":3, "y":0}, | ||
| 39 | {"label":"K04", "x":4, "y":0}, | ||
| 40 | {"label":"K10", "x":0, "y":1, "h":1.5}, | ||
| 41 | {"label":"K11", "x":1, "y":1}, | ||
| 42 | {"label":"K12", "x":2, "y":1}, | ||
| 43 | {"label":"K13", "x":3, "y":1}, | ||
| 44 | {"label":"K14", "x":4, "y":1}, | ||
| 45 | {"label":"K20", "x":0, "y":2.5}, | ||
| 46 | {"label":"K21", "x":1, "y":2}, | ||
| 47 | {"label":"K22", "x":2, "y":2}, | ||
| 48 | {"label":"K23", "x":3, "y":2}, | ||
| 49 | {"label":"K24", "x":4, "y":2}, | ||
| 50 | {"label":"K30", "x":0, "y":3.5, "h":1.5}, | ||
| 51 | {"label":"K31", "x":1, "y":3}, | ||
| 52 | {"label":"K32", "x":2, "y":3}, | ||
| 53 | {"label":"K33", "x":3, "y":3}, | ||
| 54 | {"label":"K34", "x":4, "y":3}, | ||
| 55 | {"label":"K41", "x":1, "y":4}, | ||
| 56 | {"label":"K42", "x":2, "y":4}, | ||
| 57 | {"label":"K43", "x":3, "y":4}, | ||
| 58 | {"label":"K44", "x":4, "y":4} | ||
| 59 | ] | ||
| 60 | } | ||
| 61 | } | ||
| 62 | } | ||
diff --git a/keyboards/handwired/numbrero/keymaps/default/keymap.c b/keyboards/handwired/numbrero/keymaps/default/keymap.c deleted file mode 100644 index 903ed8d88..000000000 --- a/keyboards/handwired/numbrero/keymaps/default/keymap.c +++ /dev/null | |||
| @@ -1,30 +0,0 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | |||
| 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 4 | |||
| 5 | LAYOUT_numbrero_numpad( | ||
| 6 | KC_TRNS, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, | ||
| 7 | KC_TRNS, KC_P7, KC_P8, KC_P9, | ||
| 8 | KC_TRNS, KC_P4, KC_P5, KC_P6, KC_PPLS, | ||
| 9 | KC_TRNS, KC_P1, KC_P2, KC_P3, | ||
| 10 | KC_P0, KC_PDOT, KC_PENT), | ||
| 11 | |||
| 12 | LAYOUT_numbrero_ortho( | ||
| 13 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 14 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 15 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 16 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 17 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 18 | |||
| 19 | |||
| 20 | }; | ||
| 21 | |||
| 22 | void matrix_init_user(void) { | ||
| 23 | } | ||
| 24 | |||
| 25 | void matrix_scan_user(void) { | ||
| 26 | } | ||
| 27 | |||
| 28 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 29 | return true; | ||
| 30 | } | ||
diff --git a/keyboards/handwired/numbrero/license b/keyboards/handwired/numbrero/license deleted file mode 100644 index b09cd7856..000000000 --- a/keyboards/handwired/numbrero/license +++ /dev/null | |||
| @@ -1,201 +0,0 @@ | |||
| 1 | Apache License | ||
| 2 | Version 2.0, January 2004 | ||
| 3 | http://www.apache.org/licenses/ | ||
| 4 | |||
| 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | ||
| 6 | |||
| 7 | 1. Definitions. | ||
| 8 | |||
| 9 | "License" shall mean the terms and conditions for use, reproduction, | ||
| 10 | and distribution as defined by Sections 1 through 9 of this document. | ||
| 11 | |||
| 12 | "Licensor" shall mean the copyright owner or entity authorized by | ||
| 13 | the copyright owner that is granting the License. | ||
| 14 | |||
| 15 | "Legal Entity" shall mean the union of the acting entity and all | ||
| 16 | other entities that control, are controlled by, or are under common | ||
| 17 | control with that entity. For the purposes of this definition, | ||
| 18 | "control" means (i) the power, direct or indirect, to cause the | ||
| 19 | direction or management of such entity, whether by contract or | ||
| 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the | ||
| 21 | outstanding shares, or (iii) beneficial ownership of such entity. | ||
| 22 | |||
| 23 | "You" (or "Your") shall mean an individual or Legal Entity | ||
| 24 | exercising permissions granted by this License. | ||
| 25 | |||
| 26 | "Source" form shall mean the preferred form for making modifications, | ||
| 27 | including but not limited to software source code, documentation | ||
| 28 | source, and configuration files. | ||
| 29 | |||
| 30 | "Object" form shall mean any form resulting from mechanical | ||
| 31 | transformation or translation of a Source form, including but | ||
| 32 | not limited to compiled object code, generated documentation, | ||
| 33 | and conversions to other media types. | ||
| 34 | |||
| 35 | "Work" shall mean the work of authorship, whether in Source or | ||
| 36 | Object form, made available under the License, as indicated by a | ||
| 37 | copyright notice that is included in or attached to the work | ||
| 38 | (an example is provided in the Appendix below). | ||
| 39 | |||
| 40 | "Derivative Works" shall mean any work, whether in Source or Object | ||
| 41 | form, that is based on (or derived from) the Work and for which the | ||
| 42 | editorial revisions, annotations, elaborations, or other modifications | ||
| 43 | represent, as a whole, an original work of authorship. For the purposes | ||
| 44 | of this License, Derivative Works shall not include works that remain | ||
| 45 | separable from, or merely link (or bind by name) to the interfaces of, | ||
| 46 | the Work and Derivative Works thereof. | ||
| 47 | |||
| 48 | "Contribution" shall mean any work of authorship, including | ||
| 49 | the original version of the Work and any modifications or additions | ||
| 50 | to that Work or Derivative Works thereof, that is intentionally | ||
| 51 | submitted to Licensor for inclusion in the Work by the copyright owner | ||
| 52 | or by an individual or Legal Entity authorized to submit on behalf of | ||
| 53 | the copyright owner. For the purposes of this definition, "submitted" | ||
| 54 | means any form of electronic, verbal, or written communication sent | ||
| 55 | to the Licensor or its representatives, including but not limited to | ||
| 56 | communication on electronic mailing lists, source code control systems, | ||
| 57 | and issue tracking systems that are managed by, or on behalf of, the | ||
| 58 | Licensor for the purpose of discussing and improving the Work, but | ||
| 59 | excluding communication that is conspicuously marked or otherwise | ||
| 60 | designated in writing by the copyright owner as "Not a Contribution." | ||
| 61 | |||
| 62 | "Contributor" shall mean Licensor and any individual or Legal Entity | ||
| 63 | on behalf of whom a Contribution has been received by Licensor and | ||
| 64 | subsequently incorporated within the Work. | ||
| 65 | |||
| 66 | 2. Grant of Copyright License. Subject to the terms and conditions of | ||
| 67 | this License, each Contributor hereby grants to You a perpetual, | ||
| 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
| 69 | copyright license to reproduce, prepare Derivative Works of, | ||
| 70 | publicly display, publicly perform, sublicense, and distribute the | ||
| 71 | Work and such Derivative Works in Source or Object form. | ||
| 72 | |||
| 73 | 3. Grant of Patent License. Subject to the terms and conditions of | ||
| 74 | this License, each Contributor hereby grants to You a perpetual, | ||
| 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
| 76 | (except as stated in this section) patent license to make, have made, | ||
| 77 | use, offer to sell, sell, import, and otherwise transfer the Work, | ||
| 78 | where such license applies only to those patent claims licensable | ||
| 79 | by such Contributor that are necessarily infringed by their | ||
| 80 | Contribution(s) alone or by combination of their Contribution(s) | ||
| 81 | with the Work to which such Contribution(s) was submitted. If You | ||
| 82 | institute patent litigation against any entity (including a | ||
| 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work | ||
| 84 | or a Contribution incorporated within the Work constitutes direct | ||
| 85 | or contributory patent infringement, then any patent licenses | ||
| 86 | granted to You under this License for that Work shall terminate | ||
| 87 | as of the date such litigation is filed. | ||
| 88 | |||
| 89 | 4. Redistribution. You may reproduce and distribute copies of the | ||
| 90 | Work or Derivative Works thereof in any medium, with or without | ||
| 91 | modifications, and in Source or Object form, provided that You | ||
| 92 | meet the following conditions: | ||
| 93 | |||
| 94 | (a) You must give any other recipients of the Work or | ||
| 95 | Derivative Works a copy of this License; and | ||
| 96 | |||
| 97 | (b) You must cause any modified files to carry prominent notices | ||
| 98 | stating that You changed the files; and | ||
| 99 | |||
| 100 | (c) You must retain, in the Source form of any Derivative Works | ||
| 101 | that You distribute, all copyright, patent, trademark, and | ||
| 102 | attribution notices from the Source form of the Work, | ||
| 103 | excluding those notices that do not pertain to any part of | ||
| 104 | the Derivative Works; and | ||
| 105 | |||
| 106 | (d) If the Work includes a "NOTICE" text file as part of its | ||
| 107 | distribution, then any Derivative Works that You distribute must | ||
| 108 | include a readable copy of the attribution notices contained | ||
| 109 | within such NOTICE file, excluding those notices that do not | ||
| 110 | pertain to any part of the Derivative Works, in at least one | ||
| 111 | of the following places: within a NOTICE text file distributed | ||
| 112 | as part of the Derivative Works; within the Source form or | ||
| 113 | documentation, if provided along with the Derivative Works; or, | ||
| 114 | within a display generated by the Derivative Works, if and | ||
| 115 | wherever such third-party notices normally appear. The contents | ||
| 116 | of the NOTICE file are for informational purposes only and | ||
| 117 | do not modify the License. You may add Your own attribution | ||
| 118 | notices within Derivative Works that You distribute, alongside | ||
| 119 | or as an addendum to the NOTICE text from the Work, provided | ||
| 120 | that such additional attribution notices cannot be construed | ||
| 121 | as modifying the License. | ||
| 122 | |||
| 123 | You may add Your own copyright statement to Your modifications and | ||
| 124 | may provide additional or different license terms and conditions | ||
| 125 | for use, reproduction, or distribution of Your modifications, or | ||
| 126 | for any such Derivative Works as a whole, provided Your use, | ||
| 127 | reproduction, and distribution of the Work otherwise complies with | ||
| 128 | the conditions stated in this License. | ||
| 129 | |||
| 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, | ||
| 131 | any Contribution intentionally submitted for inclusion in the Work | ||
| 132 | by You to the Licensor shall be under the terms and conditions of | ||
| 133 | this License, without any additional terms or conditions. | ||
| 134 | Notwithstanding the above, nothing herein shall supersede or modify | ||
| 135 | the terms of any separate license agreement you may have executed | ||
| 136 | with Licensor regarding such Contributions. | ||
| 137 | |||
| 138 | 6. Trademarks. This License does not grant permission to use the trade | ||
| 139 | names, trademarks, service marks, or product names of the Licensor, | ||
| 140 | except as required for reasonable and customary use in describing the | ||
| 141 | origin of the Work and reproducing the content of the NOTICE file. | ||
| 142 | |||
| 143 | 7. Disclaimer of Warranty. Unless required by applicable law or | ||
| 144 | agreed to in writing, Licensor provides the Work (and each | ||
| 145 | Contributor provides its Contributions) on an "AS IS" BASIS, | ||
| 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
| 147 | implied, including, without limitation, any warranties or conditions | ||
| 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A | ||
| 149 | PARTICULAR PURPOSE. You are solely responsible for determining the | ||
| 150 | appropriateness of using or redistributing the Work and assume any | ||
| 151 | risks associated with Your exercise of permissions under this License. | ||
| 152 | |||
| 153 | 8. Limitation of Liability. In no event and under no legal theory, | ||
| 154 | whether in tort (including negligence), contract, or otherwise, | ||
| 155 | unless required by applicable law (such as deliberate and grossly | ||
| 156 | negligent acts) or agreed to in writing, shall any Contributor be | ||
| 157 | liable to You for damages, including any direct, indirect, special, | ||
| 158 | incidental, or consequential damages of any character arising as a | ||
| 159 | result of this License or out of the use or inability to use the | ||
| 160 | Work (including but not limited to damages for loss of goodwill, | ||
| 161 | work stoppage, computer failure or malfunction, or any and all | ||
| 162 | other commercial damages or losses), even if such Contributor | ||
| 163 | has been advised of the possibility of such damages. | ||
| 164 | |||
| 165 | 9. Accepting Warranty or Additional Liability. While redistributing | ||
| 166 | the Work or Derivative Works thereof, You may choose to offer, | ||
| 167 | and charge a fee for, acceptance of support, warranty, indemnity, | ||
| 168 | or other liability obligations and/or rights consistent with this | ||
| 169 | License. However, in accepting such obligations, You may act only | ||
| 170 | on Your own behalf and on Your sole responsibility, not on behalf | ||
| 171 | of any other Contributor, and only if You agree to indemnify, | ||
| 172 | defend, and hold each Contributor harmless for any liability | ||
| 173 | incurred by, or claims asserted against, such Contributor by reason | ||
| 174 | of your accepting any such warranty or additional liability. | ||
| 175 | |||
| 176 | END OF TERMS AND CONDITIONS | ||
| 177 | |||
| 178 | APPENDIX: How to apply the Apache License to your work. | ||
| 179 | |||
| 180 | To apply the Apache License to your work, attach the following | ||
| 181 | boilerplate notice, with the fields enclosed by brackets "[]" | ||
| 182 | replaced with your own identifying information. (Don't include | ||
| 183 | the brackets!) The text should be enclosed in the appropriate | ||
| 184 | comment syntax for the file format. We also recommend that a | ||
| 185 | file or class name and description of purpose be included on the | ||
| 186 | same "printed page" as the copyright notice for easier | ||
| 187 | identification within third-party archives. | ||
| 188 | |||
| 189 | Copyright [yyyy] [name of copyright owner] | ||
| 190 | |||
| 191 | Licensed under the Apache License, Version 2.0 (the "License"); | ||
| 192 | you may not use this file except in compliance with the License. | ||
| 193 | You may obtain a copy of the License at | ||
| 194 | |||
| 195 | http://www.apache.org/licenses/LICENSE-2.0 | ||
| 196 | |||
| 197 | Unless required by applicable law or agreed to in writing, software | ||
| 198 | distributed under the License is distributed on an "AS IS" BASIS, | ||
| 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| 200 | See the License for the specific language governing permissions and | ||
| 201 | limitations under the License. | ||
diff --git a/keyboards/handwired/numbrero/numbrero.c b/keyboards/handwired/numbrero/numbrero.c deleted file mode 100644 index d3ec36904..000000000 --- a/keyboards/handwired/numbrero/numbrero.c +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | #include "numbrero.h" | ||
diff --git a/keyboards/handwired/numbrero/numbrero.h b/keyboards/handwired/numbrero/numbrero.h deleted file mode 100644 index c72e65407..000000000 --- a/keyboards/handwired/numbrero/numbrero.h +++ /dev/null | |||
| @@ -1,30 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "quantum.h" | ||
| 4 | |||
| 5 | #define LAYOUT_numbrero_numpad( \ | ||
| 6 | K00, K01, K02, K03, K04, \ | ||
| 7 | K10, K11, K12, K13, \ | ||
| 8 | K20, K21, K22, K23, K14, \ | ||
| 9 | K30, K31, K32, K33, \ | ||
| 10 | K41, K43, K34 \ | ||
| 11 | ) { \ | ||
| 12 | { K00, K01, K02, K03, K04 }, \ | ||
| 13 | { K10, K11, K12, K13, K14 }, \ | ||
| 14 | { K20, K21, K22, K23, KC_NO }, \ | ||
| 15 | { K30, K31, K32, K33, K34 }, \ | ||
| 16 | { KC_NO, K41, KC_NO, K43, KC_NO } \ | ||
| 17 | } | ||
| 18 | #define LAYOUT_numbrero_ortho(\ | ||
| 19 | K00, K01, K02, K03, K04, \ | ||
| 20 | K10, K11, K12, K13, K14, \ | ||
| 21 | K20, K21, K22, K23, K24, \ | ||
| 22 | K30, K31, K32, K33, K34, \ | ||
| 23 | K41, K42, K43, K44 \ | ||
| 24 | ){ \ | ||
| 25 | { K00, K01, K02, K03, K04 }, \ | ||
| 26 | { K10, K11, K12, K13, K14 }, \ | ||
| 27 | { K20, K21, K22, K23, K24 }, \ | ||
| 28 | { K30, K31, K32, K33, K34 }, \ | ||
| 29 | { KC_NO, K41, K42, K43, K44 } \ | ||
| 30 | } | ||
diff --git a/keyboards/handwired/numbrero/readme.md b/keyboards/handwired/numbrero/readme.md deleted file mode 100644 index 931c60127..000000000 --- a/keyboards/handwired/numbrero/readme.md +++ /dev/null | |||
| @@ -1,13 +0,0 @@ | |||
| 1 | # Numbrero | ||
| 2 | |||
| 3 | A reversible numpad (left/right-handed) with extra macro keys. | ||
| 4 | |||
| 5 | Keyboard Maintainer: [Flehrad](https://github.com/flehrad) | ||
| 6 | Hardware Supported: Numbrero PCB, Pro Micro | ||
| 7 | Hardware Availability: The Board Podcast Slack | ||
| 8 | |||
| 9 | Make example for this keyboard (after setting up your build environment): | ||
| 10 | |||
| 11 | make handwired/numbrero:default | ||
| 12 | |||
| 13 | 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/numbrero/rules.mk b/keyboards/handwired/numbrero/rules.mk deleted file mode 100644 index 969dd0b50..000000000 --- a/keyboards/handwired/numbrero/rules.mk +++ /dev/null | |||
| @@ -1,26 +0,0 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | # Teensy halfkay | ||
| 6 | # Pro Micro caterina | ||
| 7 | # Atmel DFU atmel-dfu | ||
| 8 | # LUFA DFU lufa-dfu | ||
| 9 | # QMK DFU qmk-dfu | ||
| 10 | # ATmega32A bootloadHID | ||
| 11 | # ATmega328P USBasp | ||
| 12 | BOOTLOADER = caterina | ||
| 13 | |||
| 14 | # Build Options | ||
| 15 | # comment out to disable the options. | ||
| 16 | # | ||
| 17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | ||
| 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | ||
| 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | ||
| 20 | CONSOLE_ENABLE = no # Console for debug(+400) | ||
| 21 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 25 | AUDIO_ENABLE = no | ||
| 26 | RGBLIGHT_ENABLE = no | ||
diff --git a/keyboards/handwired/tradestation/config.h b/keyboards/handwired/tradestation/config.h deleted file mode 100644 index 33c87548f..000000000 --- a/keyboards/handwired/tradestation/config.h +++ /dev/null | |||
| @@ -1,46 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "config_common.h" | ||
| 4 | |||
| 5 | /* USB Device descriptor parameter */ | ||
| 6 | #define VENDOR_ID 0xFEED | ||
| 7 | #define PRODUCT_ID 0x6060 | ||
| 8 | #define DEVICE_VER 0x0001 | ||
| 9 | #define MANUFACTURER Flehrad | ||
| 10 | #define PRODUCT Trade Station | ||
| 11 | #define DESCRIPTION A Pro Micro-powered macropad layout by Didier Luximon. 1/8U gap space top two rows and 1/4U gap between 2U bottom two rows. | ||
| 12 | |||
| 13 | /* key matrix size */ | ||
| 14 | #define MATRIX_ROWS 4 | ||
| 15 | #define MATRIX_COLS 4 | ||
| 16 | |||
| 17 | /* key matrix pins */ | ||
| 18 | #define MATRIX_ROW_PINS { D1, C6, D4, D0 } | ||
| 19 | #define MATRIX_COL_PINS { F7, B1, D7, E6 } | ||
| 20 | #define UNUSED_PINS | ||
| 21 | |||
| 22 | /* COL2ROW or ROW2COL */ | ||
| 23 | #define DIODE_DIRECTION COL2ROW | ||
| 24 | |||
| 25 | /* number of backlight levels */ | ||
| 26 | |||
| 27 | #ifdef BACKLIGHT_PIN | ||
| 28 | #define BACKLIGHT_LEVELS 3 | ||
| 29 | #endif | ||
| 30 | |||
| 31 | /* Set 0 if debouncing isn't needed */ | ||
| 32 | #define DEBOUNCE 5 | ||
| 33 | |||
| 34 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 35 | #define LOCKING_SUPPORT_ENABLE | ||
| 36 | |||
| 37 | /* Locking resynchronize hack */ | ||
| 38 | #define LOCKING_RESYNC_ENABLE | ||
| 39 | |||
| 40 | #ifdef RGB_DI_PIN | ||
| 41 | #define RGBLIGHT_ANIMATIONS | ||
| 42 | #define RGBLED_NUM 5 | ||
| 43 | #define RGBLIGHT_HUE_STEP 8 | ||
| 44 | #define RGBLIGHT_SAT_STEP 8 | ||
| 45 | #define RGBLIGHT_VAL_STEP 8 | ||
| 46 | #endif | ||
diff --git a/keyboards/handwired/tradestation/info.json b/keyboards/handwired/tradestation/info.json deleted file mode 100644 index 233eb6282..000000000 --- a/keyboards/handwired/tradestation/info.json +++ /dev/null | |||
| @@ -1,15 +0,0 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "Tradestation", | ||
| 3 | "url": "", | ||
| 4 | "maintainer": "Flehrad", | ||
| 5 | "width": 4.375, | ||
| 6 | "height": 4.5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_tradestation": { | ||
| 9 | "layout": [{"x":0, "y":0},{"x":1.125, "y":0},{"x":2.25, "y":0},{"x":3.375, "y":0},{"x":0, "y":1.1},{"x":1.125, "y":1.1},{"x":2.25, "y":1.1},{"x":3.375, "y":1.1},{"x":0, "y":2.25, "w":2},{"x":2.25, "y":2.25, "w":2},{"x":0, "y":3.5, "w":2},{"x":2.25, "y":3.5, "w":2}] | ||
| 10 | }, | ||
| 11 | "LAYOUT_ortho_4x4": { | ||
| 12 | "layout": [{"x":0, "y":0},{"x":1.125, "y":0},{"x":2.25, "y":0},{"x":3.375, "y":0},{"x":0, "y":1.1},{"x":1.125, "y":1.1},{"x":2.25, "y":1.1},{"x":3.375, "y":1.1},{"x":0, "y":2.25},{"x":1.125, "y":2.25},{"x":2.25, "y":2.25},{"x":3.375, "y":2.25},{"x":0, "y":3.5},{"x":1.125, "y":3.5},{"x":2.25, "y":3.5},{"x":3.375, "y":3.5}] | ||
| 13 | } | ||
| 14 | } | ||
| 15 | } | ||
diff --git a/keyboards/handwired/tradestation/keymaps/default/keymap.c b/keyboards/handwired/tradestation/keymaps/default/keymap.c deleted file mode 100644 index 3497dcb94..000000000 --- a/keyboards/handwired/tradestation/keymaps/default/keymap.c +++ /dev/null | |||
| @@ -1,61 +0,0 @@ | |||
| 1 | #include QMK_KEYBOARD_H | ||
| 2 | |||
| 3 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 4 | |||
| 5 | LAYOUT_ortho_4x4( | ||
| 6 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 7 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 8 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 9 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS), | ||
| 10 | |||
| 11 | LAYOUT_tradestation( | ||
| 12 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 13 | KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, | ||
| 14 | KC_TRNS, KC_TRNS, | ||
| 15 | KC_TRNS, KC_TRNS), | ||
| 16 | }; | ||
| 17 | |||
| 18 | |||
| 19 | void matrix_init_user(void) { | ||
| 20 | } | ||
| 21 | |||
| 22 | void matrix_scan_user(void) { | ||
| 23 | } | ||
| 24 | |||
| 25 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
| 26 | return true; | ||
| 27 | } | ||
| 28 | |||
| 29 | void led_set_user(uint8_t usb_led) { | ||
| 30 | |||
| 31 | if (usb_led & (1 << USB_LED_NUM_LOCK)) { | ||
| 32 | |||
| 33 | } else { | ||
| 34 | |||
| 35 | } | ||
| 36 | |||
| 37 | if (usb_led & (1 << USB_LED_CAPS_LOCK)) { | ||
| 38 | |||
| 39 | } else { | ||
| 40 | |||
| 41 | } | ||
| 42 | |||
| 43 | if (usb_led & (1 << USB_LED_SCROLL_LOCK)) { | ||
| 44 | |||
| 45 | } else { | ||
| 46 | |||
| 47 | } | ||
| 48 | |||
| 49 | if (usb_led & (1 << USB_LED_COMPOSE)) { | ||
| 50 | |||
| 51 | } else { | ||
| 52 | |||
| 53 | } | ||
| 54 | |||
| 55 | if (usb_led & (1 << USB_LED_KANA)) { | ||
| 56 | |||
| 57 | } else { | ||
| 58 | |||
| 59 | } | ||
| 60 | |||
| 61 | } | ||
diff --git a/keyboards/handwired/tradestation/license b/keyboards/handwired/tradestation/license deleted file mode 100644 index 261eeb9e9..000000000 --- a/keyboards/handwired/tradestation/license +++ /dev/null | |||
| @@ -1,201 +0,0 @@ | |||
| 1 | Apache License | ||
| 2 | Version 2.0, January 2004 | ||
| 3 | http://www.apache.org/licenses/ | ||
| 4 | |||
| 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | ||
| 6 | |||
| 7 | 1. Definitions. | ||
| 8 | |||
| 9 | "License" shall mean the terms and conditions for use, reproduction, | ||
| 10 | and distribution as defined by Sections 1 through 9 of this document. | ||
| 11 | |||
| 12 | "Licensor" shall mean the copyright owner or entity authorized by | ||
| 13 | the copyright owner that is granting the License. | ||
| 14 | |||
| 15 | "Legal Entity" shall mean the union of the acting entity and all | ||
| 16 | other entities that control, are controlled by, or are under common | ||
| 17 | control with that entity. For the purposes of this definition, | ||
| 18 | "control" means (i) the power, direct or indirect, to cause the | ||
| 19 | direction or management of such entity, whether by contract or | ||
| 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the | ||
| 21 | outstanding shares, or (iii) beneficial ownership of such entity. | ||
| 22 | |||
| 23 | "You" (or "Your") shall mean an individual or Legal Entity | ||
| 24 | exercising permissions granted by this License. | ||
| 25 | |||
| 26 | "Source" form shall mean the preferred form for making modifications, | ||
| 27 | including but not limited to software source code, documentation | ||
| 28 | source, and configuration files. | ||
| 29 | |||
| 30 | "Object" form shall mean any form resulting from mechanical | ||
| 31 | transformation or translation of a Source form, including but | ||
| 32 | not limited to compiled object code, generated documentation, | ||
| 33 | and conversions to other media types. | ||
| 34 | |||
| 35 | "Work" shall mean the work of authorship, whether in Source or | ||
| 36 | Object form, made available under the License, as indicated by a | ||
| 37 | copyright notice that is included in or attached to the work | ||
| 38 | (an example is provided in the Appendix below). | ||
| 39 | |||
| 40 | "Derivative Works" shall mean any work, whether in Source or Object | ||
| 41 | form, that is based on (or derived from) the Work and for which the | ||
| 42 | editorial revisions, annotations, elaborations, or other modifications | ||
| 43 | represent, as a whole, an original work of authorship. For the purposes | ||
| 44 | of this License, Derivative Works shall not include works that remain | ||
| 45 | separable from, or merely link (or bind by name) to the interfaces of, | ||
| 46 | the Work and Derivative Works thereof. | ||
| 47 | |||
| 48 | "Contribution" shall mean any work of authorship, including | ||
| 49 | the original version of the Work and any modifications or additions | ||
| 50 | to that Work or Derivative Works thereof, that is intentionally | ||
| 51 | submitted to Licensor for inclusion in the Work by the copyright owner | ||
| 52 | or by an individual or Legal Entity authorized to submit on behalf of | ||
| 53 | the copyright owner. For the purposes of this definition, "submitted" | ||
| 54 | means any form of electronic, verbal, or written communication sent | ||
| 55 | to the Licensor or its representatives, including but not limited to | ||
| 56 | communication on electronic mailing lists, source code control systems, | ||
| 57 | and issue tracking systems that are managed by, or on behalf of, the | ||
| 58 | Licensor for the purpose of discussing and improving the Work, but | ||
| 59 | excluding communication that is conspicuously marked or otherwise | ||
| 60 | designated in writing by the copyright owner as "Not a Contribution." | ||
| 61 | |||
| 62 | "Contributor" shall mean Licensor and any individual or Legal Entity | ||
| 63 | on behalf of whom a Contribution has been received by Licensor and | ||
| 64 | subsequently incorporated within the Work. | ||
| 65 | |||
| 66 | 2. Grant of Copyright License. Subject to the terms and conditions of | ||
| 67 | this License, each Contributor hereby grants to You a perpetual, | ||
| 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
| 69 | copyright license to reproduce, prepare Derivative Works of, | ||
| 70 | publicly display, publicly perform, sublicense, and distribute the | ||
| 71 | Work and such Derivative Works in Source or Object form. | ||
| 72 | |||
| 73 | 3. Grant of Patent License. Subject to the terms and conditions of | ||
| 74 | this License, each Contributor hereby grants to You a perpetual, | ||
| 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
| 76 | (except as stated in this section) patent license to make, have made, | ||
| 77 | use, offer to sell, sell, import, and otherwise transfer the Work, | ||
| 78 | where such license applies only to those patent claims licensable | ||
| 79 | by such Contributor that are necessarily infringed by their | ||
| 80 | Contribution(s) alone or by combination of their Contribution(s) | ||
| 81 | with the Work to which such Contribution(s) was submitted. If You | ||
| 82 | institute patent litigation against any entity (including a | ||
| 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work | ||
| 84 | or a Contribution incorporated within the Work constitutes direct | ||
| 85 | or contributory patent infringement, then any patent licenses | ||
| 86 | granted to You under this License for that Work shall terminate | ||
| 87 | as of the date such litigation is filed. | ||
| 88 | |||
| 89 | 4. Redistribution. You may reproduce and distribute copies of the | ||
| 90 | Work or Derivative Works thereof in any medium, with or without | ||
| 91 | modifications, and in Source or Object form, provided that You | ||
| 92 | meet the following conditions: | ||
| 93 | |||
| 94 | (a) You must give any other recipients of the Work or | ||
| 95 | Derivative Works a copy of this License; and | ||
| 96 | |||
| 97 | (b) You must cause any modified files to carry prominent notices | ||
| 98 | stating that You changed the files; and | ||
| 99 | |||
| 100 | (c) You must retain, in the Source form of any Derivative Works | ||
| 101 | that You distribute, all copyright, patent, trademark, and | ||
| 102 | attribution notices from the Source form of the Work, | ||
| 103 | excluding those notices that do not pertain to any part of | ||
| 104 | the Derivative Works; and | ||
| 105 | |||
| 106 | (d) If the Work includes a "NOTICE" text file as part of its | ||
| 107 | distribution, then any Derivative Works that You distribute must | ||
| 108 | include a readable copy of the attribution notices contained | ||
| 109 | within such NOTICE file, excluding those notices that do not | ||
| 110 | pertain to any part of the Derivative Works, in at least one | ||
| 111 | of the following places: within a NOTICE text file distributed | ||
| 112 | as part of the Derivative Works; within the Source form or | ||
| 113 | documentation, if provided along with the Derivative Works; or, | ||
| 114 | within a display generated by the Derivative Works, if and | ||
| 115 | wherever such third-party notices normally appear. The contents | ||
| 116 | of the NOTICE file are for informational purposes only and | ||
| 117 | do not modify the License. You may add Your own attribution | ||
| 118 | notices within Derivative Works that You distribute, alongside | ||
| 119 | or as an addendum to the NOTICE text from the Work, provided | ||
| 120 | that such additional attribution notices cannot be construed | ||
| 121 | as modifying the License. | ||
| 122 | |||
| 123 | You may add Your own copyright statement to Your modifications and | ||
| 124 | may provide additional or different license terms and conditions | ||
| 125 | for use, reproduction, or distribution of Your modifications, or | ||
| 126 | for any such Derivative Works as a whole, provided Your use, | ||
| 127 | reproduction, and distribution of the Work otherwise complies with | ||
| 128 | the conditions stated in this License. | ||
| 129 | |||
| 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, | ||
| 131 | any Contribution intentionally submitted for inclusion in the Work | ||
| 132 | by You to the Licensor shall be under the terms and conditions of | ||
| 133 | this License, without any additional terms or conditions. | ||
| 134 | Notwithstanding the above, nothing herein shall supersede or modify | ||
| 135 | the terms of any separate license agreement you may have executed | ||
| 136 | with Licensor regarding such Contributions. | ||
| 137 | |||
| 138 | 6. Trademarks. This License does not grant permission to use the trade | ||
| 139 | names, trademarks, service marks, or product names of the Licensor, | ||
| 140 | except as required for reasonable and customary use in describing the | ||
| 141 | origin of the Work and reproducing the content of the NOTICE file. | ||
| 142 | |||
| 143 | 7. Disclaimer of Warranty. Unless required by applicable law or | ||
| 144 | agreed to in writing, Licensor provides the Work (and each | ||
| 145 | Contributor provides its Contributions) on an "AS IS" BASIS, | ||
| 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
| 147 | implied, including, without limitation, any warranties or conditions | ||
| 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A | ||
| 149 | PARTICULAR PURPOSE. You are solely responsible for determining the | ||
| 150 | appropriateness of using or redistributing the Work and assume any | ||
| 151 | risks associated with Your exercise of permissions under this License. | ||
| 152 | |||
| 153 | 8. Limitation of Liability. In no event and under no legal theory, | ||
| 154 | whether in tort (including negligence), contract, or otherwise, | ||
| 155 | unless required by applicable law (such as deliberate and grossly | ||
| 156 | negligent acts) or agreed to in writing, shall any Contributor be | ||
| 157 | liable to You for damages, including any direct, indirect, special, | ||
| 158 | incidental, or consequential damages of any character arising as a | ||
| 159 | result of this License or out of the use or inability to use the | ||
| 160 | Work (including but not limited to damages for loss of goodwill, | ||
| 161 | work stoppage, computer failure or malfunction, or any and all | ||
| 162 | other commercial damages or losses), even if such Contributor | ||
| 163 | has been advised of the possibility of such damages. | ||
| 164 | |||
| 165 | 9. Accepting Warranty or Additional Liability. While redistributing | ||
| 166 | the Work or Derivative Works thereof, You may choose to offer, | ||
| 167 | and charge a fee for, acceptance of support, warranty, indemnity, | ||
| 168 | or other liability obligations and/or rights consistent with this | ||
| 169 | License. However, in accepting such obligations, You may act only | ||
| 170 | on Your own behalf and on Your sole responsibility, not on behalf | ||
| 171 | of any other Contributor, and only if You agree to indemnify, | ||
| 172 | defend, and hold each Contributor harmless for any liability | ||
| 173 | incurred by, or claims asserted against, such Contributor by reason | ||
| 174 | of your accepting any such warranty or additional liability. | ||
| 175 | |||
| 176 | END OF TERMS AND CONDITIONS | ||
| 177 | |||
| 178 | APPENDIX: How to apply the Apache License to your work. | ||
| 179 | |||
| 180 | To apply the Apache License to your work, attach the following | ||
| 181 | boilerplate notice, with the fields enclosed by brackets "[]" | ||
| 182 | replaced with your own identifying information. (Don't include | ||
| 183 | the brackets!) The text should be enclosed in the appropriate | ||
| 184 | comment syntax for the file format. We also recommend that a | ||
| 185 | file or class name and description of purpose be included on the | ||
| 186 | same "printed page" as the copyright notice for easier | ||
| 187 | identification within third-party archives. | ||
| 188 | |||
| 189 | Copyright [yyyy] [name of copyright owner] | ||
| 190 | |||
| 191 | Licensed under the Apache License, Version 2.0 (the "License"); | ||
| 192 | you may not use this file except in compliance with the License. | ||
| 193 | You may obtain a copy of the License at | ||
| 194 | |||
| 195 | http://www.apache.org/licenses/LICENSE-2.0 | ||
| 196 | |||
| 197 | Unless required by applicable law or agreed to in writing, software | ||
| 198 | distributed under the License is distributed on an "AS IS" BASIS, | ||
| 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| 200 | See the License for the specific language governing permissions and | ||
| 201 | limitations under the License. | ||
diff --git a/keyboards/handwired/tradestation/readme.md b/keyboards/handwired/tradestation/readme.md deleted file mode 100644 index 3a8c39e26..000000000 --- a/keyboards/handwired/tradestation/readme.md +++ /dev/null | |||
| @@ -1,27 +0,0 @@ | |||
| 1 | # Tradestation | ||
| 2 | |||
| 3 | [Image Gallery](https://imgur.com/a/yxQJXMT) | ||
| 4 | |||
| 5 | A 4x4 ortholinear macropad, with options for 2U keys on the bottom half. Can be built as single PCB with custom case, or as two-PCB style with standoffs. Requires a Pro Micro. | ||
| 6 | |||
| 7 | This PCB supports an overall 4x4 matrix with unique spacing. | ||
| 8 | |||
| 9 | * Top two rows are 1U keys with 1/8U spacing | ||
| 10 | * Bottom two rows are available with 4x2 1U as clusters of 2x1U or as 2x2 2U, spaced with 1/4U | ||
| 11 | |||
| 12 | If you like this simple PCB and want to make a donation, you can do so at [paypal.me/theboardpodcast](https://paypal.me/theboardpodcast). | ||
| 13 | |||
| 14 | - [The Board Podcast on YouTube](https://www.youtube.com/channel/UCg98oJZNffR9nDLJNkorjqw) | ||
| 15 | - [The Board Podcast on Libsyn](http://theboard.libsyn.com/) | ||
| 16 | - [The Board Podcast on Patreon](https://www.patreon.com/theboardpodcast) | ||
| 17 | |||
| 18 | Designed by Didier Luximon. | ||
| 19 | |||
| 20 | Keyboard Maintainer: [flehrad](https://github.com/flehrad) | ||
| 21 | Hardware Supported: Tradestation PCB, Pro Micro | ||
| 22 | |||
| 23 | Make example for this keyboard (after setting up your build environment): | ||
| 24 | |||
| 25 | make tradestation:default | ||
| 26 | |||
| 27 | 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/tradestation/rules.mk b/keyboards/handwired/tradestation/rules.mk deleted file mode 100644 index d3612c3c2..000000000 --- a/keyboards/handwired/tradestation/rules.mk +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | # Teensy halfkay | ||
| 6 | # Pro Micro caterina | ||
| 7 | # Atmel DFU atmel-dfu | ||
| 8 | # LUFA DFU lufa-dfu | ||
| 9 | # QMK DFU qmk-dfu | ||
| 10 | # ATmega32A bootloadHID | ||
| 11 | # ATmega328P USBasp | ||
| 12 | BOOTLOADER = caterina | ||
| 13 | |||
| 14 | # Build Options | ||
| 15 | # comment out to disable the options. | ||
| 16 | # | ||
| 17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | ||
| 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | ||
| 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | ||
| 20 | CONSOLE_ENABLE = no # Console for debug(+400) | ||
| 21 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 25 | AUDIO_ENABLE = no | ||
| 26 | RGBLIGHT_ENABLE = no | ||
| 27 | |||
| 28 | LAYOUTS = ortho_4x4 | ||
diff --git a/keyboards/handwired/tradestation/tradestation.c b/keyboards/handwired/tradestation/tradestation.c deleted file mode 100644 index a3285a2cc..000000000 --- a/keyboards/handwired/tradestation/tradestation.c +++ /dev/null | |||
| @@ -1 +0,0 @@ | |||
| 1 | #include "tradestation.h" | ||
diff --git a/keyboards/handwired/tradestation/tradestation.h b/keyboards/handwired/tradestation/tradestation.h deleted file mode 100644 index 60b53b7dd..000000000 --- a/keyboards/handwired/tradestation/tradestation.h +++ /dev/null | |||
| @@ -1,27 +0,0 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "quantum.h" | ||
| 4 | |||
| 5 | #define LAYOUT_ortho_4x4( \ | ||
| 6 | K00, K01, K02, K03, \ | ||
| 7 | K10, K11, K12, K13, \ | ||
| 8 | K20, K21, K22, K23, \ | ||
| 9 | K30, K31, K32, K33 \ | ||
| 10 | ) { \ | ||
| 11 | { K00, K01, K02, K03 }, \ | ||
| 12 | { K10, K11, K12, K13 }, \ | ||
| 13 | { K20, K21, K22, K23 }, \ | ||
| 14 | { K30, K31, K32, K33 } \ | ||
| 15 | } | ||
| 16 | |||
| 17 | #define LAYOUT_tradestation( \ | ||
| 18 | K00, K01, K02, K03, \ | ||
| 19 | K10, K11, K12, K13, \ | ||
| 20 | K20, K22, \ | ||
| 21 | K30, K32 \ | ||
| 22 | ) { \ | ||
| 23 | { K00, K01, K02, K03 }, \ | ||
| 24 | { K10, K11, K12, K13 }, \ | ||
| 25 | { K20, KC_NO, K22, KC_NO }, \ | ||
| 26 | { K30, KC_NO, K32, KC_NO } \ | ||
| 27 | } | ||
