· 19 min read

Splitboard: the bluetooth split keyboard

Designing and building a splitkeyboard from hardware to firmware!

Designing and building a splitkeyboard from hardware to firmware!

TLDR: I wanted a wireless split keyboard, so I made one. This post outlines the process.

elanorLogo

Introduction

2021-06-21

Mechanical keyboards are somewhat of a dated concept that has gathered some speed in more recent years. Back when computers were first coming out for the public, keyboards had mechanical connections that would allow a current to activate a switch. Then as economics got wind, somehow we got used to membrane keyboards; virtually every office in the world has these membrane keyboards. Compared to mechanical keyboards, membrane keyboards feel more &ldqu ;mushy”. In contrast, mechanical keyboards may have different feel based on the springs or whether the key switch has a noticeable “bump”. They can be clicky or not; the possibility are wild now.

A few years ago I started following the subreddit on mechanical keyboards. Back then, the community had little options and cherry still had patents on the switches. Cherry MX keys were virtually found in every commercial keyboard on the market. Now, the landscape has changed quite a bit and

Why do I prefer mechanical keyboards? Mechanical keyboards make it fun to type. Membrane keyboards are fine to type on, but they aren’t fun. Generally my fingers get tired after typing on membrane keyboards as the keys feel a bit mushy, i.e. you get no relief when pushing down a key and the key press does not feel crisp.

After following /r/mechanicalkeyboards for a while, I decided to build my own keyboard. Within the community, there is a wide variety of switches and shapes of keyboards available. The one I wanted, an orthonormal keyboard, wasn’t commercially available. Plus I liked the idea of building my own keyboard. In my work, the keyboard is my primary tool and why not key a custom version of it for myself. I ended up building 2 handwired versions of 65 percent with 85 switches in a grid layout. In addition, I modded a MagSafe-inspired cable to it which allowed it to be nice and portable. After every build I told myself : “ This is the last one I will build.

Enter this blog, where I again tell myself this is the last one I build!. What changed? Since I learned about split-style keyboard, I always wanted one. The keyboards I had made so far weren’t. Split would be completely ergonomical, but unfortunately, none (that I know of) exists that are both (a) wireless and (b) split. As always I aimed to high and wanted to emulate the many features that QMK implements. Most importantly, I wanted to get back into writing more low level languages like c++, and I take this project as a nice opportunity to get into c++ again, and work with micro-controllers.

This post will serve as my log for building the keyboard. The post will updated as I work on it.

Core feature targets

  • Split wireless keyboard
  • Hot swappable key sockets
  • Portable, not a full keyboard
  • Battery control
  • OLED display
  • Rotary encoders

Outline

The keyboard is split; it has two halves. The right and left half will have most of the same base functionality. Most importantly, each half needs to scan the matrix to obtain which keys are being pressed. One of the halves will act as a server, the other will act as a client. The server will need the following capabilities

Server abilities

  • Read matrix
  • Setup a bluetooth connection
    • HID Device
    • Mouse emulation
  • Setup connection with client
    • Merge keys pressed and send to bluetooth controller
  • Control LEDs on both client and server

Client abilities

  • Read matrix
  • Find server and send pressed keys to server

Due to the heavier load of the server, I prefer to make the role of who is server and who is client dynamic. That is, with some heuristic (for example deep sleep), the roles may switch to prolong batter life of both units.

To give a course overview consider the following picture:

Code base overview

Overview of the different components of the code base and how they interact.

ESP32

2021-07-12 I opted for a micro-controller as this would allow me to prototype without worrying about my electronic skills. The controller needed to have battery control, bluetooth, and preferable an energy efficient screen; I ended up with an esp32.

The esp32 is a hybrid chip that has both Wi-Fi and bluetooth capabilities. The esp32 consists of different versions that varies in (mainly) in the number of pins, battery connector, and or screen. The version I ended with (LORA-V2) had a battery connector and a tiny OLED screen.

