qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

readme.md (1798B)


      1 # Iron 160 QMK folder
      2 
      3 ![Iron160](https://i.imgur.com/8B2l2pnh.jpg)
      4 
      5 ## Introduction
      6 
      7 This is the QMK Firmware repository for the Iron160 PCB, a keyboard designed by [Smith and Rune](https://smithrune.com/) and PCB designed by [Gondolindrim](http://github.com/Gondolindrim), who is also the firwmare maintainer.
      8 
      9 There are two variants of the PCB: a solderable (I160-S) and a hotswap (I160-H) PCB. Both support a myriad of alternative layouts, as well as RGB LEDs for underglow light.
     10 
     11 ## How to flash
     12 
     13 ### Enter bootloader
     14 
     15 The DFU state in the bootloader can be accessed in 3 ways:
     16 
     17 * **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key, escape in the default keymap) and plug in the keyboard;
     18 * **Physical reset button**: press the button on the front of the PCB, next to caps lock, for at least five seconds;
     19 * **Keycode in layout**: Press the key mapped to `QK_BOOT`; in the default layout, that is top left key ('escape') in layer 1.
     20 
     21 ### How to compile and flash
     22 
     23 After checking what PCB you own and setting up your build environment, you can compile the Iron 165R2 default keymap by using one of the options below.
     24 
     25     make smithrune/iron160/iron160_s:default
     26     make smithrune/iron160/iron160_h:default
     27 
     28 And use dfu-util in the command line or through a GUI like QMK toolbox to upload the firmware to the PCB. To directly flash the PCB after it is put into a DFU state, use:
     29 
     30 
     31     make smithrune/iron160/iron160_s:default:flash
     32     make smithrune/iron160/iron160_h:default:flash
     33 
     34 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).