You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
3.0 KiB

  1. # Ploopyco Trackball
  2. ![Ploopyco Trackball](https://i.redd.it/j7z0y83txps31.jpg)
  3. It's a DIY, QMK Powered Trackball!!!!
  4. * Keyboard Maintainer: [PloopyCo](https://github.com/ploopyco), [Drashna Jael're](https://github.com/drashna/), [Germ](https://github.com/germ/)
  5. * Hardware Supported: ATMega32u4 8MHz(3.3v)
  6. * Hardware Availability: [Store](https://ploopy.co), [GitHub](https://github.com/ploopyco)
  7. Make example for this keyboard (after setting up your build environment):
  8. make ploopyco/trackball/rev1:default:flash
  9. make ploopyco/trackball/rev1_005:default:flash
  10. To jump to the bootloader, hold down "Button 4" (immediate right of the trackball)
  11. See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
  12. ## Revisions
  13. There are two main revisions for the PloopyCo Tracball, everything up to 1.004, and 1.005.
  14. In the 1.005 revision, button for was changed from pin B5 to B6, and the debug LED pin was changed from F7 to B5.
  15. The PCB should indicate which revision this is.
  16. # Customzing your PloopyCo Trackball
  17. 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.
  18. The default behavior for this is:
  19. ```c
  20. void process_wheel_user(report_mouse_t* mouse_report, int16_t h, int16_t v) {
  21. mouse_report->h = h;
  22. mouse_report->v = v;
  23. }
  24. void process_mouse_user(report_mouse_t* mouse_report, int16_t x, int16_t y) {
  25. mouse_report->x = x;
  26. mouse_report->y = y;
  27. }
  28. ```
  29. This should allow you to more heavily customize the behavior.
  30. Alternatively, the `process_wheel` and `process_mouse` functions can both be replaced too, to allow for even more functionality.
  31. Additionally, you can change the DPI/CPI or speed of the trackball by calling `pmw_set_cpi` at any time. Additionally, there is a `DPI_CONFIG` macro that will cycle through an array of options for the DPI. This is set to 1200, 1600, and 2400, but can be changed. 1600 is also set to the default.
  32. To configure/set your own array, there are two defines to use, `PLOOPY_DPI_OPTIONS` to set the array, and `PLOOPY_DPI_DEFAULT`.
  33. ```c
  34. #define PLOOPY_DPI_OPTIONS { 1200, 1600, 2400 }
  35. #define PLOOPY_DPI_DEFAULT 1
  36. ```
  37. The `PLOOPY_DPI_OPTIONS` array sets the values that you want to be able to cycle through, and the order they are in. The "default" define lets the firmware know which of these options is the default and should be loaded by default.
  38. The `DPI_CONFIG` macro will cycle through the values in the array, each time you hit it. And it stores this value in persistent memory, so it will load it the next time the device powers up.