diff options
Diffstat (limited to 'keyboards/handwired/stream_cheap/2x5')
-rw-r--r-- | keyboards/handwired/stream_cheap/2x5/2x5.c | 1 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x5/2x5.h | 11 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x5/config.h | 19 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x5/info.json | 27 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x5/keymaps/default/keymap.c | 60 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x5/readme.md | 3 | ||||
-rw-r--r-- | keyboards/handwired/stream_cheap/2x5/rules.mk | 18 |
7 files changed, 0 insertions, 139 deletions
diff --git a/keyboards/handwired/stream_cheap/2x5/2x5.c b/keyboards/handwired/stream_cheap/2x5/2x5.c deleted file mode 100644 index 70969a316a..0000000000 --- a/keyboards/handwired/stream_cheap/2x5/2x5.c +++ /dev/null @@ -1 +0,0 @@ -#include "2x5.h" diff --git a/keyboards/handwired/stream_cheap/2x5/2x5.h b/keyboards/handwired/stream_cheap/2x5/2x5.h deleted file mode 100644 index f01c8302a2..0000000000 --- a/keyboards/handwired/stream_cheap/2x5/2x5.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -#include "quantum.h" - -#define LAYOUT_ortho_2x5( \ - K00, K01, K02, K03, K04, \ - K10, K11, K12, K13, K14 \ -) { \ - { K00, K01, K02, K03, K04 }, \ - { K10, K11, K12, K13, K14 } \ -} diff --git a/keyboards/handwired/stream_cheap/2x5/config.h b/keyboards/handwired/stream_cheap/2x5/config.h deleted file mode 100644 index 45694ed822..0000000000 --- a/keyboards/handwired/stream_cheap/2x5/config.h +++ /dev/null @@ -1,19 +0,0 @@ -#pragma once - -#include "config_common.h" - -/* key matrix size */ -#define MATRIX_ROWS 2 -#define MATRIX_COLS 5 - -/* define direct pins used */ -#define DIRECT_PINS { { D1,C6,B4,B5,B2}, { D0,D4,D7,E6,B6} } - -/* 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/2x5/info.json b/keyboards/handwired/stream_cheap/2x5/info.json deleted file mode 100644 index 57088d112b..0000000000 --- a/keyboards/handwired/stream_cheap/2x5/info.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "keyboard_name": "2x5", - "manufacturer": "Stream Cheap", - "url": "https://www.thingiverse.com/thing:4497991", - "maintainer": "qmk", - "usb": { - "vid": "0x7363", - "pid": "0x1215", - "device_version": "0.0.1" - }, - "layouts": { - "LAYOUT_ortho_2x5": { - "layout": [ - {"label":"K00", "x":0, "y":0}, - {"label":"K01", "x":1, "y":0}, - {"label":"K02", "x":2, "y":0}, - {"label":"K03", "x":3, "y":0}, - {"label":"K04", "x":4, "y":0}, - {"label":"K10", "x":0, "y":1}, - {"label":"K11", "x":1, "y":1}, - {"label":"K12", "x":2, "y":1}, - {"label":"K13", "x":3, "y":1}, - {"label":"K14", "x":4, "y":1} - ] - } - } -} diff --git a/keyboards/handwired/stream_cheap/2x5/keymaps/default/keymap.c b/keyboards/handwired/stream_cheap/2x5/keymaps/default/keymap.c deleted file mode 100644 index 6d140a8780..0000000000 --- a/keyboards/handwired/stream_cheap/2x5/keymaps/default/keymap.c +++ /dev/null @@ -1,60 +0,0 @@ -#include QMK_KEYBOARD_H - - -enum custom_keycode { - VS_COMMENT = SAFE_RANGE, - VS_UNCOMMENT, - TST_STRING -}; - - -bool process_record_user(uint16_t keycode, keyrecord_t *record) { - switch (keycode) { - case VS_COMMENT: - if (record->event.pressed) { - SEND_STRING(SS_LCTL("kc")); - } - break; - case VS_UNCOMMENT: - if (record->event.pressed) { - SEND_STRING(SS_LCTL("ku")); - } - break; - case TST_STRING: - if (record->event.pressed) { - SEND_STRING("12345\n"); - } - break; - - } - return true; -} - -#define LOCK LGUI(KC_L) -#define CUT LCTL(KC_X) -#define COPY LCTL(KC_C) -#define PASTE LCTL(KC_V) -#define FIND LCTL(KC_F) - -enum layers { - NORMAL_LAYER = 0, - SECOND_LAYER - // , - // THIRD_LAYER -}; - -const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - [NORMAL_LAYER] = LAYOUT_ortho_2x5( - VS_COMMENT, VS_UNCOMMENT, LOCK, TST_STRING, KC_F5, - KC_F9, KC_F10, KC_F11, KC_F12, TO(1) - ), - [SECOND_LAYER] = LAYOUT_ortho_2x5( - KC_MUTE, KC_VOLD, KC_VOLU, KC_MPLY, KC_MSTP, - CUT, COPY, PASTE, FIND, TO(0) - ) - // , - // [THIRD_LAYER] = LAYOUT_ortho_2x5( - // KC_Q, KC_W, KC_E, KC_R, KC_T, - // KC_Y, KC_U, KC_L, KC_P, TO(0) - // ) -}; diff --git a/keyboards/handwired/stream_cheap/2x5/readme.md b/keyboards/handwired/stream_cheap/2x5/readme.md deleted file mode 100644 index 99aab61e4b..0000000000 --- a/keyboards/handwired/stream_cheap/2x5/readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Stream Cheap - -An ortholinear macropad, 2x5 configuration. diff --git a/keyboards/handwired/stream_cheap/2x5/rules.mk b/keyboards/handwired/stream_cheap/2x5/rules.mk deleted file mode 100644 index 7dae3a8423..0000000000 --- a/keyboards/handwired/stream_cheap/2x5/rules.mk +++ /dev/null @@ -1,18 +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 |