logo

qmk_firmware

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

readme.md (1888B)


  1. # The Redox keyboard
  2. <p align="center">
  3. <img src="https://github.com/mattdibi/redox-keyboard/raw/master/img/redox-logo.png" alt="Redox logo" width="600"/>
  4. </p>
  5. <p align="center">
  6. <img src="https://github.com/mattdibi/redox-keyboard/raw/master/img/redox-pcb2.jpg" alt="Redox PCB rev1.0" width="600"/>
  7. </p>
  8. **Redox**: the **R**educed **E**rgo**dox** project. More information and building instruction [here](https://github.com/mattdibi/redox-keyboard).
  9. - Keyboard Maintainer: [Mattia Dal Ben](https://github.com/mattdibi)
  10. - Hardware Supported:
  11. - Redox PCB rev1.0
  12. - Pro Micro or Proton C micro controllers
  13. - Hardware Availability: [Falbatech](https://falba.tech/product-category/keyboard-parts/redox-parts/)
  14. Make example for this keyboard (after setting up [qmk](https://docs.qmk.fm/#/getting_started_build_tools)):
  15. To build the Pro Micro firmware, first set your config:
  16. ```sh
  17. qmk config user.keyboard=redox/rev1
  18. ```
  19. or if your using the Proton C:
  20. ```sh
  21. qmk config user.keyboard=redox/rev1/proton_c
  22. ```
  23. Don't forget to set a layout. There's many to choose from in the keymaps folder.
  24. ```sh
  25. qmk config user.keymap=default
  26. ```
  27. Now you can build your firmware!
  28. ```sh
  29. qmk compile
  30. ```
  31. Flashing is also straightforward. Run:
  32. ```sh
  33. qmk flash
  34. ```
  35. Enter the bootloader when prompted by doing one of the following:
  36. * **Physical reset button**: Briefly press the button on the back of the PCB
  37. * **Keycode in layout**: Press the key mapped to `QK_BOOT` if you have a layout that has one.
  38. The WS2812 driver is *untested* on the Proton C, but if you choose to use this feature, you will need to source 5v from the Proton's VUSB pin and not use the PCB's dedicated pin which will be 3v3 *and* follow the [documentation](https://docs.qmk.fm/#/ws2812_driver) to enable the correct driver settings.
  39. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).