diff options
author | Jesper Brix Rosenkilde <jbr@nordu.net> | 2017-09-22 13:58:49 +0200 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-10-10 07:20:17 -1000 |
commit | 966e2660cf8e2532b74aee64fda28203fcc5daf5 (patch) | |
tree | 9f61727adf40631199d41cd36866cc8db5ae786c /docs | |
parent | 109b2ae0bd4cd32bde7a07e6b7f30abafbf0dfb7 (diff) |
Add option to reverse PS2 mouse axes and scrolling
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_ps2_mouse.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/feature_ps2_mouse.md b/docs/feature_ps2_mouse.md index 8629b28cff..dac3a5b361 100644 --- a/docs/feature_ps2_mouse.md +++ b/docs/feature_ps2_mouse.md @@ -227,6 +227,26 @@ Fine control over the scrolling is supported with the following defines: #define PS2_MOUSE_SCROLL_DIVISOR_V 2 ``` +#### Invert mouse and scroll axes + +To invert the X and Y axes you can put: + +``` +#define PS2_MOUSE_INVERT_X +#define PS2_MOUSE_INVERT_Y +``` + +into config.h. + +To reverse the scroll axes you can put: + +``` +#define PS2_MOUSE_INVERT_H +#define PS2_MOUSE_INVERT_V +``` + +into config.h. + #### Debug settings To debug the mouse, add `debug_mouse = true` or enable via bootmagic. |