Skip to content

zdimension/usbrawmap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

usbrawmap

Easy way to assign actions to keyboard scancodes ignored by the USB keyboard driver on Windows.

Example use case

Sun Microsystems Type-6 Unix USB keyboard

This is a Sun Microsystems Type-6 Unix USB keyboard. It looks like your regular old QWERTY 102-odd key keyboard, but it's got a whole 11 keys on the left that you may not recognize. These keys were used on Sun's workstation OSes (e.g. Solaris) and are still recognized by most Unix-family OSes nowadays (including Linux), though they aren't usually assigned to anything.

Problem: Windows's built-in USB HID keyboard driver ignores scancodes it doesn't recognize and doesn't pass them to userland applications. This means that these keys are, for all intents and purposes, unuseable on Windows.

This is where usbrawmap comes in: it uses USBPcap to tap into the raw USB packet stream and detect key presses on those special keys, and performs customizable actions at each key event.

Usage

  1. Download the latest release and extract the .zip somewhere (for example in C:\usbrawmap).

  2. Install USBPcap from its official website. You may need to reboot your computer.

  3. Run C:\Program Files\USBPcap\USBPcamCMD.exe as administrator, you'll see something like this: image

  4. Search for your keyboard in the list. Here, 3 root hubs are displayed, and only the third one really contains devices, so the right hub is number 3.

  5. Change the general.driver setting in usbrawmap.toml accordingly, for example by default the file contains:

    # Configuration file for Sun Type-6 and Type-7 keyboard
    
    [general]
    driver = 3 # use file \\.\USBPcap3
    
    ......

    If the hub containing your keyboard was number 1, you'd edit the file so it contains:

    # Configuration file for Sun Type-6 and Type-7 keyboard
    
    [general]
    driver = 1
    
    ......
  6. Launch usbrawmap as administrator (right click, Run As Administrator) in the folder containing the configuration file. You should see this: image

  7. If the program started correctly, the config file has been loaded. Ensure the keys work as expected. Close the program.

  8. Open the Task Scheduler (Win+R, taskschd.msc), use the sidebar on the right to create a task. Give it a simple name, like "usbrawmap", check "Run with highest privileges". In the "Actions" tab, add an action. Set the "program/script" field to "powershell.exe" and the arguments to -noexit -WindowStyle hidden -command ".\usbrawmap.exe". Set the "start in" field to the directory containing usbrawmap.exe (the installation directory). In the "Conditions" tab, uncheck both checkboxes under "Power". In the "General" tab, make sure the "Run only when the user is logged on" box is checked. Save.

  9. Open the "Startup" directory (Win+R, shell:startup), right click, "New", "Shortcut". As the target, write schtasks.exe /run /tn yourtaskname, with the name of the task you created. Run the shortcut, check that the keys are working. Now, the program will start when the computer is powered on.

Customizing mappings

The configuration file (usbrawmap.toml) uses the following format:

[mappings.SCANCODE]
type = "keys"
keys = ["CONTROL", "O"]

[mappings.SCANCODE]
type = "program"
path = "notepad.exe"

SCANCODE is the USB scancode for the key, with a full list available here.

The key names (CONTROL, ...) must be in the VK format, with a full list available here.

The provided configuration file contains mappings for the Type-6 keyboard shown above, but in practice any scancode can be mapped.

Note: to refresh the configuration file, kill the process (usbrawmap.exe) using the Task Manager, and start it again through the shortcut in shell:startup.

License

This project is licenced under the MIT license.