summaryrefslogtreecommitdiffstats
path: root/keyboards/ogre/ergo_single
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/ogre/ergo_single')
-rw-r--r--keyboards/ogre/ergo_single/.noci0
-rw-r--r--keyboards/ogre/ergo_single/config.h37
-rw-r--r--keyboards/ogre/ergo_single/ergo_single.c17
-rw-r--r--keyboards/ogre/ergo_single/ergo_single.h39
-rw-r--r--keyboards/ogre/ergo_single/info.json98
-rw-r--r--keyboards/ogre/ergo_single/keymaps/default/keymap.c41
-rw-r--r--keyboards/ogre/ergo_single/keymaps/default/readme.md1
-rw-r--r--keyboards/ogre/ergo_single/readme.md15
-rw-r--r--keyboards/ogre/ergo_single/rules.mk19
9 files changed, 0 insertions, 267 deletions
diff --git a/keyboards/ogre/ergo_single/.noci b/keyboards/ogre/ergo_single/.noci
deleted file mode 100644
index e69de29bb2..0000000000
--- a/keyboards/ogre/ergo_single/.noci
+++ /dev/null
diff --git a/keyboards/ogre/ergo_single/config.h b/keyboards/ogre/ergo_single/config.h
deleted file mode 100644
index 788ace6f5c..0000000000
--- a/keyboards/ogre/ergo_single/config.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
-Copyright 2020 ctrlshiftba
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#pragma once
-
-#include "config_common.h"
-
-/* key matrix size */
-#define MATRIX_ROWS 10
-#define MATRIX_COLS 7
-
-/* Keyboard Matrix Assignments */
-#define MATRIX_ROW_PINS { D3, D2, D1, D0, D4, C6, D7, E6, B4, B5 }
-#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2 }
-
-/* COL2ROW, ROW2COL*/
-#define DIODE_DIRECTION COL2ROW
-
-#define RGB_DI_PIN B6
-#define RGBLED_NUM 14
-#define RGBLIGHT_LED_MAP { 0, 1, 2, 3, 4, 5, 6, 13, 12,11, 10, 9, 8, 7}
-#define RGBLIGHT_ANIMATIONS
-#define DEBOUNCE 5
diff --git a/keyboards/ogre/ergo_single/ergo_single.c b/keyboards/ogre/ergo_single/ergo_single.c
deleted file mode 100644
index b48b0a02e2..0000000000
--- a/keyboards/ogre/ergo_single/ergo_single.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* Copyright 2020 ctrlshiftba
- *
- * 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 "ergo_single.h"
diff --git a/keyboards/ogre/ergo_single/ergo_single.h b/keyboards/ogre/ergo_single/ergo_single.h
deleted file mode 100644
index f8f9ddf65f..0000000000
--- a/keyboards/ogre/ergo_single/ergo_single.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/* Copyright 2020 ctrlshiftba
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#pragma once
-
-#include "quantum.h"
-
-#define LAYOUT( \
- k63, k00, k10, k20, k30, k40, k50, k60, k65, k55, k45, k35, k25, k15, k05, k68, \
- k01, k11, k21, k31, k41, k51, k61, k66, k56, k46, k36, k26, k16, k06, \
- k02, k12, k22, k32, k42, k52, k62, k67, k57, k47, k37, k27, k17, k07, \
- k03, k13, k23, k33, k43, k53, k58, k48, k38, k28, k18, k08, \
- k04, k14, k24, k34, k44, k54, k64, k69, k59, k49, k39, k29, k19, k09 \
-) \
-{ \
- { k00, k10, k20, k30, k40, k50, k60 }, \
- { k01, k11, k21, k31, k41, k51, k61 }, \
- { k02, k12, k22, k32, k42, k52, k62 }, \
- { k03, k13, k23, k33, k43, k53, k63 }, \
- { k04, k14, k24, k34, k44, k54, k64 }, \
- { k05, k15, k25, k35, k45, k55, k65 }, \
- { k06, k16, k26, k36, k46, k56, k66 }, \
- { k07, k17, k27, k37, k47, k57, k67 }, \
- { k08, k18, k28, k38, k48, k58, k68 }, \
- { k09, k19, k29, k39, k49, k59, k69 }, \
-}
diff --git a/keyboards/ogre/ergo_single/info.json b/keyboards/ogre/ergo_single/info.json
deleted file mode 100644
index fd446099f5..0000000000
--- a/keyboards/ogre/ergo_single/info.json
+++ /dev/null
@@ -1,98 +0,0 @@
-{
- "keyboard_name": "Ogre Ergo Single",
- "manufacturer": "ctrlshiftba",
- "url": "",
- "maintainer": "qmk",
- "usb": {
- "vid": "0xFEED",
- "pid": "0x0000",
- "device_version": "0.0.1"
- },
- "layouts": {
- "LAYOUT": {
- "layout": [
- {"x": 0.25, "y": 0.5},
- {"x": 1.25, "y": 0.5},
- {"x": 2.25, "y": 0.5},
- {"x": 3.25, "y": 0.25},
- {"x": 4.25, "y": 0},
- {"x": 5.25, "y": 0.25},
- {"x": 6.25, "y": 0.5},
- {"x": 7.25, "y": 0.5},
-
- {"x": 11.25, "y": 0.5},
- {"x": 12.25, "y": 0.5},
- {"x": 13.25, "y": 0.25},
- {"x": 14.25, "y": 0},
- {"x": 15.25, "y": 0.25},
- {"x": 16.25, "y": 0.5},
- {"x": 17.25, "y": 0.5},
- {"x": 18.25, "y": 0.5},
-
- {"x": 0.75, "y": 1.5, "w": 1.5},
- {"x": 2.25, "y": 1.5},
- {"x": 3.25, "y": 1.25},
- {"x": 4.25, "y": 1},
- {"x": 5.25, "y": 1.25},
- {"x": 6.25, "y": 1.5},
- {"x": 7.25, "y": 1.5},
-
- {"x": 11.25, "y": 1.5},
- {"x": 12.25, "y": 1.5},
- {"x": 13.25, "y": 1.25},
- {"x": 14.25, "y": 1},
- {"x": 15.25, "y": 1.25},
- {"x": 16.25, "y": 1.5},
- {"x": 17.25, "y": 1.5, "w": 1.5},
-
- {"x": 0.5, "y": 2.5, "w": 1.75},
- {"x": 2.25, "y": 2.5},
- {"x": 3.25, "y": 2.25},
- {"x": 4.25, "y": 2},
- {"x": 5.25, "y": 2.25},
- {"x": 6.25, "y": 2.5},
- {"x": 7.25, "y": 2.5},
-
- {"x": 11.25, "y": 2.5},
- {"x": 12.25, "y": 2.5},
- {"x": 13.25, "y": 2.25},
- {"x": 14.25, "y": 2},
- {"x": 15.25, "y": 2.25},
- {"x": 16.25, "y": 2.5},
- {"x": 17.25, "y": 2.5, "w": 1.75},
-
- {"x": 0, "y": 3.5, "w": 2.25},
- {"x": 2.25, "y": 3.5},
- {"x": 3.25, "y": 3.25},
- {"x": 4.25, "y": 3},
- {"x": 5.25, "y": 3.25},
- {"x": 6.25, "y": 3.5},
-
- {"x": 12.25, "y": 3.5},
- {"x": 13.25, "y": 3.25},
- {"x": 14.25, "y": 3},
- {"x": 15.25, "y": 3.25},
- {"x": 16.25, "y": 3.5},
- {"x": 17.25, "y": 3.5, "w": 2.25},
-
- {"x": 1, "y": 4.5, "w": 1.25},
- {"x": 2.25, "y": 4.5},
- {"x": 3.25, "y": 4.25},
- {"x": 4.25, "y": 4},
-
- {"x": 6.25, "y": 5.5, "w": 1.25},
- {"x": 7.5, "y": 3.75, "h": 2.75},
- {"x": 8.5, "y": 4.5, "h": 2},
-
- {"x": 10, "y": 5, "h": 1.5},
- {"x": 11, "y": 4.5, "h": 2},
- {"x": 12, "y": 5.5, "w": 1.25},
-
- {"x": 14.25, "y": 4},
- {"x": 15.25, "y": 4.25},
- {"x": 16.25, "y": 4.5},
- {"x": 17.25, "y": 4.5, "w": 1.25}
- ]
- }
- }
-}
diff --git a/keyboards/ogre/ergo_single/keymaps/default/keymap.c b/keyboards/ogre/ergo_single/keymaps/default/keymap.c
deleted file mode 100644
index 404ab79a8b..0000000000
--- a/keyboards/ogre/ergo_single/keymaps/default/keymap.c
+++ /dev/null
@@ -1,41 +0,0 @@
-/* Copyright 2020 ctrlshiftba
- *
- * 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
-
-#define TP_Z MT(MOD_LCTL, KC_Z)
-#define TP_X MT(MOD_LGUI, KC_X)
-#define TP_GR MT(MOD_LCTL, KC_GRV)
-#define TP_SPC LT(1, KC_SPC)
-#define TP_ENT LT(1, KC_ENT)
-#define TP_QUOT MT(MOD_RGUI, KC_QUOT)
-#define TP_RCTRL MT(MOD_RCTL, KC_RBRC)
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [0] = LAYOUT(
- KC_ESC, KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_GRV, KC_PGUP, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_DEL,
- KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_RBRC, KC_LBRC, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS,
- KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_PGDN, KC_QUOT, KC_H, KC_J, KC_K, KC_L, KC_SCLN, TP_QUOT,
- KC_LSFT, TP_Z, TP_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
- TP_GR, KC_LALT, KC_LEFT, KC_RGHT, TP_SPC, KC_SPC, KC_BSPC, KC_RALT, KC_ENT, TP_ENT, KC_DOWN, KC_UP, KC_LBRC, TP_RCTRL
- ),
- [1] = LAYOUT(
- QK_BOOT, _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_INS, KC_HOME, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,
- RGB_MOD, RGB_HUI, RGB_SAI, RGB_VAI, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- RGB_M_P, RGB_HUD, RGB_SAD, RGB_VAD, _______, _______, KC_END, _______, _______, _______, _______, _______, _______, _______,
- RGB_TOG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MENU, _______
- ),
-};
diff --git a/keyboards/ogre/ergo_single/keymaps/default/readme.md b/keyboards/ogre/ergo_single/keymaps/default/readme.md
deleted file mode 100644
index a63ad5baa2..0000000000
--- a/keyboards/ogre/ergo_single/keymaps/default/readme.md
+++ /dev/null
@@ -1 +0,0 @@
-# The default keymap for ergo_single
diff --git a/keyboards/ogre/ergo_single/readme.md b/keyboards/ogre/ergo_single/readme.md
deleted file mode 100644
index d39714a6f6..0000000000
--- a/keyboards/ogre/ergo_single/readme.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# ogre ergo
-## a keycap friendly ergo
-![ogre_ergo](https://i.imgur.com/27rF0jj.jpg)
-
-The ogre ergo is a ergodox inspired keyboard that is a keycap friendly ergo supporting a wide variety of keycap layout possiblities. Its can be built as either a split or single keyboard.
-
-* Keyboard Maintainer: [ctrlshiftba](https://github.com/ctrlshiftbryan)
-* Hardware Supported: the ogre ergo pcb
-* Hardware Availability: https://ctrlshiftba.com/
-
-Make example for this keyboard (after setting up your build environment):
-
- make ogre/ergo_single:default
-
-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/ogre/ergo_single/rules.mk b/keyboards/ogre/ergo_single/rules.mk
deleted file mode 100644
index 99f9befa53..0000000000
--- a/keyboards/ogre/ergo_single/rules.mk
+++ /dev/null
@@ -1,19 +0,0 @@
-# MCU name
-MCU = atmega32u4
-
-# Bootloader selection
-BOOTLOADER = caterina
-
-# Build Options
-# change yes to no to disable
-#
-BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
-MOUSEKEY_ENABLE = no # Mouse keys
-EXTRAKEY_ENABLE = no # 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 = yes # Enable keyboard RGB underglow
-AUDIO_ENABLE = no # Audio output
-SPLIT_KEYBOARD = no