Motion Sensing Camera Hack

[youtube=http://www.youtube.com/watch?v=xlTyCymEM9g]

Researchers at the University of Liege have developed an algorithm to separate movement from background. They call it ViBe and this patented piece of code comes in at under 100 lines of C. Above you can see the proof of concept shown by hacking the code into CHDK, a Canon PowerShot alternative firmware. The package is available for non-commercial use and might be just the thing you need to get your project to recognize where it needs to serve the beer.

[Thanks Juan via Slashdot]

Arduino Based Multiboot Cable For Game Boy Advance

[Steve] wanted to do some ARM development and set his sights on the Game Boy Advance as a development package. In order to get his code onto the device he build an Arduino-based communications cable. It is necessary to have a microcontroller involved because the GBA uses a peculiar 16-bit serial communications protocol. This cable is an adaptation from the 8051-based cable developed by [Matt Evans] several years ago. [Steve’s] got it working by porting the 8051 assembler over for the Arduino, but we’d recommend adding a level converter to his hardware setup to step down from the Arduino’s 5v logic to the 3.3v logic the GBA expects.

He didn’t make up a wiring diagram, but in the code comments [Steve’s] laid out the connections as follows:

Arduino 8 to GBA SO
Arduino 9 to GBA SI
Arduino 10 to GBA SD
Arduino 11 to GBA SC

That’s it, follow the README in his source code package and you’re on your way to some ARM development.

Ditch The LPs And Build Your Own 3D Scanner

Find yourself an old record player, a laser level, and a digital scanner and you can build a 3D scanner. That’s what [Rob] did. The camera and laser level are mounted on the turntable for steady rotation. The camera captures the vertical laser line traveling around the room by recording 30 fps at a resolution of 640×480. This data is then translated into a Blender 3D file via a Python script and the Python Image Library. You can scan a whole room or just a small object. The face above is the result of this image capture after a bit of processing. [Rob] found this worked best in the dark and when scanning surfaces that are not reflective.

Make sure you also check out the camera-and-projector scanning method.

Google Summer Of Code 2010

Today’s the day the Google announces this year’s participant organizations in the Google Summer of Code. If you’re not tied down to a job this summer we hope you’ll take advantage of this opportunity to learn by doing and contribute code to a great open source project all at the same time.

A lot of our favorite software has benefited from GSoC in the past. XBMC has participated before, as well as WordPress, Asterisk, MySQL, Bluez, Natural User Interface Group, and many more.

Student applications are accepted between March 29th and April 9th. If you’re accepted in the program and excel at your work with passing grades at mid-term and final project dates, you’ll see your pockets grow by $5000. Get out there and put your mad coding skills to good use while you have the chance.

ARM Cortex-M3 Prototyping On A Budget

NGX Technologies sent us this Blueboard LPC1768-H to play with. It’s basically a breakout board for an NXP LPC1768 ARM cortex-M3 microcontroller (datasheet). The board adds a few extra goodies, such as a choice of mini-USB connector or barrel-jack to provide regulated power to the chip. There’s also a clock crystal for the internal RTC and an Atmel 256kb EEPROM chip. This chip has 70 I/O ports, accessed through the pin headers on top and bottom of the board. The 20-pin header to the left is for a JTAG programmer (yes, you’ll need a separate programmer). Coming in at only $32.78 this is a very accessible route for projects that require more power than some of the traditional hobby controllers. The shipping seems to have come down since NGX’s last offering, now it would be under $10 to ship to the States.

The LPC1768 is the same controller from the mbed that we reviewed. What’s missing is some of the interface hardware and the boot-loader, but the tradeoff comes with a $66 savings. This is to mbed what an AVR board is to the Arduino, a way to get even closer to the hardware.

There are a few things we think are missing. Most notably, there isn’t a datasheet or user guide for the board itself.  The only information available is a schematic (PDF), but that should be enough for those already well versed in working with microcontrollers. There is also a 12MHz clock crystal on the board but it doesn’t seem to be jumpered in case you wanted to use a different frequency. We’re not sure if this is much of an issue, the internal RC oscillators offer a lot of flexibility including operation up to 100MHz.

We feel this is a solid platform that will help to get more people into ARM development because of its low price. Let us know your thoughts in the comments.

Arduino Balloon Tracking

The Ferret is a high-altitude balloon tracking hardware package. Created by [Adam Greig] and [Jon Sowman], it uses an Arduino to gather NMEA data from a GPS unit, format the data into a string, and transmit that string on narrow-band FM. The project, built in one afternoon, is a tribute to the prototyping simplicity the Arduino provides.

The unit was powered by four AA batteries, using the Arduino’s on board voltage regulator. This provided a bit of heat which helps in the frigid reaches of the upper atmosphere. The bundle above was put in a project box and attached to the outside of the balloon’s payload, then covered with foam for warmth and moisture resistance. This tracking is a lot less complicated than some of the photography setups we’ve seen for balloons. It’s also more versatile because it broadcasts the GPS data so that many people can track it, rather than just logging its location.

Quad-copter Controlled With Voice Commands

[youtube=http://www.youtube.com/watch?v=7nUq28utuGM]

In the video above you’ll see two of our favorite things combined, a quad-copter that is voice controlled. The robot responds to natural language so you can tell it to “take off and fly forward six feet”, rather than rely on a cryptic command set. The demonstration shows both an iPhone and a headset used as the input microphone. Language is parsed by a computer and the resulting commands sent to the four-rotor UAV.

This makes us think of the Y.T.’s robot-aided assault in Snow Crash. Perhaps our inventions strive to achieve the fiction that came before it.

[Via Bot Junkie]