VFD Hacking

vfd_hacking

[Mostafa] was a bit bored and had a broken DVD player sitting around, so he decided to take it apart to see what made the machine’s LCD panel tick. Once he popped it open, he discovered it wasn’t an LCD panel at all, it was a VFD.

The seven segment display looked to be controlled by an ET16312n VFD driver, so he dug around online and found a datasheet for the chip. After looking at the documentation he was pretty confident he could get things working without too much trouble. He started tracing the board for the STB, CLK, Din, and Dout leads he needed to set up serial communications with the panel and was on his way in no time.

He hooked the panel up to the parallel port on his computer, and got busy hammering out some C code to write text to the display. Right now, the code lets you scroll text across the display, which is about as far as [Mostafa] cares to take it. It was done mostly as a proof of concept exercise, but since this VFD is compliant with the same NEC programming standard that most VFDs use, his code can likely be reused to drive any similar display with very little tweaking.

Smile, Your Face Is On The Internet

[Kyle McDonald] is up to a bit of no-good with a little piece of software he wrote. He’s been installing it on public computers all over New York City. It uses the webcam found in pretty much every new computer out there to detect when a face is in frame, then takes a picture and uploads it to the Internet.

We’ve embedded a video after the break that describes the process. From [Kyle’s] comments about the video it seems that he asked a security guard at the Apple store if it was okay to take pictures and he encouraged it. We guess it could be worse, if this were a key logger you’d be sorry for checking your email (or, god forbid, banking) on a public machine. Instead of being malicious, [Kyle] took a string of the images, adjusted them so that the faces were all aligned and the same size, and then rolled them into the latter half of his video.

Continue reading “Smile, Your Face Is On The Internet”

Driving Game Steering Wheel Controller Without The Wheel

For some reason this project makes us think of the Light Cycles in Tron. You know, the bike forms around the rider after they grab onto the wand that makes up its controls? Certainly you’re not going to see a car form out of thin air, but this driving controller let you grab onto nothing to control a racing game.

You can see that it uses a Kinect to map the body of the player and convert your movements into motion control. The demo video embedded below the fold shows the calibration step, followed by the available control options. Pushing the steering wheel forward turns on the nitrous, leaning forward or back accelerates and brakes, and a few arm signals let you navigate the game menus.

This works by mapping gestures to keystrokes. [Rajarshi Roy] tells us that there’s a very raw code package available in their repository but the plan is to clean it up this weekend. They will also work on a Wiki, documentation, and a tutorial on teaching the software new gestures.

We just don’t know what we like better, seeing the kinect extended as a gaming controller like this one, or using it in robotics like that quadcopter.

Continue reading “Driving Game Steering Wheel Controller Without The Wheel”

Playing Chess On A Microcontroller

[Arthur Benemann] started a little project for his electrical engineering program, and suffered the worst case of feature creep we’ve ever seen. He just posted an instructable of his picChess project that is able to play chess on a VGA monitor with a keyboard, with sound, a clock, temperature sensor. Apparently, [Arthur] was bored one evening and threw in an implementation of Conway’s game of life.

[Arthur] chose a DSPIC33F μC for his project with everything laid out on a bread board. He’s quite proud of his VGA routine, the first time he’s ever used DMA. We’re really impressed by [Arthur]’s chess engine – his is the first homebrew chess engine we’ve seen on Hack A Day. Although the engine is a brute-force search with Alpha-beta pruning, the engine itself seems fairly advanced that will even supports castling.

Although a few rules aren’t supported and the ELO rating of the engine isn’t known, [Arthur]’s engine should still be able to beat an amateur player. A fairly impressive feat indeed.

Check out [Arthur]’s video after the break.

Continue reading “Playing Chess On A Microcontroller”

Moisture Control For A DIY Greenhouse

greenhouse_moisture_controller

[Clover] loves plant biology, and tends a small garden while she is at home during breaks from college. She says that her family is notoriously unreliable when it comes to caring for plants, so she decided to construct a greenhouse to ensure that her garden will still be around the next time she comes home.

With her raised bed garden built and her seeds planted, she started work on the greenhouse itself, which was constructed using PVC pipe and clear plastic sheeting. Satisfied with how the structure came out, she focused on the greenhouse’s watering system and moisture sensors. The watering system uses solenoids that are connected to a pair of Arduino regulated relays. The Arduino uses moisture sensors constructed from nails, triggering the water flow when things get too dry.

The controller along with its LCD status panel was mounted inside a bird house to protect it from the elements while keeping in line with the house’s decor. [Clover] seems pretty happy with the build, but we suspect she will be adding some temperature and regulation at some point, to facilitate longer growing cycles.

Check out the video below for a quick tour of her setup.

Continue reading “Moisture Control For A DIY Greenhouse”

Propeller-based Robot With Basic Object Avoidance

propeller_development_robot

The Parallax Propeller is a pretty powerful MCU as [Dino] recently discovered in his latest Hack a Week installment. He wanted to build a simple robotics platform that he could use for testing out various sensors, and he figured he might as well learn about a different type of micro controller in the process.

He pieced together his robot using a pair of old Roomba motors he had sitting around, mounting them on a standard RadioShack project box. A Propeller MSR1 control board runs the show, and a Propeller PING sensor is used to get an idea of what the robot’s surroundings look like. He is an admitted newbie when it comes to using Propeller micro controllers, but [Dino] was able to give his robot some rudimentary object avoidance abilities fairly easily. A few small bugs aside, he had the robot up and running in short order, a testament to how easy it is to work with the Propeller platform.

Stick around to see a brief video covering the robot’s construction we have embedded below.

Continue reading “Propeller-based Robot With Basic Object Avoidance”

MB LED Is Next Generation Of LED Video Block Puzzles

Meet MBLed, a set of interactive 8×8 LED tiles. Put them next to each other and they will orient themselves into a video screen which is the sum of the parts. If this sounds familiar it’s because we’ve seen the concept before in the GLiP project. [Guillaume] tells us that MB Led is the new version of GLiP and from what we’ve seen they’ve made a lot of progress.

The hardware is well designed. A PCB hosts the STM32 microcontroller and a pair of pin headers which receive the RGB LED matrix module. A pair of AA battery holders make up the legs for the device. Each has infrared receiver/emitter pairs on each of the four edges and constantly polls for its neighbors.

What really impresses us is the algorithms they’re using for communications. FreeRTOS runs on the ARM processors, and a series of messages was developed which allow the blocks to elect a leader, and follow its commands via the distributed system. Check out more about those algorithms on the page linked above, and join us after the break to see the demo video.

Continue reading “MB LED Is Next Generation Of LED Video Block Puzzles”