diff options
author | John Helveston <john.helveston@gmail.com> | 2020-07-26 17:35:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-26 22:35:46 +0100 |
commit | 688426b50225b1d5b44f3eeaa9b26816d28ba16e (patch) | |
tree | 3fd9fcf32bbbd5cf538db2fdc3678b84e10ac71d /keyboards/keebio/iris/keymaps/jhelvy/config.h | |
parent | a6a13f96262ef1e8c91546f24cff5067f8026c23 (diff) | |
download | qmk_firmware-688426b50225b1d5b44f3eeaa9b26816d28ba16e.tar.gz qmk_firmware-688426b50225b1d5b44f3eeaa9b26816d28ba16e.zip |
Adding keymaps for iris and kyria keyboards (#9783)
* updated iris and kyria keymaps
* added symbols I forgot to add to keymap
* Update keyboards/keebio/iris/keymaps/jhelvy/keymap.c
Co-authored-by: Ryan <fauxpark@gmail.com>
* condense code
Co-authored-by: Ryan <fauxpark@gmail.com>
* condense code
Co-authored-by: Ryan <fauxpark@gmail.com>
* made another small fix to a missing symbol in my iris keymap
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/keebio/iris/keymaps/jhelvy/config.h')
-rw-r--r-- | keyboards/keebio/iris/keymaps/jhelvy/config.h | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/keyboards/keebio/iris/keymaps/jhelvy/config.h b/keyboards/keebio/iris/keymaps/jhelvy/config.h index 2285c3f9af..c019234732 100644 --- a/keyboards/keebio/iris/keymaps/jhelvy/config.h +++ b/keyboards/keebio/iris/keymaps/jhelvy/config.h @@ -17,17 +17,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #pragma once -// #define USE_I2C -#define EE_HANDS - -#undef RGBLED_NUM -#define RGBLIGHT_ANIMATIONS -#define RGBLED_NUM 12 -#define RGBLIGHT_HUE_STEP 8 -#define RGBLIGHT_SAT_STEP 8 -#define RGBLIGHT_VAL_STEP 8 +// Had to swap the master to get the right-side rotary encoder supported +#define MASTER_RIGHT #define TAPPING_FORCE_HOLD #undef TAPPING_TERM #define TAPPING_TERM 200 #define AUTO_SHIFT_TIMEOUT 150 + +#define MOUSEKEY_DELAY 100 +#define MOUSEKEY_INTERVAL 16 +#define MOUSEKEY_MAX_SPEED 2 +#define MOUSEKEY_WHEEL_MAX_SPEED 42 +#define MOUSEKEY_WHEEL_TIME_TO_MAX 15 + +#define ENCODERS_PAD_A { F4 } +#define ENCODERS_PAD_B { F5 } +#define ENCODER_RESOLUTION 4 |