logo

qmk_firmware

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

readme.md (2108B)


  1. # xdboards/recon
  2. ![xdboards/recon](https://imgur.com/a/HcjT4yq)
  3. A split low profile keyboard with hotswap sockets that is built around the Sea-Picro microcontroller for it's dedicated RGB pin.
  4. * Keyboard Maintainer: [Daniel Weeks](https://github.com/Xanimos)
  5. * Hardware Supported: Recon PCB, Sea-Picro, backwards compatibility with ProMicro pin layout.
  6. * Hardware Availability: [xdboards.xyz shop](https://www.xdboards.xyz)
  7. Make example for this keyboard (after setting up your build environment):
  8. make xdboards/recon:default
  9. 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).
  10. ## Bootloader
  11. Enter the bootloader in 2 ways:
  12. * **Physical reset button**: Briefly press the button on the side of the PCB
  13. * **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
  14. * **Boot Magic**: Hold down the boot magic key while plugging in the USB cable
  15. ## Setup for Sea-Picro microcontrollers
  16. To take advantage of the dedicated 5v RGB pin on the sea-picro you must create your keymap
  17. and then add a `rules.mk` file and copy and paste the following:
  18. ```
  19. CONVERT_TO = rp2040_ce
  20. USE_SEA_PICRO_RGB_PIN = yes
  21. ```
  22. If you do not want to use the dedicated 5v RGB header then follow the Setup for non Sea-Picro microcontrollers.
  23. ## Setup for non Sea-Picro microcontrollers
  24. Solder the "Pro-Micro Compatibility" jumper on the bottom of both boards.
  25. In your keymap directory:
  26. - add/modify a `rules.mk` file
  27. - Remove or set `CONVERT_TO` to desired converter see [QMK Documentation](https://docs.qmk.fm/#/feature_converters)
  28. - Remove or set `USE_SEA_PICRO_RGB_PIN` to `no`
  29. ## Setup for Underglow rgb only
  30. Solder the "Per-Key RGB Skip" jumper on the bottom of both boards. Do not install per key RGBs.
  31. In your keymap directory:
  32. - add/modify a `config.h` file and insert
  33. ```
  34. #define RGB_MATRIX_SPLIT { 5, 5 }
  35. #define RGB_MATRIX_LED_COUNT 10
  36. ```