Toyaanisqatsi: Time Lapse Control Using LEGO Parts

[youtube=http://www.youtube.com/watch?v=Fm1fFQfGc9M&feature=player_embedded]
A simple panning motion can add impact to the already-dramatic effect of time lapse photography. To accomplish this, frugal cinematographers sometimes build [Rube Goldberg] contraptions from clock motors, VCR parts or telescope tracking mounts. Hack a Day reader [Stephan Martin] has assembled a clever bargain-basement system using an Arduino-driven stepper motor and a reduction gear system built up from LEGO Technic parts, along with some Processing code on a host PC to direct the show.

While the photography is a bit crude (using just a webcam), [Stephan’s] underlying motion control setup might interest budding filmmakers with [Ron Fricke] aspirations but Top Ramen budgets. What’s more, unlike rigid clock motor approaches, software control of the camera mount has the potential for some interesting non-linear, fluid movements.

Arduino Email Alert

email

The Arduino makes a great platform for alert systems because it doesn’t need additional parts, other than an LED or motor. [Torchris] made email notifier, and used an Ethernet shield to make it standalone. The Arduino polls your POP server seeing if there are unread emails. POP is an incredibly simple protocol, even simpler than HTTP; this made it easy to communicate with, even with little processing power. He hopes to add a servo or serial display to present the data better, but his current system seems to work well. Video of it in action after the break.

Continue reading “Arduino Email Alert”

Variable Range Sprinkler

[vimeo http://vimeo.com/6409575 w=470&h=352]
[Pete], a musician, and the guy behind SparkFun’s pogobeds and locking footprints has a sprinkler hack. He wanted to keep his dog, Choppy, happy with a green lawn while also keeping his sidewalk water free. To solve this problem, he hacked his sprinkler and hose to adjust the sprinkler’s range. He uses an Arduino to read a potentiometer signifying the direction that the sprinkler is facing and a servo to adjust a hose valve that controls the sprinkler’s water flow. Be sure to check out the video above to see it in action.

Arduino Muon Detector

100_0627

[Sebastian Tomczak] was borrowing a homeade muon detector from his friend, and managed to hook it up to his computer through an Arduino. The detector itself uses 3 fluorescent tubes to detect radiation. Three separate tubes are used in order to filter out terrestrial radiation; cosmic radiation will fall in-line with the tubes and pass through at least two of them, whereas terrestrial radiation will only hit one. There is some basic circuitry to amplify the signal and then perform the OR operation.

[Tomczak]  used an Arduino to take the raw data and feed it into his computer. He then used Max/MSP to analyze the data and filter out background noise, leaving only the cosmic ray data. He didn’t mention what he was going to use the data for, though. Maybe he’ll hook it up to a synthesizer.

Related: Digital Geiger counter

[via @littlebirdceo]

Simple Automatic LED Lamps

simple_led_lamps

[woody1189] put together some automatic lighting for his closet. Nine LEDs are grouped into three lamps and controlled by a hall effect sensor. He prototyped this on an Arduino and then migrated over to an ATtiny85. Although the current implementation could be accomplished without a microcontroller, we’d love to see some firmware improvements such as an auto shutoff for when you forget to close the closet door. The hall effect sensor seems to pop up in a lot of projects so make sure you get a few of them with your next parts order. Video of this in action after the break.

Continue reading “Simple Automatic LED Lamps”

BrewTroller Brewing Control System

BrewTroller_2.4__4a70af85574f3

BrewTroller is an open source brewing control system based on the Sanguino. Targeting home beer brewers, this project gathers some of the best features from other DIY brewing controllers and packages them into a hardware and software setup so it’s accessible to those without the skills to design their own. It can interface with 4 heat controllers, 32 pumps/valves, 6 temperature sensors, 3 volume sensors, and 1 steam pressure sensor. The system displays information through a 4 line LCD. It can be used to monitor and maintain temperature during mashing, boiling, and chilling. If you have a more advanced setup that involves automatic valves, it can control those for you with almost limitless reconfigurability through every step of the brewing process.

We thought it was pretty hard core that at least some of the kits shipped with hand made PCBs. At the very least, it shows that it is possible to make this board yourself with the provided PCB layout.

[Thanks Julius]

Arduino PH Meter

phduino_v02_PIC_0050

[Carlos] sent us his project that uses an Arduino as a pH meter. In order to sense the acidity or alkalinity of a solution, a glass electrode is connected to the ADC of the Arduino through a fairly complicated calibration, amplification, and filtering circuit. Admittedly, it may not be cheaper or as accurate as some commercial models, but it is an open project and can be interfaced with a computer via USB.