95782691d4
* Working on new dactyl * Preliminary build and keymap in place for 4x5_5 dactyl manuform * Removing first attempt to use 4x5 * Updating to match c style guide * Fixing issues after merge, deletion of dactyl_manuform.h * Spliting out custom keymap * Adding license headers * Fixing EE_HANDS detection on Pro-Micro The pro-micro was not working when I plugged into the elite-c on the right hand side of my keyboard. Adding the SPLIT_USB_DIRECT definition fixed the issue. * Apply suggestions from code review Adding Drashna's delete comments Co-authored-by: Drashna Jaelre <drashna@live.com> * Removed config.h for keymaps and tweaked keymap Per Drashna's pr review, I have removed the config.h files for the keymaps. Also tweaked my keymap to switch backspace and enter. Added tapping toggle for RAISE. * Further tweaking ssedrick keymap for dactyl_manuform 4x5_5 As with most new keyboards, they take some getting used to. I've rearranged my thumb cluster to hopfully a more long term solution. * Adding missing KC_BSLS to ssedrick keymap for 4x5_5 Co-authored-by: Drashna Jaelre <drashna@live.com>
30 lines
993 B
C
30 lines
993 B
C
// Copyright 2022 Shem Sedrick (@ssedrick)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "quantum.h"
|
|
|
|
#define XXX KC_NO
|
|
#define LAYOUT( \
|
|
L00, L01, L02, L03, L04, R00, R01, R02, R03, R04, \
|
|
L10, L11, L12, L13, L14, R10, R11, R12, R13, R14, \
|
|
L20, L21, L22, L23, L24, R20, R21, R22, R23, R24, \
|
|
L31, L32, R32, R33, \
|
|
L33, R31, \
|
|
L34, L44, R40, R30, \
|
|
L42, L43, R41, R42 \
|
|
) { \
|
|
{ L00, L01, L02, L03, L04 }, \
|
|
{ L10, L11, L12, L13, L14 }, \
|
|
{ L20, L21, L22, L23, L24 }, \
|
|
{ XXX, L31, L32, L33, L34 }, \
|
|
{ XXX, XXX, L42, L43, L44 }, \
|
|
\
|
|
{ R00, R01, R02, R03, R04 }, \
|
|
{ R10, R11, R12, R13, R14 }, \
|
|
{ R20, R21, R22, R23, R24 }, \
|
|
{ R30, R31, R32, R33, XXX }, \
|
|
{ R40, R41, R42, XXX, XXX }, \
|
|
}
|