Reuse That PDA As A WRT Terminal

[Michu] used his old Palm IIIc to make a serial interface for his OpenWRT router. It’s a matter of cracking open both the router and the Palm device, then connecting the TTL lines from the router to the MAX 3386e level converter chip inside the Palm. From there, Pocketterm can connect to the router’s serial terminal.

A lot of us have old electronics lying around that work perfectly well. It’s nice to find hacks that make them useful again.

[Thanks Isama]

Hacking The MindFlex, More!

[vimeo http://vimeo.com/10184668%5D

Reader [Eric] sent us a powerfully informative, yet super simple hack for the MindFlex toy. Don’t worry, it’s not another worthless shock ‘game’, And it’s using an actual interface instead of the built-in LEDs.

With two wires for the serial protocol, and an Arduino, you’ll be able to view “signal strength, attention, meditation, delta, theta, low alpha, high alpha, low beta, high beta, low gamma, high gamma” brainwaves. While it’s not medical grade, it’s a lot more intuitive than previous interfaces.

The original intent was for a system called MentalBlock, but we’re wondering what would you do with brainwave data?

Update: 50MHz To 100Mhz Scope Conversion

Changing this 50MHz Rigol oscilloscope into its larger, more expensive brother just became quite a bit easier. When we originally looked at this hack it required pulling some capacitors off of the board. Now all it takes is three commands over a serial terminal connection.

Take a look at the walk through video after the break. You’ll see that there’s one chip that needs to be setup differently to change the functionality. Removing capacitors was actually changing the commands sent to initialize that chip at power-up. Now you can just change the model number and one letter of the serial number via a terminal and the firmware will recognize this as the more expensive DS1102E.

Continue reading “Update: 50MHz To 100Mhz Scope Conversion”

RFID Reader For IPhone

[Benjamin Blundell] built an RFID reader for the iPhone. A jailbroken iPhone connects to this project box by patching into a standard iPhone USB cable. Like in past iPhone serial projects, [Benjamin] is using openFrameworks for the software interface. Right now this reader only detects low-frequency tags but he’s working on the code to read MIFARE tags as well. See the magic of a tag ID displayed on the screen in the video after the break.

Continue reading “RFID Reader For IPhone”

LED And Fan Controller

Needing a front fan to keep his hard drive cool, [CalcProgrammer1] found he was unhappy with a single LED color for the fan. He swapped them out for a set of four RGB LEDs and whipped up his own controller board for the unit. It is based around an ATmega168 and patches into the COM2 header on the motherboard, providing a serial interface. [CalcProgrammer1] wrote a GUI to control fan speed, and individual LED color settings. You can take a look at and enthralling, edge-of-your-seat demonstration of how slider controls work after the break. Wouldn’t it be great if the HDD LED clock could be adapted to use a fan so that the front panel had a colorful analog dial on it? Continue reading “LED And Fan Controller”

WRT54GL, Meet Alice

When it comes to routers, there is one that is hacker’s favorite, the WRT54GL. But a slightly lesser known company, Pirelli with their “Alice Gate2 plus Wi-Fi”, seems to be a popular choice among our Italian friends.

[Esteban] has done everything from installing serial and parallel ports, to unlocking firmware while installing Debian. Our personal favorite is the creative wiring of an additional USB port, where he had to custom create a power circuit to run his webcam and external drive.

[Thanks Marco]

[Update: It would appear Roleo, Beghiaro, and Zibri did the actual grunt work at ilpuntotecnicoeadsl and Esteban simply wrote the guides. Thanks for your hard work and hacking skills guys!]

Oscilloscope Doubles As A Serial Terminal

PC-based USB oscilloscopes are fast becoming all the rage. [Matt Sarnoff’s] Terminalscope takes the reverse approach, adapting an oscilloscope into a full serial terminal. You may have seen something similar before in the Dutchtronix/SparkFun O-Clock, but [Matt’s] project goes one further by adding a PS/2 keyboard port for full bidirectional serial communication, and with much sharper display resolution to boot.

The mostly VT-100 compatible Terminalscope is built around two AVR microcontrollers: an ATmega328P runs full-tilt to generate the video signal and handle serial I/O, while an ATtiny45 handles keyboard input to avoid interrupting the ’328’s duties. Rather than vector trace each character, a raster-scanning approach is used: the beam follows a fixed X/Y path (like a television), while modulating the Z input (beam intensity) to form an image. The device can be connected to a PC via serial port or USB-to-TTY adapter, or directly to another microcontroller to debug serial output.

We recently showed an oscilloscope being used as a multichannel digital logic display. The Terminalscope provides yet another use for this essential bench tool and could nicely round out a “poor man’s” testing setup. The schematic and full source code are available for download.