The ecosystem of ESP32 is well-developed albeit less convenient than its arduino counterparts. Luckily, the opensource community has taken it upon themselves to provide lots of arduino bindings to the libraries by espressif (manufacturer of esp32).

Especially important (as it turned out later) is that the esp32 has the capabilities of using both Wi-Fi and bluetooth low energy simultanaously. In addition, through ESP-NOW, different eps32 modules can form a mesh, which I will harness to do server-client communication.

Pin-out ESP32 LORA-V2

Pin-out ESP32 LORA-V2

For prototype 1, the following pinout was used

pinuse
13row 2
12row 3
14row 4
27row 5
26column 6
25led input
0row 1
18column 1
23column 2
19column 3
22column 4
21column 5
17rotary encoder A
5rotary encoder B

Pin 4 could still be used as a modulated pin for measuring the battery.

Matrix scanning

2021-07-12

A keyboard matrix scanning circuit is used to enhance the number of keys, while keeping the number of pins low. A micro-controller uses general pin input/output (GPIO) to register currents. If a singular key switch is wired to a single pin, 96 pins would be needed for a 104 sized keyboard (full-size). This would be unpractical.

As an alternative one could apply matrix scanning. In this method, the keys are wired as a grid where each column connects to each row effectively forming a switch. For a total for 100 keys, one would need 10x10 grid. The grid acts as a force multiplier for the number of switches. Instead of needing 100 separate keys, we merely need 10 rows and 10 columns (20 pins) to wire our 100 switch keyboard.

The matrix is repeatedly scanned to determine if a row column form an open circuit. That is, if a key switch is pressed down, current can flow between the row and column. The scanning occurs at a high scan rate, making it seemingly instantaneous.

Ghosting

Matrix scanning forms an excellent idea to efficiently represent our electronic switches. However, merely scanning does not correctly records all key presses. Under some conditions, a matrix can record ghost keys, i.e. keys that are registered but not pressed. This process is called ghosting.

Ghosting occurs when current can freely flow between separate rows or columns due to another row/column being open. For example consider a simple two row, two column keyboard. This board can support 4 keys. When two keys along the diagonal are pressed, we register 4 keys(!). This is obviously wrong and needs to be corrected. The most common approach is to put a diode right after the switch either on the columns or rows, which prevents current from traversing and causing ghosting.

Ghosting example

Ghosting example. Ghosting occurs when current can flow freely across columns and rows. (Left) one key is pressed down bottom left. (Middle) A key across from the first is activated which causes ghosting (right); current flows from the second row, first column to the second row, second column etc.

Key debouncing

Key debounce is a mechanism to filter out erroneous key activity. When two metal plates come into contact, the signal does not form a clean square wave. In order to clean up this signal, key debouncing is used to reflect the “press” of key switch. Initially I used a simple time filter, i.e. ensuring that the keyswitch was pressed down between x ms. This ended up being a bit noisy with the switches I was using; I ended up writing a digital filter that worked fairly well.

Changes

  • Added matrix class
    • added matrix scan
    • added key debounce
    • added (whole) matrix debounce
      • filters out erroneous key presses

ESP-Now

2021-06-19

The two halves need to communicate to each other. There is only one half that is connected through bluetooth to another device. We call this the server, and the other the client. Keys pressed on the client needs to be communicated to the server which processes the keys, and sends it over bluetooth. Luckily, ESP-now offers a mesh interface we can utilize for this purpose. This is easier to setup than a bluetooth mesh interface and should be relatively secure for foreign attackers. From the website we read:

ESP-NOW is yet another protocol developed by Espressif, which enables multiple devices to communicate with one another without using Wi-Fi. The protocol is similar to the low-power 2.4GHz wireless connectivity that is often deployed in wireless mouses. So, the pairing between devices is needed prior to their communication. After the pairing is done, the connection is secure and peer-to-peer, with no handshake being required.

Mesh interface class

The mesh class is responsible for:

  • Setup / deinit the ESP-now connection
  • Holding a buffer that is sent over the ESP-now connection. The buffer holds information that needs to be communicated between each halves.

