Skip to content

280Zo/charybdis-wireless-mini-zmk-firmware

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

.github/workflows/build.yml

Intro

This repository offers pre-configured ZMK firmware designed for Wireless Charybdis keyboards, supporting both the ubiquitous QWERTY layout and the optimized Colemak DH layout. You can choose from two configurations:

  • Bluetooth and USB
  • Dongle

Additionally, this repository automatically generates SVG images of all layers in the keymap, and adds it to the README. It also provides high level instructions and resources on how to customize and build the firmware to meet your specific needs.

Check out the Charybdis Mini Wireless build guide if you haven't yet built your own Charybdis keyboard.

Usage

If you'd like to use the pre-built firmware the files can be found in the Actions Workflows. To download them, log into Github, click the link, select the latest run that passed on the main branch, and download the applicable firmware. There are five firmware artifacts to choose from. If you're unsure which one to use, you probably want the firmware-charybdis-qwerty build.

  • firmware-charybdis-qwerty - Bluetooth/USB with QWERTY layout
  • firmware-charybdis-qwerty-dongle - Dongle with QWERTY layout
  • firmware-charybdis-colemak - Bluetooth/USB with Colemak DH layout
  • firmware-charybdis-colemak-dongle - Dongle with Colemak DH layout
  • firmware-reset-nanov2 - Reset the firmware completely

There are a few things to note about how the pre-built firmware is configured:

  • ZMK has terms for each side of a split keyboard. Central is the half that sends keyboard outputs over USB or advertises to other devices over bluetooth. Peripheral is the half that will only send keystrokes to the central once they are paired and connected through bluetooth. The Bluetooth/USB firmware uses the right side as central.
  • The dongle firmware will have much better battery life for the central side, but requires an extra MCU and can only be connected through the dongle.
  • The Bluetooth/USB firmware can connect through Bluetooth, but the central side will have a shorter battery life because it needs to maintain that connection.
    • The central side can also be plugged in to USB and the keyboard can be used when Bluetooth on the host computer isn't available (e.g. BIOS navigation)
  • To add support for the PMW3610 low power trackball sensor, badjeff's zmk-pmw3610-driver, ZMK Input Behavior Listener, and ZMK Split Peripheral Input Relay modules are included in the firmware.
  • eigatech's zmk-configs played a major role in getting badjeff's drivers and modules fully configured and are a great resource
  • A separate branch builds the Bluetooth/USB firmware using inorichi's driver as an alternative to badjeff's driver.
  • Pete Johanson (creator and lead of the ZMK firmware) developed a feature (pointers-move-scroll) that allows mouse keys to move and scroll. A successor feature (pointers-with-input-processors) was then developed that allows more flexibility. This feature is what will eventually be merged into the main ZMK branch, and it's what is used by this repo to build the firmware. Although it's not guranteed to be stable, it hasn't caused any noticible issues. That being said, if you'd prefer to use pointers-move-scroll which is in a stable state, you can update the west.yaml and adapt the config files accordingly.

Flashing the Firmware

Follow the steps below to flash the firmware

  • If you are flashing the firmware for the first time, or if you're switching between the dongle and the Bluetooth/USB configuration, flash the reset firmware to all the devices first
  • Unzip the firmware.zip
  • Plug the right half info the computer through USB
  • Double press the reset button
  • The keyboard will mount as a removable storage device
  • Copy the applicable uf2 file into the NICENANO storage device (e.g. charybdis_qwerty_dongle.uf2 -> dongle)
  • It will take a few seconds, then it will unmount and restart itself.
  • Repeat these steps for all devices.
  • You should now be able to use your keyboard

Note

If the keyboard halves aren't connecting as expected, try pressing the reset button on both halves at the same time. If that doesn't work, follow the ZMK Connection Issues documentation for more troubleshooting steps.

Keymaps & Layers

The base layer uses home row mods to make typing as efficient and comfortable as possible. To reduce hand movement, extra attention has also been given to making sure cursor, scrolling, and mouse button operations are as seamless as possible.

Review the layer maps below to see how each one functions. Then either modify the keymap to fit your needs, or start using these defaults to become more familiar with them.

Here are a few tips for a quick start:

  • The bluetooth keys on the EXTRAS layer allow you to select which bluetooth pairing you want, BT-CLR clears the pairing on the selected profile.

  • The left most thumb button has multiple functions

    • When held, the function of the trackball is changed from moving the cursor to scrolling.
    • When double tapped, it will reduce the cursor speed for more precision, and activate the mouse layer.
    • When single tapped it outputs the escape key.

keymap images

Modify Key Mappings

ZMK Studio

ZMK Studio allows users to update functionality during runtime. It's currently in beta, but the physical layout and updated config files are included in the BT/USB firmware for testing. The dongle firmware does not have this integration at the moment.

To change the visual layout of the keys, the physical layout must be updated. This is the charybdis-layouts.dtsi file, which handles the actual physical positions of the keys. Though they may appear to be similar, this is different than the matrix transform file (charybdis.json) which handles the electrical matrix to keymap relationship.

To easily modify the physical layout, or convert a matrix transform file, caksoylar has built the ZMK physical layouts converter.

For more details on how to use ZMK Studio, refer to the ZMK documentation.

Keymap GUI

Using a GUI to generate the keymap file before building the firmware is another easy way to modify the key mappings. Head over to nickcoutsos' keymap editor and follow the steps below.

  • Fork/Clone this repo
  • Open a new tab to the keymap editor
  • Give it permission to see your repo
  • Select the branch you'd like to modify
  • Update the keys to match what you'd like to use on your keyboard
  • Save
  • Wait for the pipeline to run
  • Download and flash the new firmware

Edit Keymap Directly

To change a key layout choose a behavior you'd like to assign to a key, then choose a parameter code. This process is more clearly outlined on ZMK's Keymaps & Behaviors page.

Open the keymap file and change keys, or add/remove layers, then merge the changes and re-flash the keyboard with the updated firmware.

Changing the Central and Peripheral Assignments

Follow the ZMK documentation Kconfig.deconfig to change which keyboard half is the central and which is the peripheral. This does not apply to the dongle configuration.

Changing the Keyboard Name

Follow the ZMK Kconfig.defconfig section to update the keyboard name. Make sure to read about the danger in exceeding the 16 character limit.

Building Your Own Firmware

ZMK provides a comprehensive guide to follow when creating a New Keyboard Shield. I'll touch on some of the points here, but their docs should be what you reference when you're building your own firmware.

File Structure

When building the ZMK firmware, the files need to be located in the correct place. The formats and locations of the files can be found on ZMK's Configuration Overview.

Mapping GPIO Pins to Keys

To set up some of the configuration files it requires a knowledge of which keys connect to which pins on the MCU (see the Shield Overlays section), and how the rows and columns are wired.

To get this information, look at the PCB kcad files and follow the traces from key pads, to row and column through holes, to MCU through holes. Once you have that information you can update the applicable dtsi/overlay files.

Creating Graphical Key Maps

This repo uses the excellent work of caksoylar's Keymap Drawer to automatically generate a key mapping of each layer when the Github Actions are run.

Upcoming ZMK Features

ZMK is actively being developed and there are a few features that will be added to these builds if/when they are approved.

Credits