summaryrefslogtreecommitdiff
path: root/keyboards/lefty
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/lefty')
-rw-r--r--keyboards/lefty/config.h23
-rw-r--r--keyboards/lefty/info.json58
-rw-r--r--keyboards/lefty/keymaps/default/keymap.c65
-rw-r--r--keyboards/lefty/keymaps/via/keymap.c65
-rw-r--r--keyboards/lefty/keymaps/via/rules.mk1
-rw-r--r--keyboards/lefty/lefty.c47
-rw-r--r--keyboards/lefty/readme.md27
-rw-r--r--keyboards/lefty/rev1/info.json7
-rw-r--r--keyboards/lefty/rev1/rules.mk0
-rw-r--r--keyboards/lefty/rev2/info.json7
-rw-r--r--keyboards/lefty/rev2/rules.mk0
-rw-r--r--keyboards/lefty/rules.mk17
12 files changed, 0 insertions, 317 deletions
diff --git a/keyboards/lefty/config.h b/keyboards/lefty/config.h
deleted file mode 100644
index b1432e4d87..0000000000
--- a/keyboards/lefty/config.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Copyright 2021 Smoll Chungus (@smollchungus)
-*
-* This program is free software: you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation, either version 2 of the License, or
-* (at your option) any later version.
-*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-* GNU General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License
-* along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#pragma once
-
-/* 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/lefty/info.json b/keyboards/lefty/info.json
deleted file mode 100644
index c7113e4c26..0000000000
--- a/keyboards/lefty/info.json
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- "keyboard_name": "Lefty",
- "manufacturer": "SmollChungus",
- "url": "https://github.com/smollchungus",
- "maintainer": "smollchungus",
- "usb": {
- "vid": "0x5363",
- "pid": "0x0001",
- "device_version": "0.0.1"
- },
- "processor": "atmega32u4",
- "bootloader": "atmel-dfu",
- "layout_aliases": {
- "LAYOUT_all": "LAYOUT"
- },
- "layouts": {
- "LAYOUT": {
- "layout": [
- {"label": "\u2191", "matrix": [0, 0], "x": 0.5, "y": 0},
- {"label": "Esc", "matrix": [0, 1], "x": 2, "y": 0},
- {"label": "1", "matrix": [0, 2], "x": 3, "y": 0},
- {"label": "2", "matrix": [0, 3], "x": 4, "y": 0},
- {"label": "3", "matrix": [0, 4], "x": 5, "y": 0},
- {"label": "4", "matrix": [0, 5], "x": 6, "y": 0},
- {"label": "5", "matrix": [0, 6], "x": 7, "y": 0},
- {"label": "6", "matrix": [0, 7], "x": 8, "y": 0},
-
- {"label": "\u2193", "matrix": [1, 0], "x": 0.25, "y": 1},
- {"label": "Tab", "matrix": [1, 1], "x": 1.75, "y": 1, "w": 1.5},
- {"label": "Q", "matrix": [1, 2], "x": 3.25, "y": 1},
- {"label": "W", "matrix": [1, 3], "x": 4.25, "y": 1},
- {"label": "E", "matrix": [1, 4], "x": 5.25, "y": 1},
- {"label": "R", "matrix": [1, 5], "x": 6.25, "y": 1},
- {"label": "T", "matrix": [1, 6], "x": 7.25, "y": 1},
-
- {"label": "\u2192", "matrix": [2, 0], "x": 0, "y": 2},
- {"label": "Fn", "matrix": [2, 1], "x": 1.5, "y": 2, "w": 1.75},
- {"label": "A", "matrix": [2, 2], "x": 3.25, "y": 2},
- {"label": "S", "matrix": [2, 3], "x": 4.25, "y": 2},
- {"label": "D", "matrix": [2, 4], "x": 5.25, "y": 2},
- {"label": "F", "matrix": [2, 5], "x": 6.25, "y": 2},
- {"label": "G", "matrix": [2, 6], "x": 7.25, "y": 2},
-
- {"label": "Shift", "matrix": [3, 1], "x": 1.25, "y": 3, "w": 2.25},
- {"label": "Z", "matrix": [3, 2], "x": 3.5, "y": 3},
- {"label": "X", "matrix": [3, 3], "x": 4.5, "y": 3},
- {"label": "C", "matrix": [3, 4], "x": 5.5, "y": 3},
- {"label": "V", "matrix": [3, 5], "x": 6.5, "y": 3},
- {"label": "B", "matrix": [3, 6], "x": 7.5, "y": 3},
-
- {"label": "Ctrl", "matrix": [4, 1], "x": 1.25, "y": 4, "w": 1.25},
- {"label": "Alt", "matrix": [4, 3], "x": 4.5, "y": 4, "w": 1.25},
- {"label": "Fn2", "matrix": [4, 4], "x": 5.75, "y": 4, "w": 2},
- {"label": "Fn3", "matrix": [4, 6], "x": 7.75, "y": 4, "w": 1.25}
- ]
- }
- }
-}
diff --git a/keyboards/lefty/keymaps/default/keymap.c b/keyboards/lefty/keymaps/default/keymap.c
deleted file mode 100644
index e88edb63a5..0000000000
--- a/keyboards/lefty/keymaps/default/keymap.c
+++ /dev/null
@@ -1,65 +0,0 @@
-/* Copyright 2021 Smoll Chungus (@smollchungus)
-*
-* This program is free software: you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation, either version 2 of the License, or
-* (at your option) any later version.
-*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-* GNU General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License
-* along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#include QMK_KEYBOARD_H
-
-enum layers {
- _QWERTY,
- _LOWER,
- _RAISE,
- _SPECIAL,
-};
-
-#define LOWER MO(_LOWER)
-#define RAISE MO(_RAISE)
-#define SPECIAL MO(_SPECIAL)
-
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
- [_QWERTY] = LAYOUT(
- KC_UP, KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6,
- KC_DOWN, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T,
- KC_RGHT, LOWER, KC_A, KC_S, KC_D, KC_F, KC_G,
- KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B,
- KC_LCTL, KC_LALT, RAISE, SPECIAL
- ),
-
- [_LOWER] = LAYOUT(
- _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______
- ),
-
- [_RAISE] = LAYOUT(
- _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______
- ),
-
- [_SPECIAL] = LAYOUT(
- _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______
- )
-
-};
diff --git a/keyboards/lefty/keymaps/via/keymap.c b/keyboards/lefty/keymaps/via/keymap.c
deleted file mode 100644
index e88edb63a5..0000000000
--- a/keyboards/lefty/keymaps/via/keymap.c
+++ /dev/null
@@ -1,65 +0,0 @@
-/* Copyright 2021 Smoll Chungus (@smollchungus)
-*
-* This program is free software: you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation, either version 2 of the License, or
-* (at your option) any later version.
-*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-* GNU General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License
-* along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#include QMK_KEYBOARD_H
-
-enum layers {
- _QWERTY,
- _LOWER,
- _RAISE,
- _SPECIAL,
-};
-
-#define LOWER MO(_LOWER)
-#define RAISE MO(_RAISE)
-#define SPECIAL MO(_SPECIAL)
-
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
- [_QWERTY] = LAYOUT(
- KC_UP, KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6,
- KC_DOWN, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T,
- KC_RGHT, LOWER, KC_A, KC_S, KC_D, KC_F, KC_G,
- KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B,
- KC_LCTL, KC_LALT, RAISE, SPECIAL
- ),
-
- [_LOWER] = LAYOUT(
- _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______
- ),
-
- [_RAISE] = LAYOUT(
- _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______
- ),
-
- [_SPECIAL] = LAYOUT(
- _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______
- )
-
-};
diff --git a/keyboards/lefty/keymaps/via/rules.mk b/keyboards/lefty/keymaps/via/rules.mk
deleted file mode 100644
index 1e5b99807c..0000000000
--- a/keyboards/lefty/keymaps/via/rules.mk
+++ /dev/null
@@ -1 +0,0 @@
-VIA_ENABLE = yes
diff --git a/keyboards/lefty/lefty.c b/keyboards/lefty/lefty.c
deleted file mode 100644
index b1bea424b0..0000000000
--- a/keyboards/lefty/lefty.c
+++ /dev/null
@@ -1,47 +0,0 @@
-/* Copyright 2021 Smoll Chungus (@smollchungus)
-*
-* This program is free software: you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation, either version 2 of the License, or
-* (at your option) any later version.
-*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-* GNU General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License
-* along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#include "quantum.h"
-
-#ifdef OLED_ENABLE
-bool oled_task_kb(void) {
- if (!oled_task_user()) {
- return false;
- }
- // Host Keyboard Layer Status
- oled_write_P(PSTR("Layer: "), false);
-
- switch (get_highest_layer(layer_state)) {
- case 0:
- oled_write_P(PSTR("Default\n"), false);
- break;
- case 1:
- oled_write_P(PSTR("LOWER\n"), false);
- break;
- case 2:
- oled_write_P(PSTR("RAISE\n"), false);
- break;
- case 3:
- oled_write_P(PSTR("SPECIAL\n"), false);
- break;
- default:
- // Or use the write_ln shortcut over adding '\n' to the end of your string
- oled_write_ln_P(PSTR("Undefined"), false);
- }
-
- return true;
-}
-#endif
diff --git a/keyboards/lefty/readme.md b/keyboards/lefty/readme.md
deleted file mode 100644
index 7562517a22..0000000000
--- a/keyboards/lefty/readme.md
+++ /dev/null
@@ -1,27 +0,0 @@
-# lefty
-
-![lefty](https://i.imgur.com/nMmJCJMh.jpeg)
-
-Half an alice used as a macropad.
-
-* Keyboard Maintainer: [SmollChungus](https://github.com/smollchungus/)
-
-* Hardware Supported: Lefty PCB rev1 and rev2
-
-Make example for this keyboard (after setting up your build environment):
-
- make lefty:default
-
-Flashing example for this keyboard:
-
- make lefty:default:flash
-
-See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information.
-Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
-
-# Bootloader
-Enter the bootloader in 3 ways:
-
-Bootmagic reset: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
-Physical reset button: Briefly press the button on the back of the PCB - some may have pads you must short instead
-Keycode in layout: Press the key mapped to `QK_BOOT` if it is available
diff --git a/keyboards/lefty/rev1/info.json b/keyboards/lefty/rev1/info.json
deleted file mode 100644
index 0a3e44c86f..0000000000
--- a/keyboards/lefty/rev1/info.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "matrix_pins": {
- "cols": ["D4", "B5", "F5", "F6", "F7", "B1", "B3", "F4"],
- "rows": ["F0", "F1", "C7", "D5", "B7"]
- },
- "diode_direction": "COL2ROW"
-}
diff --git a/keyboards/lefty/rev1/rules.mk b/keyboards/lefty/rev1/rules.mk
deleted file mode 100644
index e69de29bb2..0000000000
--- a/keyboards/lefty/rev1/rules.mk
+++ /dev/null
diff --git a/keyboards/lefty/rev2/info.json b/keyboards/lefty/rev2/info.json
deleted file mode 100644
index 9b8578c0db..0000000000
--- a/keyboards/lefty/rev2/info.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "matrix_pins": {
- "cols": ["D4", "B5", "F5", "F6", "F7", "B1", "B3", "F4"],
- "rows": ["B2", "B6", "D7", "E6", "B4"]
- },
- "diode_direction": "COL2ROW"
-}
diff --git a/keyboards/lefty/rev2/rules.mk b/keyboards/lefty/rev2/rules.mk
deleted file mode 100644
index e69de29bb2..0000000000
--- a/keyboards/lefty/rev2/rules.mk
+++ /dev/null
diff --git a/keyboards/lefty/rules.mk b/keyboards/lefty/rules.mk
deleted file mode 100644
index bbf738e03b..0000000000
--- a/keyboards/lefty/rules.mk
+++ /dev/null
@@ -1,17 +0,0 @@
-# Build Options
-# change yes to no to disable
-#
-BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
-MOUSEKEY_ENABLE = no # Mouse keys
-EXTRAKEY_ENABLE = yes # Audio control and System control
-CONSOLE_ENABLE = no # Console for debug
-COMMAND_ENABLE = no # Commands for debug and configuration
-NKRO_ENABLE = no # Enable N-Key Rollover
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
-AUDIO_ENABLE = no # Audio output
-LTO_ENABLE = yes
-
-OLED_ENABLE = yes
-
-DEFAULT_FOLDER = lefty/rev2