NES Controller Gets A Rumble Pak

Add some feedback to an original NES controller by making it vibrate. This feature is often known as Rumble Pak, a controller add-on for the Nintendo 64 which vibrated as a game feature. This version adds a small DC motor (in the upper right) with a screw soldered off-center to the motor shaft.

[Andy Goetz] and his friend built this as a robot controller, taking advantage of the latch and clock pins. Normally, nothing happens while both pins are held high, a signal that they easily patched into using an AND gate. This is actually a neat find, as the addition of an internal microcontroller could add bi-directional communication when the latch is high and the clock is strobed.

Bicycle Hub Hydropower

[Niklas Roy] wanted to create electricity from moving water so he came up with this hyrdopower generator. It is part of his grand scheme to rent out small personal fountains made from buckets. They need electricity to run so he hooked up the generator to the water jet of a public fountain. It should be possible to use this setup with falling water in a similar way that other generators do.

To build the device he cut fins out of PVC pipe to use as the scoops. They are attached to a Shimano hub generator, meant for producing power while you pedal. The hub is mounted in the front for from a bicycle, which can then be mounted anywhere moving water is available. The only thing that worries us about the setup is [Niklas’] comment that being showered with water didn’t destroy the hub right away.

See the hub and the smaller fountains in the clip after the break.

Continue reading “Bicycle Hub Hydropower”

Hackaday Links: October 10, 2010

Old timey pics with a new timey camera

Update: We’ve already looked at this one… see the full article for all the details.

One way to get old-looking photographs is to use a vintage camera. Then again you can just connect a 1908 lens to a modern dslr with great results. [Thanks MS3FGX]

Cheap iPad mounting bracket

Need a way to hang your iPad but don’t want to spend some bucks? [Tumbleweed] used a $3 plate hanger to do the trick.

Hand engraving

You can get free laser engraving when you buy an iPhone but it won’t look as good as this does. [Viljo Marrandi] spent eight hours on this, but most of the time was spent resharpening tools dulled by the tough metal.

Let time prevent your computer from going idle

Want to keep your screen saver from running? No need to change settings, software, or use special hardware. Just set your mouse on an analog watch and let the moving hands jiggle it around. [Thanks Lovro]

Add-on Panel Brings Automated Vents Flaps To A PC

[SXRguyinMA] built a replacement top bezel for his computer case. He wanted to add vents that would automatically open or close based on the cooling needs of the computer. With some careful measurements he modeled the parts in Sketchup and sent out for them to be cut from styrene with a water jet cutter. The parts came back looking great and the assembly of the shutters went swimmingly. The bezel also includes a lighted screen for temperature information, as well as the front USB ports, headphone and mic jacks, etc. Hidden underneath is an Arduino board and servo motor. The Arduino polls the temperature and drives the servo to adjust the fins accordingly. There’s even a supercap in the circuit that will close the vents when the PC powers down or when power is unexpectedly lost. See it in action after the break.

Continue reading “Add-on Panel Brings Automated Vents Flaps To A PC”

New A4 Jailbreak Debacle Puts The Brakes On For IPad

If you’ve been waiting in the wings for the next Jailbreak to be release you should know there’s been a bit of a speed bump. [ChronicDevTeam], which has been working on an exploit for A4-based iOS devices called SHAtter, tweeted last Thursday that the fully tested, untethered, and unpatchable package knows as greenpois0n would be released today. But on Friday [Geohot], who you may remember from the PlayStation 3 Hypervisor exploit, rolled out his own mostly untested and admittedly beta jailbreak called limera1n.

So where does that leave the situation? Because [geohot] used a different exploit, the [ChronicDevTeam] decided not to release greenp0ison. If they did, it would give Apple a chance to block two different exploits. Instead they are working feverishly to incorporate, test, and repackage using the same exploit as limera1n.

If you don’t want to wait, jailbreak now, but you risk problems with an unstable exploit method that is only available for Windows.

[via @ChronicDevTeam]

Using An Arduino Or Seeeduino For Its FTDI Chip

We think of the Arduino as a rapid prototyping tool but we never thought of it as an FTDI breakout board before. [Ihsan Kehribar] wrote a quick post to show how it’s done. You’ll find an FTDI chip on Arduino boards that have a USB connector. It’s used to handle the USB communications on one side, and TTL serial communications on the other. The serial pins from the chip are mapped to the UART on the AVR chip, and in turn they appear on the pin headers for easy connections. Just load up a really simple sketch(available from Ihsan’s post) to make sure the processor doesn’t get in the way and you’ve got yourself an FTDI breakout board. If you happen to have a Seeeduino there’s even more functionality as the board has a selector switch that allows you to choose between 5V and 3.3V levels.

This doesn’t hold true to the newest generation of Arduino, as those board have replaced the FTDI chip with an ATmega8U2. That’s basically and ATmega8 with native USB handling… fancy.

[Thanks Marcus]

Pulling Data From The IM-ME Spectrum Analyzer

A small, cheap spectrum analyzer with an LCD can be a fun thing to play with. But to be truly usefully you need access to raw data, and lots of it. [Travis Goodspeed] set out to make that possible by pulling data with a GoodFET and a Python script.

He started with [Michael Ossmann’s] IM-ME spectrum analyzer, which uses a CC1110 chip. The two of them are giving a lecture at Toorcon 12 (called Real Men Carry Pink Pagers) and this will be used as a demonstration device. After studying the datasheet he found the starting RAM address and did some further work to deciphered how the data is stored in it. From there it was a matter of working out the timing for grabbing the data, and coding a method for storing it. Now he’s looking for brave souls to help him trailblaze with this newly-discovered tool. It seems that if you know what you are doing, and have abundant patience, you can use this for a bit of old-fashioned reverse engineering.