VFD 430 Clock, NYC Style

[Daniel] seems to have a lot of time on his hands for building clocks, and that’s fine by us. For his latest build, he used a vacuum fluorescent display (VFD) to display hours, minutes, and seconds using an MSP430 to drive it.

Like the analog meter clock he built recently, there is no RTC. Instead, [Daniel] used the 430’s watchdog timer to generate 1Hz interrupts from the 430’s 32KHz clock. [Daniel] wanted to try Manhattan-style board construction for this project, so he built each module on a punch-cut stripboard island and super glued them to a copper-clad board. We have to agree with [Daniel] that the bare-bones construction is a nice complement to the aesthetic of the VFD.

[Daniel] set out to avoid using a VFD display driver, but each of the segments require +50V. He ran through a couple of drawing board ideas, such as using 17 transistors to drive them all before eventually settling on the MAX6921 VFD driver. The +50V comes from an open-loop boost converter he built that steps up from 12V.

The time is set with two interrupt-triggering buttons that use the shift register example from TI as a jumping off point. All of the code is available on [Daniel]’s site. Stick around after the break for a quick demo of the clock.

Continue reading “VFD 430 Clock, NYC Style”

Tetris Duel With The Raspberry Pi

Tetris Duel

Building a multiplayer network game with multiple Raspberry Pis can be very difficult. Doing it in assembly is outright insane! This is exactly what a group of first year students at Imperial College London did; they created a network based multiplayer Tetris game for the Raspberry Pi.

[Han], [Piotr], [Michal], and [Utsav] have created this entire game from bare metal assembly, and it only consists of 4000 lines of code! The code is well documented, so be sure to look through their Github repository. This project is a great reference for those looking to learn bare metal assembly and networking. They even chose to use the old NES controllers, a very nice touch. While we have featured what seems like a million different Tetris games in the past, this is the first multiplayer version. See Tetris Duel in action in the video after the break!

This is a shout-out to all of you students out there. Take the time to create quality documentation for your class project, and upload it to the internet. Not only is it a great resume boost, but it could very well end up on Hackaday!

Continue reading “Tetris Duel With The Raspberry Pi”