summaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorShawn Meier <shawn.meier@gmail.com>2023-02-28 12:15:19 -0700
committerGitHub <noreply@github.com>2023-02-28 11:15:19 -0800
commit0596720f7fb6b877cd8c55b03dc014e189648f35 (patch)
treee745befb441daf08450218b49910fec400838a83 /keyboards
parent051401175d98e777a6633445a0275b54ed36e97a (diff)
[Keyboard] remove non-existent method from ploopy documentation (#19957)
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/ploopyco/trackball/readme.md15
1 files changed, 6 insertions, 9 deletions
diff --git a/keyboards/ploopyco/trackball/readme.md b/keyboards/ploopyco/trackball/readme.md
index 1648bd20f9..5c76f10187 100644
--- a/keyboards/ploopyco/trackball/readme.md
+++ b/keyboards/ploopyco/trackball/readme.md
@@ -29,20 +29,17 @@ The PCB should indicate which revision this is.
While the defaults are designed so that it can be plugged in and used right away, there are a number of things that you may want to change. Such as adding DPI control, or to use the ball to scroll while holding a button. To allow for this sort of control, there is a callback for both the scroll wheel and the mouse sensor.
-The default behavior for this is:
```c
-void process_wheel_user(report_mouse_t* mouse_report, int16_t h, int16_t v) {
- mouse_report->h = h;
- mouse_report->v = v;
-}
-
-void process_mouse_user(report_mouse_t* mouse_report, int16_t x, int16_t y) {
- mouse_report->x = x;
- mouse_report->y = y;
+report_mouse_t pointing_device_task_user(report_mouse_t mouse_report){
+ // executed each time the sensor is updated
+ // mouse_report.<attribute> - can be used to access indivdual mouse attributes
+ return mouse_report;
}
```
+More information on `report_mouse_t` may be found [here](https://docs.qmk.fm/#/feature_pointing_device?id=manipulating-mouse-reports).
+
This should allow you to more heavily customize the behavior.
Alternatively, the `process_wheel` and `process_mouse` functions can both be replaced too, to allow for even more functionality.