Nick Whaley
Nick Whaley

Reputation: 2799

Hexadecimal numpad

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?

Upvotes: 9

Views: 11391

Answers (6)

SingleNegationElimination
SingleNegationElimination

Reputation: 156238

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.

Upvotes: 2

Raynet
Raynet

Reputation: 463

IPv6 Buddy -keypad should work well for hexadecimal input.

http://www.ipv6buddy.com/

enter image description here

Upvotes: 6

Kibbee
Kibbee

Reputation: 66132

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

Upvotes: 0

Nick Whaley
Nick Whaley

Reputation: 2799

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.

Upvotes: 1

mmcdole
mmcdole

Reputation: 92825

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

alt text

alt text

Upvotes: 5

veefu
veefu

Reputation: 2890

Is this the one you're talking about? funky http://www.cpmuseum.com/Exhibits/Apple%20Lane/7603/7603-0005/images/000%20Front%20View.jpg 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?

Upvotes: 0

Related Questions