8
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ergodoxのマウススピード

Last updated at Posted at 2017-03-02

Ergodoxのマウス機能を使っている方がどれだけいることやらわかりませんが
マウススピードを設定する方法をググってもわかりずらかったのでメモ

git grepをかけてみるとqmk_fireware/keyboards/ergodox/config.hの冒頭にこのようにあります

config.h
#define MOUSEKEY_INTERVAL       20
#define MOUSEKEY_DELAY          0
#define MOUSEKEY_TIME_TO_MAX    5
#define MOUSEKEY_MAX_SPEED      2
#define MOUSEKEY_WHEEL_DELAY 0

どうやらこれをいじれば良さげ
自分のkeymap.cと同じディレクトリにconfig.hを用意
私の場合は以下のようにしています

config.h
#include "../../config.h"
#define PREVENT_STUCK_MODIFIERS

#undef MOUSEKEY_TIME_TO_MAX
#define MOUSEKEY_TIME_TO_MAX 20

#undef MOUSEKEY_MAX_SPEED
#define MOUSEKEY_MAX_SPEED 5

#undef MOUSEKEY_MOVE_DELTA
#define MOUSEKEY_MOVE_DELTA 5

#undef MOUSEKEY_DELAY
#define MOUSEKEY_DELAY 0
8
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?