Accidentally published before and don't have admin privileges to delete the repository... This is a keyboard that uses chording. It requires five fingers on one hand (designed for left) along with one right finger. It uses binary representation with five buttons to cover 29 unique gestures (27 letters of the alphabet, space bar, and backspace). I made this so that I could manipulate some parameter with my hand while being able to still manipulate other equipment (such as knobs on a distortion box).

Dependencies:   USBDevice mbed

Fork of USBKeyboard_HelloWorld by Samuel Mokrani

Committer:
samux
Date:
Mon Nov 14 11:45:01 2011 +0000
Revision:
2:24dad6de0713
Parent:
1:291a88a2c151
Child:
3:8b56768ceca2

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
samux 1:291a88a2c151 1 #include "mbed.h"
samux 1:291a88a2c151 2 #include "USBKeyboard.h"
samux 1:291a88a2c151 3
samux 1:291a88a2c151 4 //LED1: NUM_LOCK
samux 1:291a88a2c151 5 //LED2: CAPS_LOCK
samux 1:291a88a2c151 6 //LED3: SCROLL_LOCK
samux 1:291a88a2c151 7 BusOut leds(LED1, LED2, LED3);
samux 1:291a88a2c151 8
samux 1:291a88a2c151 9 //USBKeyboard attached with led bus
samux 1:291a88a2c151 10 USBKeyboard keyboard(&leds);
samux 1:291a88a2c151 11
samux 1:291a88a2c151 12 int main(void) {
samux 1:291a88a2c151 13 while (1) {
samux 1:291a88a2c151 14 keyboard.mediaControl(KEY_VOLUME_DOWN);
samux 1:291a88a2c151 15 keyboard.printf("Hello World from Mbed\r\n");
samux 1:291a88a2c151 16 keyboard.keyCode('s', KEY_CTRL);
samux 1:291a88a2c151 17 keyboard.keyCode(KEY_CAPS_LOCK);
samux 1:291a88a2c151 18 wait(1);
samux 1:291a88a2c151 19 }
samux 2:24dad6de0713 20 }