logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

readme.md (3541B)


  1. # Rotary Numpad
  2. ![rotary_numpad](https://i.imgur.com/GwEH4WOh.jpeg)
  3. This is a personal project of mine where I wanted a number pad that I can put on the left side of keyboard that doesn't have a numberpad. I fell in love with the feel of rotary encoders on my 3d printer, so added three to be able to play around with.
  4. * Keyboard Maintainer: [rabijl](https://github.com/rabijl)
  5. * Hardware Supported: Sparkfun Pro Micro 5V (atmega32u4)
  6. * Hardware Availability: https://www.sparkfun.com/products/12640
  7. ## How to build from scratch
  8. I handsoldered gateron blue switches to a 3D printed case. The design is modified from the [Ultipad](https://www.thingiverse.com/thing:4248565). \
  9. I used a sparkfun Pro Micro as my microcontroller and the pinout can be found in the `info.json`. I found this [site](https://golem.hu/article/pro-micro-pinout/) \
  10. to be very useful to identify different pins. You can find useful information on rotary encoders from the qmk docs [here](https://docs.qmk.fm/#/reference_info_json?id=encoders) and [here](https://docs.qmk.fm/#/feature_encoders).
  11. ### matrix
  12. Due to the three rotary encoders, I had to use most of the available pins. Fortunately, all the buttons still fit in a 6x4 matrix. Looking at the diagram below, the three buttons in the first column correspond to each encoder button.
  13. ```
  14. ┌──┐┌──┐┌──┐┌──┐
  15. │0A││0B││0C││0D│
  16. ┌──┐ └──┘└──┘└──┘└──┘
  17. │5A│
  18. └──┘ ┌──┐┌──┐┌──┐┌──┐
  19. │1A││1B││1C││1D│
  20. └──┘└──┘└──┘└──┘
  21. ┌──┐┌──┐┌──┐┌──┐
  22. │2A││2B││2C││2D│
  23. ┌──┐ └──┘└──┘└──┘│ │
  24. │3D│ ┌──┐┌──┐┌──┐│ │
  25. └──┘ │3A││3B││3C││ │
  26. └──┘└──┘└──┘└──┘
  27. ┌──┐┌──┐┌──┐┌──┐
  28. │4A││4B││4C││4D│
  29. └──┘└──┘└──┘│ │
  30. ┌──┐ ┌──────┐┌──┐│ │
  31. │5D│ │5B ││5C││ │
  32. └──┘ └──────┘└──┘└──┘
  33. ```
  34. ## Flashing
  35. Make example for this keyboard (after setting up your build environment):
  36. qmk compile -kb handwired/rabijl/rotary_numpad -km default
  37. Flashing example for this keyboard:
  38. qmk flash -kb handwired/rabijl/rotary_numpad -km default
  39. 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).
  40. ## Bootloader
  41. Enter the bootloader in 3 ways:
  42. * **Short reset leads**: tap the reset lead to ground twice quickly after qmk is in flash mode
  43. * **Keycode in layout**: double tap the key mapped to `QK_BOOT`. On the default keymap this can be found by holding in key (0,C) and tapping key (0,A), see the matrix section for the positions of these keys.
  44. * **Bootmagic reset**: Hold down the key at (0,A) in the matrix (see matrix section) and plug in the keyboard
  45. **Note:** if the keyboard doesn't show up after putting the keyboard in reset mode, check that
  46. your user is added to the `tty` and/or `uucp` groups. \
  47. You may need to logout after adding these groups to your user, for the changes to take affect.