|
@@ -1,25 +1,141 @@
|
|
|
-SSD1306 OLED Display via I2C
|
|
|
-======
|
|
|
+# The Default Helix Layout
|
|
|
+## Layout
|
|
|
|
|
|
-Features
|
|
|
---------
|
|
|
+### Qwerty
|
|
|
|
|
|
-Some features supported by the firmware:
|
|
|
+```
|
|
|
+ ,-----------------------------------------. ,-----------------------------------------.
|
|
|
+ | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | Del |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | Tab | Q | W | E | R | T | | Y | U | I | O | P | Bksp |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | Ctrl | A | S | D | F | G | | H | J | K | L | ; | ' |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ | Shift| Z | X | C | V | B | [ | ] | N | M | , | . | / |Enter |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ |Adjust| Esc | Alt | GUI | EISU |Lower |Space |Space |Raise | KANA | Left | Down | Up |Right |
|
|
|
+ `-------------------------------------------------------------------------------------------------'
|
|
|
+```
|
|
|
|
|
|
+### Colemak
|
|
|
+```
|
|
|
+ ,-----------------------------------------. ,-----------------------------------------.
|
|
|
+ | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | Del |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | Tab | Q | W | F | P | G | | J | L | U | Y | ; | Bksp |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | Ctrl | A | R | S | T | D | | H | N | E | I | O | ' |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ | Shift| Z | X | C | V | B | [ | ] | K | M | , | . | / |Enter |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ |Adjust| Esc | Alt | GUI | EISU |Lower |Space |Space |Raise | KANA | Left | Down | Up |Right |
|
|
|
+ `-------------------------------------------------------------------------------------------------'
|
|
|
+```
|
|
|
|
|
|
-* I2C connection between the two halves is required as the OLED display will use this connection as well. Note this
|
|
|
- requires pull-up resistors on the data and clock lines.
|
|
|
-* OLED display will connect from either side
|
|
|
+### Dvorak
|
|
|
+```
|
|
|
+ ,-----------------------------------------. ,-----------------------------------------.
|
|
|
+ | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | Bksp |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | Tab | ' | , | . | P | Y | | F | G | C | R | L | Del |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | Ctrl | A | O | E | U | I | | D | H | T | N | S | / |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ | Shift| ; | Q | J | K | X | [ | ] | B | M | W | V | Z |Enter |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ |Adjust| Esc | Alt | GUI | EISU |Lower |Space |Space |Raise | KANA | Left | Down | Up |Right |
|
|
|
+ `-------------------------------------------------------------------------------------------------'
|
|
|
+```
|
|
|
|
|
|
+## Layers
|
|
|
|
|
|
-Wiring
|
|
|
-------
|
|
|
+|Priority|number|name|description|
|
|
|
+| ---- | ---- | --- | --- |
|
|
|
+|high|16|Adjust|Functions|
|
|
|
+||4|Raise|Numeric charactors|
|
|
|
+||3|Lower|Other charactors|
|
|
|
+||2|Dvorak|Dvorak leyout|
|
|
|
+||1|Colemak|Colemak leyout|
|
|
|
+|low|0|Qwerty|QWERTY leyout(base)|
|
|
|
|
|
|
+### Lower
|
|
|
+```
|
|
|
+ ,-----------------------------------------. ,-----------------------------------------.
|
|
|
+ | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | ~ | ! | @ | # | $ | % | | ^ | & | * | ( | ) | |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | | F1 | F2 | F3 | F4 | F5 | | F6 | _ | + | { | } | | |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ | | F7 | F8 | F9 | F10 | F11 | ( | ) | F12 | | | Home | End | |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ | | | | | | | | | | | Next | Vol- | Vol+ | Play |
|
|
|
+ `-------------------------------------------------------------------------------------------------'
|
|
|
+```
|
|
|
|
|
|
-Work in progress...
|
|
|
+### Raise
|
|
|
+```
|
|
|
+ ,-----------------------------------------. ,-----------------------------------------.
|
|
|
+ | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | Bksp |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | Del |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | | F1 | F2 | F3 | F4 | F5 | | F6 | - | = | [ | ] | \ |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ | | F7 | F8 | F9 | F10 | F11 | | | F12 | | |PageDn|PageUp| |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ | | | | | | | | | | | Next | Vol- | Vol+ | Play |
|
|
|
+ `-------------------------------------------------------------------------------------------------'
|
|
|
+```
|
|
|
|
|
|
+### Adjust (Lower + Raise)
|
|
|
+```
|
|
|
+ ,-----------------------------------------. ,-----------------------------------------.
|
|
|
+ | F1 | F2 | F3 | F4 | F5 | F6 | | F7 | F8 | F9 | F10 | F11 | F12 |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | | Reset|RGBRST| | | | | | | | | | Del |
|
|
|
+ |------+------+------+------+------+------| |------+------+------+------+------+------|
|
|
|
+ | | | |Aud on|Audoff| Mac | | Win |Qwerty|Colemk|Dvorak| | |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ | | | | | | | | | | |RGB ON| HUE+ | SAT+ | VAL+ |
|
|
|
+ |------+------+------+------+------+------+------+------+------+------+------+------+------+------|
|
|
|
+ | | | | | | | | | | | MODE | HUE- | SAT- | VAL- |
|
|
|
+ `-------------------------------------------------------------------------------------------------'
|
|
|
+```
|
|
|
|
|
|
-OLED Configuration
|
|
|
--------------------------------
|
|
|
+## Customize
|
|
|
+
|
|
|
+see `qmk_firmware/keyboards/helix/rev2/keymaps/default/rules.mk`
|
|
|
+
|
|
|
+```
|
|
|
+# Helix keyboard customize
|
|
|
+# you can edit follows 5 Variables
|
|
|
+# jp: 以下の5つの変数を必要に応じて編集します。
|
|
|
+HELIX_ROWS = 5 # Helix Rows is 4 or 5
|
|
|
+OLED_ENABLE = no # OLED_ENABLE
|
|
|
+LED_BACK_ENABLE = no # LED backlight (Enable WS2812 RGB underlight.)
|
|
|
+LED_UNDERGLOW_ENABLE = no # LED underglow (Enable WS2812 RGB underlight.)
|
|
|
+LED_ANIMATIONS = yes # LED animations
|
|
|
+
|
|
|
+```
|
|
|
+## Compile
|
|
|
+
|
|
|
+go to qmk top directory.
|
|
|
+```
|
|
|
+$ cd qmk_firmware
|
|
|
+```
|
|
|
+
|
|
|
+build
|
|
|
+```
|
|
|
+$ make helix:default
|
|
|
+```
|
|
|
+
|
|
|
+flash to keyboard
|
|
|
+```
|
|
|
+$ make helix:default:avrdude
|
|
|
+```
|
|
|
+
|
|
|
+## Link
|
|
|
+* more detail wrote in Japanese [helix/Doc/firmware_jp.md](https://github.com/MakotoKurauchi/helix/blob/master/Doc/firmware_jp.md)
|
|
|
+* [Helix top](https://github.com/MakotoKurauchi/helix)
|
|
|
|
|
|
-Work in progress...
|