At the moment of writing, the mesh class holds a static buffer which holds `keyswitch_t`. These are structs containing when the last time the pins were read as active. In addition, it contains information on the source and sinc pins, and column and row indices. These last two are used to index into the final keymap on the server side. This way, no actual key information is send, but the server reads the key from the col and row, then they are combined. This solves the issue of sending ascii shifted codes or media keys.

Changes

  • Implemented mesh interface class
  • Added server capabilities to join the keys from both half and communicate through bluetooth

Replacing ESP now with BLE mesh

The current consumption of esp now is too high to reliable use on battery. By replacing ESP now with a BLE alternative, the current consumption can be reduced by 50 percent. ESP offers a novel BLE mesh functionality which may serve as a replacement for ESP now.

  • What functions does BLE mesh have?
  • BLE mesh can send 11 octets (88 bits) of information. This is significantly less than 250 of esp now(!).

Modifier keys

2021-07-26

My initial implementation measures the onset of keys. That is, debounce worked by measuring when the square wave of the key was pressed. This allows for fast and accurate detection detecting key press down. Initially my intentions was to merge the other keys together such that multiple keys are registered at the same time. For example, the shift key needs to register two keys at minimum to shift the ascii code around for let’s say.

Consequently, I need to both register the key press down as well as the key release; I modified the debounce mechanism to also detect the key release.

Changes

  • Change key detection. Register key press and key release
  • Mesh buffer management is moved out of the keyboard class.
  • Fixed wrong indexing in reading the active keys on the server.

Bluetooth

Bluetooth is rather complicated. The Bluetooth Keyboard class takes care of most of the heavy lifting. Key codes have an associated ascii code, these are put into an ascii code map. Note that the over bluetooth (for whatever reason) these keycodes are remapped to different numbers.

Changes

  • Expand this section with info on characteristics and services.
  • Figure out how the key codes are organized The symbols are organized in a 128 ascii keymap containing the hex codes to a symbol. Hex codes can be send directly in addition to normal strings over bluetooth. The modifier keys in combination with some media control keys are defined in “BleKeyboard.h”, the ascii map is in BleKeyboard.cpp. I have written a short wrapper in “key_defintions.hpp”.
  • Add functions for interfacing with bluetooth to the keyboard class
    • Pressing down keys
    • Releasing keys
  • Convert config class to static class
  • [-] Write layer keymap for keyboard
    • Wrote qwerty base layer
    • Add fixed array check to the layers (add to constant config class steps)

Keyboard layers

A layer is implemented as a 2D vector for the moment, but will likely change in finalizing the keyboard. An active layer is set as a pointer to the current active layer. Each keyswitch has information on where in the grid they fit; keys are read by using these indices in the 2D vector. I did consider an unordered_map use the keyswitch directly as an indicator. This could then be combined with pointers to make a layer dynamic, i.e. instead of having the concept of layers, each key has a different layer that can be accessed. This adds some complexity and I decided against this. The main reason is that the client side would then need to store information on what each keyswitch points to. This would increase communication between each halves if modifiers are used for example. I am afraid that this added communication is not as trivially solved, i.e. one needs to send modifier key across ESP-NOW and then shift all affected keys and when activated send this information back. The ESP-NOW channel is not designed for high information throughput.

The keyboard is not going to be full size. That is, purely based on the number of keys, this keyboard will not be able to have a 1-to-1 mapping from symbol to keyswitch. Luckily, we can greatly increase the number of symbols on the keyboard by hosting the missing symbols on different layers. This means we have to implement a feature that allows one to switch between different layers. For example we may implement a layer up and layer down key, or allow to switch directly between different layers. In QMK is worked out by an enum struct. Layers are stacked on top of each other. This has the added feature of allowing a &ldqu ;transparent” key to access on a layer below. I wish to emulate this feature.

I currently host my key layer as a 2d vector. In finalizing my build this may change to a fixed array size. As vectors can be arbitrary sized, I need to add a check to the vectors to not allow uses to define oddly sized arrays (which would lead to seg faults). This will be added to the finalized checks.

