Gear Indicator For Suzuki Motorcycle

This little board serves as a current gear indicator for a motorcycle. It was designed with the Suzuki V-Storm motorcycles in mind as they have a sensor built into the gearbox. Other gear indicators rely on sensors on the shifters themselves, but reading the voltage level from a gearbox sensor gives much more reliable information.

The voltage measurement is handled by an ATmega88 microcontroller which in turn drives the 8×8 LED display. Also built into the system is a temperature sensor and photoresistor. The firmware takes advantage of both of these inputs, displaying temperature when in sixth gear or at the push of a button, and dimming the display based on ambient light. There are also settings for screen rotation, and user preferences.

We didn’t find schematics or software but this should be pretty easy to replicate. If you need a primer for AVR programming we’ve got you covered.

[Thanks Michal]

Playing Hacker With A Toy Vault

[Thomas Cannon] created his own hacking game by adding some circuitry to this toy vault. The original toy uses the keypad to control a solenoid keeping the door shut. He kept the mechanical setup, but replaced the original circuit board with his own ATmega328 based internals. He also added a USB port to the front. The gist of the game is that you plug-in through USB to gain access to the vault’s terminal software. If you can make your way through the various levels of admin access the loot inside will be yours.

Excuse Me, My Pinky Is Ringing

We get a lot of email challenging us to hack things. Sometimes we ignore them, other times we send some words of encouragement. But this time around we thought [Tait] had really come up with a great hack; to build a Bluetooth handset into his prosthetic finger. He hasn’t done much hacking in the past and was wondering if we could put out a challenge to our readers to make this happen. After a bit of back-and-forth brainstorming he decided to take on the challenge himself and was met with great success.

Like other Bluetooth handset hacks [Tait] started with a simple ear-mounted module. He extended the volume button with a piece of plastic and placed it under the battery. A couple of wooden matchsticks space the battery just enough so that it can be squeezed to adjust the volume level. He then extended the speaker with some wire. Next, he used the Oogoo recipe from our previous post to mold a false-finger and a thumb-ring. The PCB and battery fit in the finger, which places the microphone near a hole in the pad of the plastic pinky. The thumb ring houses the speaker to finish the look. Don’t miss the photos [Tait] sent in after the break.

Continue reading “Excuse Me, My Pinky Is Ringing”

Rendering A 3D Environment From Kinect Video

[Oliver Kreylos] is using an Xbox Kinect to render 3D environments from real-time video. In other words, he takes the video feed from the Kinect and runs it through some C++ software he wrote to index the pixels in a 3D space that can be manipulated as it plays back. The image above is the result of the Kinect recording video by looking at [Oliver] from his right side. He’s moved the viewer’s playback perspective to be above and in front of him. Part of his body is missing and there is a black shadow because the camera cannot see these areas from its perspective. This is very similar to the real-time 3D scanning we’ve seen in the past, but the hardware and software combination make this a snap to reproduce. Get the source code from his page linked at the top and don’t miss his demo video after the break.

Continue reading “Rendering A 3D Environment From Kinect Video”

In-button Display For Your Car’s Dashboard

OLED display in a dashboard button

Here’s an interesting take on augmenting a car’s dashboard. [Daniel] is using a button blank to house a 1″ OLED display in his Jetta. It shows auxiliary data such as boost pressure and several sets of temperature readings. The display itself has a tiny little circuit board with a PIC 24 to drive it. A larger board, seen above, collects the temperature data from some sensors that [Daniel] added as part of the hack. There are some pictures of the installed display inside of the dark car and it looks really easy to read. It also sounds like there’s some dimming functionality built into the firmware. This is the easiest way we’ve seen to add a display to your dashboard as it just requires you to pop out a button blank, rather than disassembling the entire console or patching into what’s already there.

Girltech. Sugar Cubes. Monocrome LCD

We’ve seen these little toys called “sugar cubes” by GirlTech around for a while now. They are a toy block, with an LCD on the front and they respond to movement, button presses and they interact with each other if you stack them up. We’re just as curious as anyone else about their internals, but maybe not quite curious enough to rush out and buy one. Luckily, we don’t have to as [Joby] has done it for us and documented what he found. While it may be lacking in extreme detail, at least our curiosity is somewhat satiated.
We can see that it has a 16×16 LCD, an unknown chip hidden under an epoxy blob as usual. To determine what character is shown, you can bridge one of 4 spots on the PCB, though he has only managed to switch to a little ninja and a question mark. Does anyone have any brilliant ideas on a project for these?

C# Portable Settings Provider

We live in a world where everything must be portable, ranging from mobile applications to making an application able to run on Linux, Windows and OS X.  Making a C# application to be completely portable across all windows computers is a problem that Microsoft knows about and willingly admits they will not fix. [Mike] from Geek Republic has taken it upon himself to show us how to hack up some code to make your programs portable.  This code is a good push forward for people loving the portability of modern applications. He will admit that bugs may exist so be on the lookout and he would probably appreciate the feedback.  Looking forward to a fully working provider so that .NET applications can be carried wherever people go!