A Day At The Lake For The Disabled

We do a lot of useless hacks just for the fun of it so when we see something with purpose it’s pretty exciting. This hack turns any kayak into a motorized vessel that can be controlled by a quadriplegic person using a sip & puff interface. After the break you can see some clips of navigation and an explanation of the hardware.

[Mark’s] system starts by adding outriggers to a kayak to prevent the possibility of the boat rolling over in the water. Each pontoon has an electric trolling motor attached to it that is controlled by an Arduino via a motor driver.

The Arduino takes navigational commands from a sip & puff controller. A straw in the operator’s mouth allows them to sip or puff for a split second to turn left or right. Longer sips or puffs control forward and reverse incrementally, up to a top speed of about 3.7 miles per hour. [Mark] incorporated an auxiliary remote control interface so that a safety observer can take control of navigation if necessary.

His build came in around $1300, a tiny cost if this makes kayaking available to several people each summer. Great job [Mark]! Continue reading “A Day At The Lake For The Disabled”

Arduinome With Many Pots

[Aggaz] added 16 potentiometers to his Arduinome.The Arduinome is a monome clone based around the Arduino as a microprocessor. We seen some Arduinome builds in the past but [Aggaz’s] work augments the physical interface.

Potentiometers used in circuit bending allow for manipulation of the sounds coming out of the circuits. In this case the pots are connected to the microcontroller instead of the sound generation circuitry which means you can do whatever you want with them depending on how creative you are with the code. So far he’s just starting to get the new set of interfaces to play nicely over the serial connection. This could end up being quite popular as it only requires the addition of a multiplexer IC, the potentiometers, and the knobs.

Weather Clock

[Sean_Carney] build this clock that tells the weather instead of the time. The two hands display the current conditions and the temperature. Forty below zero seems amazingly cold if you’re on the Fahrenheit scale but [Sean’s] from Winnipeg so he’s operating on the Celsius side of things.

Two servos move the hands to match the data scraped off of the Internet. An Arduino does the scraping with the help of an Ethernet shield. This reminds us of the Harry Potter clock that tells a persons location.

[via Flickr]

Spy On Your Office

[Garagedeveloper] sent us his custom surveillance system, part 1, part 2, and part 3 after needing a way to find out why some cables at work were becoming unplugged (spoiler, the cleaners were messing up the wiring). At the base of the system is a web cam glued to a stepper motor. However, it gets much more in depth with a web front-end that allows the user to stream the feed and control the position of the stepper. We’re not particularly fond of how many different parts the project takes, while it all could be accomplished under C# with ASP.NET and parallel port library instead of including Arduino and excess code, but to each their own and the project turned out a success anyway.

Max/MSP Accelerometer Beat Control

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

[Ryan] let us know about his Max/MSP Controller. Inside the device is an ADXL 335 accelerometer and 6 push buttons wired to an Arduino. The input data is sent to Max MSP, a sequencer controlling 5 audio tracks, correlating to 5 of the buttons. The 6th button controls delay. What we really liked was how the accelerometer modified the speed of the beat in the X-axis, and the delay intensity with the Y-axis. Whats next? We think gesture recognition might be something fun to try, but [Ryan] is unsure. We’ll keep you up to date.

Arduino I/O Speed Breakdown

[Jee Labs] has worked out how long it takes for an Arduino to perform various I/O operations. Predictably, analogRead() takes the longest, followed by analogWrite(). Arduino really falls behind when it comes to digital pin I/O: digitalWrite() takes a whopping fifty times longer than a direct bit write to a port register!  This is something to take into consideration when you are looking to do some beefy I/O with an Arduino. Perhaps this I/O performance will be addressed in the future with Arduino 1.0.

Arduino Security With Frickin’ Laser

[over9k] used his Arduino to set up a laser trip wire. The laser is mounted along side the Arduino, reflects off of a mirror, and shines on a photoresistor that interfaces via a voltage divider. The signal from the voltage divider is monitored for a change when the laser beam is broken. [over9k] set things up so that a webcam snaps a picture of the intruder and Twitters the event for easy notification. Video after the break walks through each of these steps.

This build is a bit rough around the edges but unlike other laser trip wires this keeps all the electronics in one place. The laser interface could be a bit more eloquent, and we’re wondering just how much current it is pulling off of the Arduino pins. But if you’re bored and have this stuff on hand it will be fun to play around with it. Continue reading “Arduino Security With Frickin’ Laser”