[Keyboard] Adds ogre ergo split (#8011)
* Adds ogre ergo split * remove uneeded line breaks
This commit is contained in:
parent
212aeee202
commit
43d2a0e167
7 changed files with 198 additions and 0 deletions
52
keyboards/ogre/ergo_split/config.h
Normal file
52
keyboards/ogre/ergo_split/config.h
Normal file
|
@ -0,0 +1,52 @@
|
|||
/*
|
||||
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"
|
||||
|
||||
/* USB Device descriptor parameter */
|
||||
#define VENDOR_ID 0x1209
|
||||
#define PRODUCT_ID 0x095E
|
||||
#define DEVICE_VER 0x0001
|
||||
#define MANUFACTURER ctrlshiftba
|
||||
#define PRODUCT ergo_split
|
||||
#define DESCRIPTION a keycap friendly ergo. the split version
|
||||
|
||||
/* key matrix size */
|
||||
#define MATRIX_ROWS 10
|
||||
#define MATRIX_COLS 7
|
||||
|
||||
/* Keyboard Matrix Assignments */
|
||||
#define MATRIX_ROW_PINS { C6, D7, E6, B4, B5 }
|
||||
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, B3, B2 }
|
||||
|
||||
/* COL2ROW, ROW2COL*/
|
||||
#define DIODE_DIRECTION COL2ROW
|
||||
|
||||
/*
|
||||
* Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN.
|
||||
*/
|
||||
#define SOFT_SERIAL_PIN D3
|
||||
#define SPLIT_HAND_PIN D1
|
||||
|
||||
#define RGB_DI_PIN B6
|
||||
#define RGBLED_SPLIT { 7, 7 }
|
||||
#define RGBLED_NUM 14
|
||||
#define RGBLIGHT_LED_MAP { 6, 5, 4, 3, 2, 1, 0, 13, 12,11, 10, 9, 8, 7}
|
||||
#define RGBLIGHT_ANIMATIONS
|
||||
#define DEBOUNCE 5
|
17
keyboards/ogre/ergo_split/ergo_split.c
Normal file
17
keyboards/ogre/ergo_split/ergo_split.c
Normal file
|
@ -0,0 +1,17 @@
|
|||
/* 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_split.h"
|
39
keyboards/ogre/ergo_split/ergo_split.h
Normal file
39
keyboards/ogre/ergo_split/ergo_split.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/* 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 }, \
|
||||
}
|
41
keyboards/ogre/ergo_split/keymaps/default/keymap.c
Normal file
41
keyboards/ogre/ergo_split/keymaps/default/keymap.c
Normal file
|
@ -0,0 +1,41 @@
|
|||
/* 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(
|
||||
RESET, _______, 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, _______
|
||||
),
|
||||
};
|
1
keyboards/ogre/ergo_split/keymaps/default/readme.md
Normal file
1
keyboards/ogre/ergo_split/keymaps/default/readme.md
Normal file
|
@ -0,0 +1 @@
|
|||
# The default keymap for ergo_split
|
15
keyboards/ogre/ergo_split/readme.md
Normal file
15
keyboards/ogre/ergo_split/readme.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# ogre ergo (split)
|
||||
## a keycap friendly ergo
|
||||
![ogre_ergo_split](https://i.imgur.com/55luvRi.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_split: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).
|
33
keyboards/ogre/ergo_split/rules.mk
Normal file
33
keyboards/ogre/ergo_split/rules.mk
Normal file
|
@ -0,0 +1,33 @@
|
|||
# MCU name
|
||||
MCU = atmega32u4
|
||||
|
||||
# Bootloader selection
|
||||
# Teensy halfkay
|
||||
# Pro Micro caterina
|
||||
# Atmel DFU atmel-dfu
|
||||
# LUFA DFU lufa-dfu
|
||||
# QMK DFU qmk-dfu
|
||||
# ATmega32A bootloadHID
|
||||
# ATmega328P USBasp
|
||||
BOOTLOADER = caterina
|
||||
|
||||
# Build Options
|
||||
# change yes to no to disable
|
||||
#
|
||||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration
|
||||
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
|
||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||
NKRO_ENABLE = no # USB Nkey Rollover
|
||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
||||
MIDI_ENABLE = no # MIDI support
|
||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||
AUDIO_ENABLE = no # Audio output on port C6
|
||||
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
|
||||
HD44780_ENABLE = no # Enable support for HD44780 based LCDs
|
||||
SPLIT_KEYBOARD = yes
|
Loading…
Reference in a new issue