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.

54 lines
2.6 KiB

  1. # Ploopy Trackball Nano
  2. ![Ploopyco Trackball Nano](https://ploopy.co/wp-content/uploads/2021/06/2.jpg)
  3. It's a DIY, QMK Powered Trackball...Nano!
  4. * Maintainer: [PloopyCo](https://github.com/ploopyco)
  5. * Key contributors: [Drashna Jael're](https://github.com/drashna/), [Germ](https://github.com/germ/)
  6. * Hardware Supported: ATMega32u4 16MHz(5v)
  7. * Hardware Availability: [Store](https://ploopy.co/nano-trackball), [GitHub](https://github.com/ploopyco/nano-trackball)
  8. Make example for this trackball (after setting up your build environment):
  9. make ploopyco/trackball_nano/rev1_001:default:flash
  10. make ploopyco/trackball_nano/rev1_001:via:flash
  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. ## Hardware Reset Button
  13. The Ploopy Nano has a handy bootloader reset mechanism: two via pins on the board, designated by the reference designator `MCU.J.X BOOTLOADER`. If you stick an uninsulated paperclip or a pair of metal tweezers into both holes and plug in the Nano, it will start in bootloader mode.
  14. ## Revisions
  15. Occasionally, new revisions of the PCB will be released. Every board comes with a designator that looks something like `R1.001`.
  16. Match the firmware that you flash onto the board with the designator on the board.
  17. # Customizing your Ploopy Nano Trackball
  18. You can change the DPI/CPI or speed of the trackball by calling `adns_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 375, 750, and 1375, but can be changed. 750 is the default.
  19. To configure/set your own array, there are two defines to use, `PLOOPY_DPI_OPTIONS` to set the array, and `PLOOPY_DPI_DEFAULT`.
  20. ```c
  21. #define PLOOPY_DPI_OPTIONS { CPI375, CPI750, CPI1375}
  22. #define PLOOPY_DPI_DEFAULT 1
  23. ```
  24. 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.
  25. The `DPI_CONFIG` macro will cycle through the values in the array, each time you hit it. It stores this value in persistent memory, so it will load it the next time the device powers up.
  26. ## Fuse settings
  27. When flashing the bootloader, use the following fuse settings:
  28. | Fuse | Setting |
  29. |----------|-------------|
  30. | Low | `0x5E` |
  31. | High | `0x99` |
  32. | Extended | `0xC3` |