diff options
author | Drashna Jaelre <drashna@live.com> | 2020-08-16 17:59:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-17 09:59:59 +0900 |
commit | b0bd2e674be7e10ed561d7351dc793cc3b06a092 (patch) | |
tree | aacd12b846e58911cf745ccee701276a748c92c7 | |
parent | 35cbcb582c9d71ed48fa8896acb11b3b3b2b0791 (diff) |
Set defaults for Mousekey Wheel movement (#303)
* fix: italian keymap it quot is redefined
* fix: missing deprecated swedish key code
* Adds Moonlander to the list of supported keyboards
* Sorts list and adds EZ suffix to Planck in Readme
* Update Mouse Wheel config
Co-authored-by: Florian Didron <0x6664@hey.com>
Co-authored-by: Erez Zukerman <1092548+ezuk@users.noreply.github.com>
-rw-r--r-- | keyboards/ergodox_ez/config.h | 13 | ||||
-rw-r--r-- | keyboards/moonlander/config.h | 13 | ||||
-rw-r--r-- | keyboards/planck/ez/config.h | 13 | ||||
-rw-r--r-- | readme.md | 3 |
4 files changed, 26 insertions, 16 deletions
diff --git a/keyboards/ergodox_ez/config.h b/keyboards/ergodox_ez/config.h index aa39330c29..86110cee79 100644 --- a/keyboards/ergodox_ez/config.h +++ b/keyboards/ergodox_ez/config.h @@ -35,11 +35,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define MATRIX_ROWS_PER_SIDE (MATRIX_ROWS / 2) #define MATRIX_COLS 6 -#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 MOUSEKEY_INTERVAL 20 +#define MOUSEKEY_DELAY 0 +#define MOUSEKEY_TIME_TO_MAX 60 +#define MOUSEKEY_MAX_SPEED 7 +#define MOUSEKEY_WHEEL_DELAY MOUSEKEY_DELAY +#define MOUSEKEY_WHEEL_INTERVAL MOUSEKEY_INTERVAL +#define MOUSEKEY_WHEEL_MAX_SPEED MOUSEKEY_MAX_SPEED +#define MOUSEKEY_WHEEL_TIME_TO_MAX MOUSEKEY_TIME_TO_MAX #define TAPPING_TOGGLE 1 diff --git a/keyboards/moonlander/config.h b/keyboards/moonlander/config.h index 79f4d6123f..632ede2ee9 100644 --- a/keyboards/moonlander/config.h +++ b/keyboards/moonlander/config.h @@ -106,11 +106,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define TAPPING_TOGGLE 1 -#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 MOUSEKEY_INTERVAL 20 +#define MOUSEKEY_DELAY 0 +#define MOUSEKEY_TIME_TO_MAX 60 +#define MOUSEKEY_MAX_SPEED 7 +#define MOUSEKEY_WHEEL_DELAY MOUSEKEY_DELAY +#define MOUSEKEY_WHEEL_INTERVAL MOUSEKEY_INTERVAL +#define MOUSEKEY_WHEEL_MAX_SPEED MOUSEKEY_MAX_SPEED +#define MOUSEKEY_WHEEL_TIME_TO_MAX MOUSEKEY_TIME_TO_MAX #define MUSIC_MAP diff --git a/keyboards/planck/ez/config.h b/keyboards/planck/ez/config.h index d017e97d17..bfddeb37ff 100644 --- a/keyboards/planck/ez/config.h +++ b/keyboards/planck/ez/config.h @@ -156,8 +156,11 @@ #define TAPPING_TOGGLE 1 -#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 MOUSEKEY_INTERVAL 20 +#define MOUSEKEY_DELAY 0 +#define MOUSEKEY_TIME_TO_MAX 60 +#define MOUSEKEY_MAX_SPEED 7 +#define MOUSEKEY_WHEEL_DELAY MOUSEKEY_DELAY +#define MOUSEKEY_WHEEL_INTERVAL MOUSEKEY_INTERVAL +#define MOUSEKEY_WHEEL_MAX_SPEED MOUSEKEY_MAX_SPEED +#define MOUSEKEY_WHEEL_TIME_TO_MAX MOUSEKEY_TIME_TO_MAX @@ -9,8 +9,9 @@ This purpose of this fork is maintain a clean repo that only contains the keyboa ## Supported Keyboards -* [Planck](/keyboards/planck/ez) * [ErgoDox EZ](/keyboards/ergodox_ez/) +* [Planck EZ](/keyboards/planck/ez) +* [Moonlander Mark I](/keyboards/moonlander) ## Maintainers |