Skip to content

Commit

Permalink
Add documentation for keyboard layout feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Dewb committed Oct 3, 2023
1 parent aa1388d commit d5328a0
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/content/modules/teletype.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ To send keyboard input to Teletype, click the screen with your mouse or trackpad

Note that your operating system may intercept some keyboard combinations (like <kbd>Alt-Esc</kbd> to enter **SCENE WRITE** mode). If that happens, <kbd>Alt-Esc</kbd> and other critical key combinations can also be triggered via the right-click menu.

The VCV Rack version of Teletype defers keycode processing to the firmware, so unfortunately, like the hardware, it currently only supports US QWERTY keyboard layouts.
The VCV Rack version of Teletype defers keycode processing to the firmware, so like the hardware, it operates directly on fixed USB HID scancodes. The translation of Rack keystrokes to HID keystrokes can be customized for different keyboard layouts. Right-click the module and select **Keyboard layout** to change the layout for all Teletype instances.

These layout options are defined with JSON files in your Rack2 user folder, under `Rack2/plugin-<os>-<arch>/monome/res/keymaps`. Adding or modifying files here will allow you to customize this translation process for international keyboards or other alternate layouts. [See GitHub for details](https://github.com/Dewb/monome-rack/tree/main/res/keymaps).

# TRIGGER inputs

Expand Down
62 changes: 62 additions & 0 deletions res/keymaps/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
## Teletype Keyboard Layouts

These JSON files define keyboard layouts for Teletype, selectable from the right-click menu. Keyboard layout choice is global for all Teletype modules, and is saved with the Rack settings, not the patch.

### Why does Teletype need custom keyboard layouts?

The Teletype module firmware code operates directly on HID scancodes sent in USB packets. It acts more like a videogame input mapping system than a text entry system. Rack's GLFW input processing does attempt to do international layout translation, but this text-only mapping is not sufficient for Teletype to understand which keys are being pressed. Even on US keyboards, we have to remap from GLFW scancodes back to HID scancodes.

### How do I use this to improve support for my keyboard?

Copy one of the existing layouts and change the values of `"output"` to match the HID codes that Teletype should receive for a given GLFW keycode.

For example, in the US Dvorak layout, the A key is still A, but the scancodes for B, C, and D should now produce <key>X</key>, <key>J</key>, and <key>E</key>.

```json
{
"name": "US Dvorak",
"keymap": [
...
{ "input": "GLFW_KEY_A", "output": "HID_A" },
{ "input": "GLFW_KEY_B", "output": "HID_X" },
{ "input": "GLFW_KEY_C", "output": "HID_J" },
{ "input": "GLFW_KEY_D", "output": "HID_E" },
...
]
}
```

By default, the entire key will be translated regardless which modifier keys are pressed, and the modifier state will be passed along to Teletype as is.

If you need to map a character that is accessible via the shift key in your layout to a completely different key than its non-shifted character, you can add `"input_shift": true` to only remap the shifted character. If you need to customize the behavior so an input key produces a character that requires a shift key in the default US HID layout, you can add `"output_shift": true` to send a synthetic shift modifier to Teletype.

For example, one of the differences between US and UK keyboards is that the <key>"</key> and <key>@</key> characters swap positions as shifted characters on the <key>'</key> and <key>2</key> keys.

```json
{
"name": "UK",
"keymap": [
...
{ "input": "GLFW_KEY_APOSTROPHE", "output": "HID_QUOTE" },
{ "input": "GLFW_KEY_APOSTROPHE", "input_shift": true, "output": "HID_2", "output_shift": true },
...
{ "input": "GLFW_KEY_2", "output": "HID_2" },
{ "input": "GLFW_KEY_2", "input_shift": true, "output": "HID_QUOTE", "output_shift": true },
...
]
}
```

Remapping of other modifiers is not currently supported, and Alt/Control/Meta are passed to Teletype unchanged. If you need the ability to remap other modifiers in order to properly map your keyboard, please [open an issue](https://github.com/Dewb/monome-rack/issues/new/choose).

### What are the GLFW and HID scancode names?

#### GLFW:
* GLFW documentation: https://www.glfw.org/docs/3.3/group__keys.html

#### HID:
* Atmel ASF USB HID header: https://github.com/avrxml/asf/blob/master/common/services/usb/class/hid/usb_protocol_hid.h

Teletype may add additional constants to cover gaps in ASF support, see
[TeletypeKeyboard.cpp](https://github.com/Dewb/monome-rack/tree/main/src/teletype/TeletypeKeyboard.cpp)
for a definitive list.

0 comments on commit d5328a0

Please sign in to comment.