Skip to content

Latest commit

 

History

History
88 lines (55 loc) · 3.14 KB

BuildInstructions.md

File metadata and controls

88 lines (55 loc) · 3.14 KB

Build Instructions

Build Keyboard

Solder diodes

Best to solder the diodes onto the underside of each PCB.

The orientation of the diode is as follows. The line mark on each diode will match the line mark on the silk screen.

alt text

The trick is to tin each of the PCB diode's right pad. When ready, melt the tinned pad with the iron and using a tweezer slide the diode in place. It's recommended that you use a reverse tweezer to avoid apply excessive force.

Afterwards solder the other pad. A small amount of solder should suffice. If there is excessive amount of solder, remove it with suction pump or soldering wick.

Solder Underglow LEDs

The orientation of the LED is as follows. The square shape lead on the back of each LED will match the square outline mark on the silk screen.

alt text

Best to set the soldering iron at a low temperature 475 degrees Fahrenheit to avoid burning the LED. Avoid long contact with the LEDs. You can potentially burn the current or the neighboring LEDs.

Here is a video of foostan soldering the LED on crkbd.

Solder OLED jumpers

Bridge the OLED jumper pads on the upper side of each PCB.

alt text

Solder Reset Switch, TRRS Jack, and OLED header

Solder the reset switch, TRRS jack, and the OLED headers with the components facing on the upperside of each PCB.

alt text

Solder Microcontroller

Optional - Solder some low-profile socket headers on the upper side of each PCB.

Or solder the male header directly to the board.

Solder OLED Display

Optional - Solder some male headers on each OLED displays.

[Back to README]

Build Firmware

QMK Setup

Check out QMK official documentation on Setting Up Your QMK Environment.

[Back to README]

Building miryoku layout firmware

Add the Miryoku development branch into your existing QMK build environment.

git remote add manna-harbour git@github.com:manna-harbour/qmk_firmware.git
git fetch manna-harbour
git checkout --track manna-harbour/miryoku

To build for ProMicros, run:

make crkbd:manna-harbour_miryoku:flash

To build for Elite-C, run:

make crkbd:manna-harbour_miryoku:dfu

[Back to README]