mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-17 21:22:05 +00:00
Moved mouse config to .json
This commit is contained in:
parent
3736ac34d5
commit
dfe3646dd7
@ -12,6 +12,13 @@
|
|||||||
"pin": "GP0",
|
"pin": "GP0",
|
||||||
"driver": "vendor"
|
"driver": "vendor"
|
||||||
},
|
},
|
||||||
|
"mouse_key": {
|
||||||
|
"enabled": true,
|
||||||
|
"delay": 10,
|
||||||
|
"interval": 16,
|
||||||
|
"max_speed": 2,
|
||||||
|
"time_to_max": 40
|
||||||
|
}
|
||||||
"rgb_matrix": {
|
"rgb_matrix": {
|
||||||
"driver": "ws2812",
|
"driver": "ws2812",
|
||||||
"max_brightness": 128,
|
"max_brightness": 128,
|
||||||
|
@ -13,16 +13,10 @@
|
|||||||
#define TAPPING_TERM 210
|
#define TAPPING_TERM 210
|
||||||
|
|
||||||
/* Allows for the setting of constant mouse speed levels. */
|
/* Allows for the setting of constant mouse speed levels. */
|
||||||
/* Delay between pressing a movement key and cursor movement */
|
/* Not all mouse wheel config settings are currently supported in .json config.*/
|
||||||
#define MOUSEKEY_DELAY 10
|
/* https://github.com/qmk/qmk_firmware/blob/master/docs/reference_info_json.md */
|
||||||
/* Time between cursor movements in milliseconds */
|
|
||||||
#define MOUSEKEY_INTERVAL 16
|
|
||||||
/* Step size */
|
/* Step size */
|
||||||
#define MOUSEKEY_MOVE_DELTA 8
|
#define MOUSEKEY_MOVE_DELTA 8
|
||||||
/* Maximum cursor speed at which acceleration stops */
|
|
||||||
#define MOUSEKEY_MAX_SPEED 2
|
|
||||||
/* Time until maximum cursor speed is reached */
|
|
||||||
#define MOUSEKEY_TIME_TO_MAX 40
|
|
||||||
/* Maximum number of scroll steps per scroll action */
|
/* Maximum number of scroll steps per scroll action */
|
||||||
#define MOUSEKEY_WHEEL_MAX_SPEED 42
|
#define MOUSEKEY_WHEEL_MAX_SPEED 42
|
||||||
/* Time until maximum scroll speed is reached */
|
/* Time until maximum scroll speed is reached */
|
||||||
|
@ -21,16 +21,10 @@
|
|||||||
#define TAPPING_TERM 210
|
#define TAPPING_TERM 210
|
||||||
|
|
||||||
/* Allows for the setting of constant mouse speed levels. */
|
/* Allows for the setting of constant mouse speed levels. */
|
||||||
/* Delay between pressing a movement key and cursor movement */
|
/* Not all mouse wheel config settings are currently supported in .json config.*/
|
||||||
#define MOUSEKEY_DELAY 10
|
/* https://github.com/qmk/qmk_firmware/blob/master/docs/reference_info_json.md */
|
||||||
/* Time between cursor movements in milliseconds */
|
|
||||||
#define MOUSEKEY_INTERVAL 16
|
|
||||||
/* Step size */
|
/* Step size */
|
||||||
#define MOUSEKEY_MOVE_DELTA 8
|
#define MOUSEKEY_MOVE_DELTA 8
|
||||||
/* Maximum cursor speed at which acceleration stops */
|
|
||||||
#define MOUSEKEY_MAX_SPEED 2
|
|
||||||
/* Time until maximum cursor speed is reached */
|
|
||||||
#define MOUSEKEY_TIME_TO_MAX 40
|
|
||||||
/* Maximum number of scroll steps per scroll action */
|
/* Maximum number of scroll steps per scroll action */
|
||||||
#define MOUSEKEY_WHEEL_MAX_SPEED 42
|
#define MOUSEKEY_WHEEL_MAX_SPEED 42
|
||||||
/* Time until maximum scroll speed is reached */
|
/* Time until maximum scroll speed is reached */
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
# Enables Audio control and System control Keycodes
|
# Enables Audio control and System control Keycodes
|
||||||
EXTRAKEY_ENABLE = yes
|
EXTRAKEY_ENABLE = yes
|
||||||
# Enables Mousekeys
|
|
||||||
MOUSEKEY_ENABLE = yes
|
|
||||||
# Encoder Support
|
# Encoder Support
|
||||||
ENCODER_ENABLE = yes
|
ENCODER_ENABLE = yes
|
||||||
# Use Enocoder Mapping
|
# Use Enocoder Mapping
|
||||||
|
Loading…
Reference in New Issue
Block a user