diff options
Diffstat (limited to 'keyboards/handwired/stream_cheap/2x3')
-rw-r--r-- | keyboards/handwired/stream_cheap/2x3/2x3.c | 1 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x3/2x3.h | 11 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x3/config.h | 20 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x3/info.json | 23 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x3/keymaps/default/keymap.c | 21 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x3/readme.md | 3 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x3/rules.mk | 20 |
7 files changed, 0 insertions, 99 deletions
diff --git a/keyboards/handwired/stream_cheap/2x3/2x3.c b/keyboards/handwired/stream_cheap/2x3/2x3.c deleted file mode 100644 index 6889747873..0000000000 --- a/keyboards/handwired/stream_cheap/2x3/2x3.c +++ /dev/null @@ -1 +0,0 @@ -#include "2x3.h" diff --git a/keyboards/handwired/stream_cheap/2x3/2x3.h b/keyboards/handwired/stream_cheap/2x3/2x3.h deleted file mode 100644 index 12e9a46096..0000000000 --- a/keyboards/handwired/stream_cheap/2x3/2x3.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -#include "quantum.h" - -#define LAYOUT_ortho_2x3( \ - K00, K01, K02, \ - K03, K04, K05 \ -) { \ - { K00, K01, K02}, \ - { K03, K04, K05} \ -} diff --git a/keyboards/handwired/stream_cheap/2x3/config.h b/keyboards/handwired/stream_cheap/2x3/config.h deleted file mode 100644 index 8ae6ffb988..0000000000 --- a/keyboards/handwired/stream_cheap/2x3/config.h +++ /dev/null @@ -1,20 +0,0 @@ -#pragma once - -#include "config_common.h" - -/* key matrix size */ -#define MATRIX_ROWS 2 -#define MATRIX_COLS 3 - -/* define direct pins used */ -#define DIRECT_PINS { { D1,C6,B4}, { D0,D4,D7} } - - -/* Set 0 if debouncing isn't needed */ -#define DEBOUNCE 5 - -/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ -#define LOCKING_SUPPORT_ENABLE - -/* Locking resynchronize hack */ -#define LOCKING_RESYNC_ENABLE diff --git a/keyboards/handwired/stream_cheap/2x3/info.json b/keyboards/handwired/stream_cheap/2x3/info.json deleted file mode 100644 index c16c853804..0000000000 --- a/keyboards/handwired/stream_cheap/2x3/info.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "keyboard_name": "2x3", - "manufacturer": "Stream Cheap", - "url": "https://www.thingiverse.com/thing:4497991", - "maintainer": "qmk", - "usb": { - "vid": "0x7363", - "pid": "0x1213", - "device_version": "0.0.1" - }, - "layouts": { - "LAYOUT_ortho_2x3": { - "layout": [ - {"label":"K00", "x":0, "y":0}, - {"label":"K01", "x":1, "y":0}, - {"label":"K02", "x":2, "y":0}, - {"label":"K03", "x":0, "y":1}, - {"label":"K04", "x":1, "y":1}, - {"label":"K05", "x":2, "y":1} - ] - } - } -} diff --git a/keyboards/handwired/stream_cheap/2x3/keymaps/default/keymap.c b/keyboards/handwired/stream_cheap/2x3/keymaps/default/keymap.c deleted file mode 100644 index 5ef589f6a3..0000000000 --- a/keyboards/handwired/stream_cheap/2x3/keymaps/default/keymap.c +++ /dev/null @@ -1,21 +0,0 @@ -#include QMK_KEYBOARD_H - -enum layers { - NORMAL_LAYER = 0, - SECOND_LAYER -}; - - - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - - [NORMAL_LAYER] = LAYOUT_ortho_2x3( - KC_1, KC_2, KC_3, - KC_4, KC_5, TO(1) - ), - [SECOND_LAYER] = LAYOUT_ortho_2x3( - KC_A, KC_B, KC_C, - KC_D, KC_E, TO(0) - ) -}; - diff --git a/keyboards/handwired/stream_cheap/2x3/readme.md b/keyboards/handwired/stream_cheap/2x3/readme.md deleted file mode 100644 index 69ce022f6d..0000000000 --- a/keyboards/handwired/stream_cheap/2x3/readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Stream Cheap - -An ortholinear macropad, 2x3 configuration. diff --git a/keyboards/handwired/stream_cheap/2x3/rules.mk b/keyboards/handwired/stream_cheap/2x3/rules.mk deleted file mode 100644 index 6ed1b0e6f0..0000000000 --- a/keyboards/handwired/stream_cheap/2x3/rules.mk +++ /dev/null @@ -1,20 +0,0 @@ -# MCU name -MCU = atmega32u4 - -# Bootloader selection -BOOTLOADER = caterina - -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite -MOUSEKEY_ENABLE = yes # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = yes # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output - -LAYOUTS = ortho_2x3 |