forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new features to dshields keymap.
- one shot layers, dynamic macros and tap dance keys - add a basic readme.md and layout image.
- Loading branch information
Showing
5 changed files
with
55 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,31 @@ | ||
#ifndef CONFIG_USER_H | ||
#define CONFIG_USER_H | ||
|
||
#ifndef NO_DEBUG | ||
#define NO_DEBUG | ||
#endif | ||
#ifndef NO_PRINT | ||
#define NO_PRINT | ||
#endif | ||
|
||
#include "../../config.h" | ||
|
||
#define TAPPING_TOGGLE 2 | ||
#define TAPPING_TERM 300 | ||
|
||
#define ONESHOT_TAP_TOGGLE 2 | ||
#define ONESHOT_TIMEOUT 300 | ||
|
||
#define _______ KC_TRNS | ||
#define XXXXXXX KC_NO | ||
|
||
#define ONESHOT_TAP_TOGGLE 2 | ||
#define ONESHOT_TIMEOUT 500 | ||
|
||
#define MOUSEKEY_INTERVAL 20 | ||
#define MOUSEKEY_DELAY 0 | ||
#define MOUSEKEY_TIME_TO_MAX 60 | ||
#define MOUSEKEY_MAX_SPEED 7 | ||
#define MOUSEKEY_WHEEL_DELAY 0 | ||
|
||
#define DM_PLAY DYN_MACRO_PLAY1 | ||
#define DM_STRT DYN_REC_START1 | ||
#define DM_STOP DYN_REC_STOP | ||
|
||
#define OSL_RSE OSL(RSE) | ||
#define OSL_LWR OSL(LWR) | ||
#define OSL_FUN OSL(FUN) | ||
|
||
#define OSM_CTL OSM(MOD_LCTL) | ||
#define OSM_ALT OSM(MOD_LALT) | ||
#define OSM_SFT OSM(MOD_LSFT) | ||
|
||
#endif | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
About | ||
------ | ||
|
||
A simple split qwerty Planck layout that makes use of one-shot modifiers, | ||
one-shot layers, tap-dance keys and dynamic macros. | ||
|
||
Layout | ||
------- | ||
|
||
![Layout](keyboard-layout.jpg "Keyboard Layout") | ||
|