Perks

Keyboard Hacks.

Monday 15 May 2017. USB keyboards.

If you want to get into hardware hacking then these easily available input devices are a great place to start. People will give them to you for free. They can be connected to almost any computer.

The keyboard controller handles a large number of switches by using a matrix wiring layout. The keyboard contains two plastic sheets with conductive tracings: 8 lines on the top sheet and 18+ on the bottom sheet. Wires can be soldered to the controller board or simply contact connected by using the pressure bar.

In this example a matrix of 2 by 4 wires is used to connect 8 switches on an Atari gaming dock. The switches are registered as keycodes by the computer via USB. They can be used to control animation movement in Scratch or other programming languages.

The time-consuming task is working out which wires connect to specific keys: I hope you are good at tracing mazes! There are no standard layouts. A contact tester is useful for checking the connections but the resistance may be higher than you expect.

This is where I started my research. As usual, the comments and supporting links are as useful as the main article.

Tuesday 16 May 2017. Custom buttons.

Anything with push buttons can be modified to link to the keyboard controller.

This is the inside view of a hand-held card game. You can see that buttons here are also arranged in a matrix: this means that 10 buttons can be controlled by only 7 wires. I sketched a grid to work out the matrix so now I just need to decide which keyboard lines to connect. I plan to use a wireless keyboard controller to complete this hack if I can make enough space in the case.

The buttons in this unit are discrete from the circuits but in some instances you may need to cut circuit traces for the buttons to register correctly. I had to cut traces in the Atari dock example above.

Tuesday 16 May 2017. Using the leds for output.

Wouldn't it be great if we could use the keyboard for output as well as making custom input devices?

Following some research:
Quick keyboard hack to control heavy loads
I can now switch on my compact camera via the Scroll Lock led wired to an opto-isolator. Not surprisingly, output requires operating system specific coding so I concentrated on using the linux command xset for my first tests.

Just having control of the keyboard leds is fun. Scroll Lock is usually available but it may be necessary to make all leds accessible to xset using the following steps.


xkbcomp $DISPLAY myconf.xkb

Edit myconf.xkb to allowExplicit in the indicator blocks. Save file and load $DISPLAY with edited details. You can just reload from the myconf.xkb file in future sessions.


xkbcomp myconf.xkb $DISPLAY

If working in a shell give access to the xsytem with set DISPLAY=:0 You may need to startx first if running headless.
The leds are numbered:
Caps Lock = 1
Num Lock = 2
Scroll Lock = 3
To send a pulse to trigger the camera power switch I use:


xset led 3;sleep 1;xset -led 3

Works from ubuntu on VirtualBox aswell.

Wednesday 8 May 2019. Tidying up.

In preparation for a talk about my work at Stafford RaspberryPi Jam, I have reconfigured the wireless keyboard controller to provide navigation keys suitable for controlling a powerpoint presentation. I have also added a socket to test input switches such as a reed switch or optical sensor: this connection returns the tilde (~) keystroke. The controller board is fitted inside the handheld unit, just.

I have provided a socket in the keyboard body to help neaten the output connections.
I have also discovered some Python script to control the key locks on Win10 as well as Linux.


import keyboard
import time

keyboard.press_and_release('num lock')
time.sleep(1)
keyboard.press_and_release('num lock')