Hackaday Links: January 2, 2012

The worst computer keyboard, ever

[Gerardus] found an old BBC Master Compact computer for $15. The only problem is the computer didn’t have a keyboard. It’s not a problem if you can make a keyboard out of an old breadboard. It’s not a Model M, but it works.

Emergency ribbon cable repair

[Thomas] works in a hospital. One night, a piece of equipment went down because of a bad ribbon cable. Doctors were yelling at him to get the equipment up and running so out of frustration, he took stapler to the cable. It held up until a replacement arrived. Check out these pics: one and two.

Nobody remembers Little Nemo: Adventures in Slumberland

Here’s [Alan]’s gigantic Nautilus art car with a huge mechanical iris. Just watch the video and be amazed. We won’t hazard a guess as to how much money went into all that brass and copper, but we can confirm an Arduino controls the iris. Check out the build page.

Light up street art

[Grissini] put up an instructable for a light box that displays [Bansky] street art. We’d go with some RGB leds and a [Keith Haring] motif, but more power to ya.

A theater wind machine

This wind machine was built by [Willaim] for his High School’s choir concert. It’s basically a concrete form tube with plastic lids taped on and a piece of pipe serving as an axle. The machine makes a wind noise with the help of some nylon pants.

A Keyboard For Your FIGnition

[Carl] sent in his keyboard he made for his FIGnition microcomputer. At least now he has more than 8 buttons.

The FIGnition is a tiny little microcomputer that harkens back to the 8-bit days of yore. Designed to be an educational computer like the Altair or Heathkit (sans blinkenlights), the FIGnition gives its students ‘bare metal’ access to everything in the system. It’s powered by an ATMega168, a 4 Kb SRAM and an 8Mb Flash chip for storage. Unfortunately, the FIGnition only has 8 buttons to program Forth with, so [Carl]’s project is very much desired in the community.

To expand 8 buttons into an alpha-numeric keyboard, [Carl] came up with the solution of using two tact switches per character. The switches are of different button heights, so pressing a pair of buttons actuates the two buttons in order, which is natively interpreted by the FIGnition. It’s a perfect match for the chord-keys of the FIGnition.

Check out the video of [Carl]’s bundle of wires after the break.

Continue reading “A Keyboard For Your FIGnition”

Brute Force BIOS Hacking Using The Arduino

This clever hack uses an Arduino to do a brute force attack on a computer’s BIOS. In theory, this technique could be used for other programs, but it’s use would be limited since there’s no way to account for too many wrong passwords.

The Arduino generates and outputs the possible password emulating a USB keyboard. When this is done, the pixel in the middle of the screen is read. This is done by reading the analog red signal synced up with the corresponding horizontal and vertical pulses. As with any hack, there were some programming issues that had to be overcome (including one that locked up the keyboard emulator), but this was resolved, and the code is available if you wan to build your own.

Hardware for this build is simple, involving a LCD output, a button to stop everything, and a couple diodes to get the USB keyboard working correctly. This hack turned out quite nicely, and the code and schematics are included!

USB And PS/2 Key Loggers And Mess With Your Grammar

[Irongeek] is up to his old tricks once again with this new key logger prototype. It’s in the early stages, as attested by the breadboard built circuit, but [Adrian] still gives us a demo video after the break showing where he’s at right now. It comes in two flavors, the USB pass through seen above, or another that still connects to the computer via USB but functions with a PS/2 keyboard.

Aside from the obvious issue of a key logger stealing everything you type, there’s some prank value in this device too. The Teensy has more than enough processing power to watch what you typing and make changes as it goes. He shows off blatant rewrites, like changing “has” to “haz” or “you” to “U”. We think it would be better to change things like “they’re” to “their” or “it’s” to “its”. These would be very difficult to see happening and if you added randomness to how often the replacements occur, your victim would sooner come to the conclusion that they’re going crazy than that they’re the target of a little hazing. In fact, that’s probably the reason for our own grammar errors though the years; blast!

Continue reading “USB And PS/2 Key Loggers And Mess With Your Grammar”

Adding A Compact Flash Reader To A Korg Triton

[Roberto Barrios] has a Korg Triton sampling keyboard which he enjoys very much, but has grown tired of using media of yesteryear to store his work. He had the option of floppy disk or Jazz drive and for a time he was using a floppy-to-USB emulator, but the keyboard still insisted on a 1.44 Mb storage limit using that method. He decided to crack open the case and add his own CF reader.

It should be noted that this hack could have been avoided by using the 25-pin connector on the back of the keyboard. He didn’t want to have external hardware, which is understandable if you’re gigging–it’s just more equipment to keep track of. His solution uses the floppy disk drive opening to mount the card reader. His electrical connections are made with a ribbon cable. He cut off one end, and soldered the individual wires to the contacts on the motherboard. The reader is seen as a SCSI drive by the Korg firmware thanks to a SCSI-to-IDE adapter, so the storage limitation is based quite fittingly on the size of the CF card used.

Look at that cable management. You’d think it came straight from the factory like this!

A Wooden Computer Case, Monitor Stand, And Keyboard

Wood and electronics don’t generally mix nowadays, but if you yearn back to a time when radios and the like had a nice wooden finish, this wooden computer case may be for you. Combine that with a Wooden keyboard enclosure, and maybe even a LCD monitor stand and you’ll have a setup that should fit in with any wood-themed decor!

The wooden computer case is actually more of a cover in that it uses most of the stock case to house all of the components.  It would definitely be a pain, and possibly a fire-hazard, to make a back mounting plate for all the components out of wood. To go along with this, the LCD monitor stand was engineered for a 21″ monitor when the owner of it wasn’t satisfied with the stability of the stock stand.  In the end, he ended up building something quite sturdy and nice looking to replace it.

The highlight for many for the keyboard would be that it was made, in part at least, out of a desire for a Commodore-64 keyboard.  It appears to function well andlooks great, so be sure to check out the other pictures after the break! Continue reading “A Wooden Computer Case, Monitor Stand, And Keyboard”

Hardware-based Keyboard Remapping

[Nav] wanted to change his keyboard mapping for one particular keyboard, rather than on each operating system. He used an AT90USBKey as a replacement PCB by soldering to all of the contacts on the key matrix. This allows him to remap the keys by following onscreen prompts.

The board enumerates as an HID device, and has a special mode which is accesses by plugging the keyboard in while holding down any key. If a text editor window is active you’ll see prompts from the microcontroller to press a series of keys. This is a routine used to learn how the key matrix is organized, and it’s your opportunity to change how each key is mapped. Since the mapping is saved to EEPROM, you can use any computer to map the keys, then plug the device into a systems that don’t offer software remapping. It could also be useful as a gaming keyboard, assuming there aren’t latency issues

As with the AVR-based arcade controller, this project uses the LUFA package to handle the USB stack.