In QMK layers are enum type, which means the layers are number and tracked through an int. Here, I will have an active\_layer which points to the layer\_t hosting the current active keys. With transparent keys I can imagine that this approach will not work.

Changes

  • Implement key layers
    • KC_TRANS accesses key below the current layer
      • This effect may stack until a non-transparent key is found
      • Layer switch keys
        • Up and down
      • Hold layer switch key: similar to modifier keys, these keys temporarily shift the key layer while holding down this key.

Rotary encoder

The keyboard has two rotary encoder (one on each halves). The encoders I added were mostly as a gimmick, but can be used as slider controls for volume control and or scrolling.

Encoder schematic and signal

(left) Schematic rotary encoder. The A and B pin are 90 degrees out of phase and produce a quadrature signal (right). In the rest state both A and B pin register 0. The quadrature encoding for the A and B pin are given in encoder_scheme.

The rotary encoder has two pins that are shifted 90 degrees out of phase (see figure fig:encoder). Each click produces a quadrature signal that is fixed. Unknowingly I bought encoders that are extremely noisy (KY-040). When the encoder clicks, contacts are moved across a terminal. The signal produced are ideally two square offsets by 90 degrees. In practice however, the signal debounces and produces more signal. They are three traditional ways of taming noisy signals

  1. Hardware filtering
  2. Digital filtering
  3. Decoding

