vote up 2 vote down star

The project I am currently working on requires a lot of hexadecimal numbers to be entered into the code.

I once saw a pic of an old keyboard with a hexadecimal numpad (has A-F letters on it also) replacing the normal numpad. Anyone know where I can get one of these?

flag

Where were the alphabetic characters placed in relation to the numbers? I'm curious... – McWafflestix Apr 23 at 16:02
It was two additional rows either above or below the normal numbers, hard to remember which. – Nick Whaley Apr 23 at 16:55

5 Answers

vote up 0 vote down check

Is this the one you're talking about? funky While this has a lot of "gee whiz" appeal, I have to say:

You have two hands. Use them. A-F are all reachable with the left hand on a standard keyboard while your right hand is on the num-pad. Instead of putting muscle-memory time into some arcane Hex-pad, you'll be learning to touch-type with your left hand, which has application outside your current project.

Better yet, come up with a smarter way of getting the hex codes into your code. Write a script that extracts them from your data-source and into your code as symbolic variables... or whatever.

EDIT

Ok, I'll give you the benefit of the doubt. Lets assume you're working on a hardware project and need to provide a specialized interface for your user. Maybe a programmable keypad would fit the bill?

link|flag
vote up 1 vote down

I have an old Heathkit learning toy with a hex numpad because the only way to program it was to assemble code by hand (it came with a 6800 manual and some notepads) into the online monitor. This was actually fun!

Heathkit picture showing Hex-keypad

Mine is missing the 'D' button however.

link|flag
vote up 4 vote down

If you can get your hands on one of the retired space shuttles, they have one!

alt text

alt text

link|flag
Shouldn't the A-F keys be UNDER the 7-8-9 row? – Outlaw Programmer Apr 23 at 20:12
@Outlaw Programmer, I dunno. Ask NASA. They probably ran a $10 million dollar usability study on why having A-F on the top was better. ;) – Simucal Apr 23 at 20:26
vote up 0 vote down

Great idea with the programmable keypad. I think i am going to pick up one of these: DX1 input system. Works for any reconfiguring I might want to do.

link|flag
If it's a good idea, you could vote my answer up, or even mark it as the answer :) The pellets encourage good behavior. – veefu May 6 at 17:57
vote up 0 vote down

Not sure of the specifics right now, but I'm pretty sure you can easily write a keyboard remapper. You could remap the QWASDF keys to ABCDEF in order to type them more quickly. That way you could use 2 hands to type. Or if you are in control of the program they are being typed into, you could just translate the keys in code on the fly. You also might want to try out the Microsoft Keyboard Layout Creator

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.