42 keys layout atm
This commit is contained in:
parent
fb36554614
commit
be26af998e
|
@ -1,6 +1,6 @@
|
||||||
# Christoph Cullmann's Layout
|
# Christoph Cullmann's Layout
|
||||||
|
|
||||||
Layout with 34 keys, using Dhorf as base layer:
|
Layout with 42 keys, using Dhorf as base layer:
|
||||||
|
|
||||||
dhorf (Oxey)
|
dhorf (Oxey)
|
||||||
v l h k q j f o u ,
|
v l h k q j f o u ,
|
||||||
|
|
|
@ -37,11 +37,6 @@
|
||||||
// settings for home row modifiers
|
// settings for home row modifiers
|
||||||
// details see https://precondition.github.io/home-row-mods
|
// details see https://precondition.github.io/home-row-mods
|
||||||
|
|
||||||
// the default is 200
|
|
||||||
#define TAPPING_TERM 170
|
|
||||||
#define TAPPING_TERM_SLOW 220
|
|
||||||
#define TAPPING_TERM_PER_KEY
|
|
||||||
|
|
||||||
// detect typing streaks
|
// detect typing streaks
|
||||||
#define ACHORDION_STREAK
|
#define ACHORDION_STREAK
|
||||||
|
|
||||||
|
|
|
@ -65,22 +65,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
|
||||||
#include "achordion.h"
|
#include "achordion.h"
|
||||||
|
|
||||||
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t* record) {
|
|
||||||
switch (keycode) {
|
|
||||||
// Increase the tapping term a little for alt/algr/win.
|
|
||||||
case RALT_T(KC_C):
|
|
||||||
case LALT_T(KC_R):
|
|
||||||
case LGUI_T(KC_D):
|
|
||||||
case RGUI_T(KC_H):
|
|
||||||
case LALT_T(KC_I):
|
|
||||||
case RALT_T(KC_A):
|
|
||||||
return TAPPING_TERM_SLOW;
|
|
||||||
|
|
||||||
default:
|
|
||||||
return TAPPING_TERM;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t* record) {
|
bool process_record_user(uint16_t keycode, keyrecord_t* record) {
|
||||||
if (!process_achordion(keycode, record)) { return false; }
|
if (!process_achordion(keycode, record)) { return false; }
|
||||||
return true;
|
return true;
|
||||||
|
@ -94,11 +78,7 @@ bool achordion_chord(uint16_t tap_hold_keycode,
|
||||||
keyrecord_t* tap_hold_record,
|
keyrecord_t* tap_hold_record,
|
||||||
uint16_t other_keycode,
|
uint16_t other_keycode,
|
||||||
keyrecord_t* other_record) {
|
keyrecord_t* other_record) {
|
||||||
// allow that bottom row has no delay
|
// follow the opposite hands rule.
|
||||||
if (tap_hold_record->event.key.row % (MATRIX_ROWS / 2) >= 3) { return true; }
|
|
||||||
if (other_record->event.key.row % (MATRIX_ROWS / 2) >= 3) { return true; }
|
|
||||||
|
|
||||||
// Otherwise, follow the opposite hands rule.
|
|
||||||
return on_left_hand(tap_hold_record->event.key) !=
|
return on_left_hand(tap_hold_record->event.key) !=
|
||||||
on_left_hand(other_record->event.key);
|
on_left_hand(other_record->event.key);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
/* Copyright 2022 Christoph Cullmann
|
|
||||||
*
|
|
||||||
* 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
|
|
||||||
|
|
||||||
// our shared config parts
|
|
||||||
#include "/home/cullmann/data/qmk/christoph-cullmann/common/config.h"
|
|
|
@ -1,26 +0,0 @@
|
||||||
/* Copyright 2022 Christoph Cullmann
|
|
||||||
*
|
|
||||||
* 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
|
|
||||||
|
|
||||||
// Returns true if `pos` on the left hand of the keyboard, false if right.
|
|
||||||
static bool on_left_hand(keypos_t pos) {
|
|
||||||
// works not really on planck for bottom row, but we handle that differently
|
|
||||||
return pos.row < MATRIX_ROWS / 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
// our shared 34 keys keymap
|
|
||||||
#include "../common/keymap.h"
|
|
|
@ -1,6 +0,0 @@
|
||||||
# include common settings
|
|
||||||
include /home/cullmann/data/qmk/christoph-cullmann/common/rules.mk
|
|
||||||
|
|
||||||
# build
|
|
||||||
# qmk compile -kb ferris/sweep -km christoph-cullmann
|
|
||||||
# qmk flash -kb ferris/sweep -km christoph-cullmann
|
|
|
@ -17,9 +17,9 @@
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
// Returns true if `pos` on the left hand of the keyboard, false if right.
|
// Returns true if `pos` on the left hand of the keyboard, false if right.
|
||||||
static bool on_left_hand(keypos_t pos) {
|
static bool on_left_hand(keypos_t pos)
|
||||||
// works not really on planck for bottom row, but we handle that differently
|
{
|
||||||
return pos.row < MATRIX_ROWS / 2;
|
return (pos.row < 3) || (pos.row == 3 && pos.col < 3) || (pos.row == 7 && pos.col > 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// layout helper macro, we just use 42 keys
|
// layout helper macro, we just use 42 keys
|
||||||
|
|
Loading…
Reference in a new issue