I don’t know much about the first method or last method. I initially tried method 2, i.e. measuring the pins, waiting for some time and measure again. This however did not correctly measure the rotations. I tried multiple libraries that used interrupt routines that did not end up correctly measuring the clicks of the encoder. Finally I found [this blog post (https://www.best-microcontroller-projects.com/rotary-encoder.h ml) which highlighted exactly the problem with the KY-040. The decoder method worked like a charm, but took some time to figure out. Below is the exploration I had trying to figure out how this code worked.

Taming the KY-040 with decoding

The quadrature signal per click produces a fixed output for either clockwise or anti-clockwise rotation. The encoder can be thought of as a fixed state machine that moves between different states (table_transition).

Current state New state Direction
A pinB pinA pinB pin 
1101clockwise
0100clockwise
0010clockwise
1011clockwise
1110anti-clockwise
0111anti-clockwise
0001anti-clockwise
1000anti-clockwise

In practice however, a noisy rotary encoder will also output some state transitions that are not allowed, e.g. 11->00. In order to correctly read which direction the rotary encoder was turned in, a digital filter can be used. A simple filter would be something like

A signal is only read if the integer value reaches the all ones state, then resets and waits again. Trying this method did not end well for me. I ended up using sequence decoder; the pattern are listed in #encoder_scheme.

We can group the current state and new state as a 4 bit number, i.e.where,are the current state of the A and B pin and,are the new state of the A and B pin. This implies that 2^4 = 16 state transitions are possible and we only allow for 8 of these to occur (see table table_transition).

state (bit mask)AllowedDirectionState
0000False 0
0001Trueclockwise1
0010Trueanti-clockwise2
0011False 3
0100Trueclockwise4
0101False 5
0110False 6
0111Trueanti-clockwise7
1000Trueanti-clockwise8
1001False 9
1010False 10
1011Trueclockwise11
1100False 12
1101Trueclockwise13
1110Trueanti-clockwise14
1111False 15
BitmaskHexDirection
0001 01110x17clockwise
0010 10110x2banti-clockwise

Changes

  • Add rotary encoder to keyboard class

LED driver: FastLED

I generally don’t care for LED under keyboard. However, as this was a “bigger” project, I decided to play around with LED support. Different LEDs types are possible, I ended up going with the SK6812 which offer RGB support and are generally easier to hand solder than the popular WS2812(B). After purchasing however, I turned out that finding a LED driver posed to be a bit cumbersome. I tried a few different code bases and they ended up not working out the box. Not sure why. After some searching, I stumbled on the library FastLED. The documentation does not explicitly support the SK6812. The git issue page, however, showed that there is some support for it. In addition, some of the example code had mentions of it. Anyhoozle, after some tweaking around (and some ugly soldering) I achieved:

Happy days! The LED driver was one of the last parts of the list, which means that the end is in sight! The coming week I will integrate the driver with the keyboard class and check the box below.

Changes

  • LED driver
    • Initialize LED driver
    • Make LED wrapper in keyboard class

OLED Display

Changes

  • Start creating interface for display management
  • Find interesting functions to put on the screen
    • WiFi notifications?
    • Keyboard status info
      • Keyboard layer info
      • Battery level info

Deep sleep

When not in use I aim to put the keyboard in deep sleep. Some pins on the esp32 can be used to wakeup the keyboard from deep sleep. The RTC_GPIO pins and Touch pins can be used for waking the device from deep sleep. The RTC pins are

RTC PinGPIOComment
RTC GPIO12GPIO02had issues with encoder
RTC GPIO10GPIO04OLED SDA
RTC GPIO15GPIO12 
RTC GPIO14GPIO13 
RTC GPIO16GPIO14 
RTC GPIO13GPIO15OLED SLK
RTC GPIO09GPIO32input only
RTC GPIO08GPIO33input only
RTC GPIO04GPIO34input only
RTC GPIO05GPIO35input only
RTC GPIO00GPIO36input only
RTC GPIO03GPIO39input only
RTC GPIO06GPIO25 
RTC GPIO07GPIO26 
RTC GPIO17GPIO27 
RTC GPIO11GPIO00button pin(?)

The set GPIO12/13/14/25/26/27 could form a set for which all the columns or rows will have a key that is connected to deep sleep; this would mean either the rows or the columns are connected to a pin that is reachable from deep sleep. I will have to run some experiments if that could allow the keyboard to wake up from deep sleep, i.e. if the the column or row is not active I wonder if the the current will be low, i.e. if the pins are in deep sleep and a small current is tested on the active pins (set above), does the current go from HIGH to LOW? Alternatively, I could connect the pins to the set 3x range only for deep sleep mode.

There are two sleep modes; light sleep and deep sleep. For light sleep the internal state of the system is preserved, which is not the case for deep sleep. This would mean that for deep sleep the keyboard effectively reboots.

There are 4 ways to wake up from deep sleep:

  1. External current
    1. Either through ext0 or ext1 wake up
  2. Touch pins
  3. Timer
  4. ULP co-processor.

I aim to be able to wake up the keyboard from any regular key presses. That is, after some time-out, the user need not press a button. Instead, a control signal will monitor if some current changed and then reboot the device. Method 1 would be suitable if the pins are directly connected to ground. With the matrix scan setup, there are not enough pins to measure a current difference if one of the keys in the matrix would be pressed. Method 3 is also not suitable as the input to the keyboard does not happen at a fixed time interval. Method 4 requires coding for the ULP co-processor. This requires knowledge of assembly which I do not have. I think it is possible that this would reduce the deep sleep current even more. However, in the end it still utilizes the RTC pins.

Luckily, my keyboard will only require 5 + 6 = 11 pins. There are in total 10 touch pins which would make this a possible target if they work. Initial testing shows that a touch wake up would work with a touch threshold of 45. This would require either the columns or the rows to be hooked up to the touch sensors. By monitoring any current change of the rows or columns would result in the board to wake up from sleep (which is ideal).

Changes

  • ✅ Implement deep sleep
    • ✅ added deep sleep time-out to config
    • ✅ Touch pins will be either rows or columns
    • ✅ Test matrix scan diodes with deep sleep feature, i.e. does deep sleep current still register with row2column or reverse connection.
    Share:
    Back to Blog

    Related Posts

    View All Posts »
    Why are criminals so succesful?

    Why are criminals so succesful?

    Dive into the complex world of organized crime with insights from complexity science and witness criminal behavior through the interactive simulation.