diff options
-rw-r--r-- | keyboards/ploopyco/trackball_mini/readme.md | 4 | ||||
-rw-r--r-- | keyboards/ploopyco/trackball_nano/readme.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/ploopyco/trackball_mini/readme.md b/keyboards/ploopyco/trackball_mini/readme.md index 3c21a57cf..a3aebb06e 100644 --- a/keyboards/ploopyco/trackball_mini/readme.md +++ b/keyboards/ploopyco/trackball_mini/readme.md | |||
@@ -56,7 +56,7 @@ Additionally, you can change the DPI/CPI or speed of the trackball by calling `a | |||
56 | To configure/set your own array, there are two defines to use, `PLOOPY_DPI_OPTIONS` to set the array, and `PLOOPY_DPI_DEFAULT`. | 56 | To configure/set your own array, there are two defines to use, `PLOOPY_DPI_OPTIONS` to set the array, and `PLOOPY_DPI_DEFAULT`. |
57 | 57 | ||
58 | ```c | 58 | ```c |
59 | #define PLOOPY_DPI_OPTIONS { CPI375, CPI750, CPI1375} | 59 | #define PLOOPY_DPI_OPTIONS { 375, 750, 1375} |
60 | #define PLOOPY_DPI_DEFAULT 2 | 60 | #define PLOOPY_DPI_DEFAULT 2 |
61 | ``` | 61 | ``` |
62 | 62 | ||
@@ -73,7 +73,7 @@ Nothing needs to be enabled to use this functionality. Just add the `DRAG_SCROL | |||
73 | ### Drag Scroll Configuration | 73 | ### Drag Scroll Configuration |
74 | 74 | ||
75 | * `#define PLOOPY_DRAGSCROLL_MOMENTARY` - Makes the key into a momentary key, rather than a toggle. | 75 | * `#define PLOOPY_DRAGSCROLL_MOMENTARY` - Makes the key into a momentary key, rather than a toggle. |
76 | * `#define PLOOPY_DRAGSCROLL_DPI CPI375` - When the fixed DPI option is enabled, this sets the DPI to be used for Drag Scroll. | 76 | * `#define PLOOPY_DRAGSCROLL_DPI 375` - When the fixed DPI option is enabled, this sets the DPI to be used for Drag Scroll. |
77 | * `#define PLOOPY_DRAGSCROLL_INVERT` - This reverses the direction that the scroll is performed. | 77 | * `#define PLOOPY_DRAGSCROLL_INVERT` - This reverses the direction that the scroll is performed. |
78 | ## Fuse settings | 78 | ## Fuse settings |
79 | 79 | ||
diff --git a/keyboards/ploopyco/trackball_nano/readme.md b/keyboards/ploopyco/trackball_nano/readme.md index a82b3bc71..0d427bfb5 100644 --- a/keyboards/ploopyco/trackball_nano/readme.md +++ b/keyboards/ploopyco/trackball_nano/readme.md | |||
@@ -35,7 +35,7 @@ You can change the DPI/CPI or speed of the trackball by calling `adns_set_cpi` a | |||
35 | To configure/set your own array, there are two defines to use, `PLOOPY_DPI_OPTIONS` to set the array, and `PLOOPY_DPI_DEFAULT`. | 35 | To configure/set your own array, there are two defines to use, `PLOOPY_DPI_OPTIONS` to set the array, and `PLOOPY_DPI_DEFAULT`. |
36 | 36 | ||
37 | ```c | 37 | ```c |
38 | #define PLOOPY_DPI_OPTIONS { CPI375, CPI750, CPI1375} | 38 | #define PLOOPY_DPI_OPTIONS { 375, 750, 1375} |
39 | #define PLOOPY_DPI_DEFAULT 1 | 39 | #define PLOOPY_DPI_DEFAULT 1 |
40 | ``` | 40 | ``` |
41 | 41 | ||