Add tw1t611 ergodash keymap. (#8377) * Add tw1t611 ergodash keymap. * Fix keycodes. Change kc_rctl to kcb rsft. * Change block to enum layers. * Remove blackslahs. * Remove last slash. Align row. * Use new german keymap. * Fix typo. Co-authored-by: Daniel Schindler <client55@protonmail.com>
4 files changed, 64 insertions(+), 0 deletions(-) A keyboards/ergodash/rev1/keymaps/tw1t611/config.h A keyboards/ergodash/rev1/keymaps/tw1t611/keymap.c A keyboards/ergodash/rev1/keymaps/tw1t611/readme.md A keyboards/ergodash/rev1/keymaps/tw1t611/rules.mk
A keyboards/ergodash/rev1/keymaps/tw1t611/config.h => keyboards/ergodash/rev1/keymaps/tw1t611/config.h +33 -0
@@ 0,0 1,33 @@ /* This is the c configuration file for the keymap Copyright 2012 Jun Wako <wakojun@gmail.com> Copyright 2015 Jack Humbert 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 /* Use I2C or Serial, not both */ #define USE_SERIAL // #define USE_I2C /* Select hand configuration */ #define MASTER_LEFT // #define MASTER_RIGHT // #define EE_HANDS
A keyboards/ergodash/rev1/keymaps/tw1t611/keymap.c => keyboards/ergodash/rev1/keymaps/tw1t611/keymap.c +24 -0
@@ 0,0 1,24 @@ #include QMK_KEYBOARD_H #include "keymap_german.h" enum layers { _QWERTZ, _MOD, }; const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [_QWERTZ] = LAYOUT( _______ ,KC_1 ,KC_2 ,KC_3 ,KC_4 ,KC_5 ,_______ , KC_RSFT ,KC_6 ,KC_7 ,KC_8 ,KC_9 ,KC_0 ,_______ , KC_ESC ,KC_Q ,KC_W ,KC_E ,KC_R ,KC_T ,KC_BSPC , KC_DEL ,KC_Y ,KC_U ,KC_I ,KC_O ,KC_P ,DE_ADIA , KC_TAB ,KC_A ,KC_S ,KC_D ,KC_F ,KC_G ,DE_UNDS , KC_LALT ,KC_H ,KC_J ,KC_K ,KC_L ,DE_EQL ,DE_ODIA , _______ ,KC_Z ,KC_X ,KC_C ,KC_V ,KC_B ,KC_SPC , KC_ENT ,KC_N ,KC_M ,KC_COMM ,KC_DOT ,DE_SS ,DE_UDIA , _______ ,_______ ,_______ ,_______ , KC_LCTL ,KC_SPC ,KC_LSFT , MO(_MOD),KC_ENT ,KC_LGUI , _______ ,_______ ,_______ ,_______ ), [_MOD] = LAYOUT( KC_F11 ,KC_F1 ,KC_F2 ,KC_F3 ,KC_F4 ,KC_F5 ,RGB_MOD , RESET ,KC_F6 ,KC_F7 ,KC_F8 ,KC_F9 ,KC_F10 ,KC_F12 , DE_CIRC ,DE_QUOT ,DE_DQUO ,DE_LCBR ,DE_RCBR ,DE_GRV ,RGB_TOG , _______ ,DE_PERC ,DE_PLUS ,DE_MINS ,DE_ASTR ,DE_SLSH ,DE_BSLS , DE_TILD ,DE_EXLM ,DE_DLR ,DE_LPRN ,DE_RPRN ,DE_AMPR ,RGB_M_P , _______ ,KC_LEFT ,KC_DOWN ,KC_UP ,KC_RGHT ,DE_QUES ,DE_PIPE , _______ ,DE_AT ,DE_EURO ,DE_LBRC ,DE_RBRC ,_______ ,_______ , _______ ,DE_HASH ,DE_LABK ,DE_SCLN ,DE_COLN ,DE_RABK ,DE_SECT , _______ ,_______ ,_______ ,_______ , _______ ,_______ ,_______ , _______ ,_______ ,_______ , _______ ,_______ ,_______ ,_______ ), }; \ No newline at end of file
A keyboards/ergodash/rev1/keymaps/tw1t611/readme.md => keyboards/ergodash/rev1/keymaps/tw1t611/readme.md +4 -0
@@ 0,0 1,4 @@ # Tw1t611 Ergodash Layout This is a german layout for the ergodash keyboard. The Umlauts are placed on the right side. It uses two layers and has vim like aligned arrow keys.
A keyboards/ergodash/rev1/keymaps/tw1t611/rules.mk => keyboards/ergodash/rev1/keymaps/tw1t611/rules.mk +3 -0