Moving Speakers To Mix Audio Tracks

These speakers play different audio tracks depending on which orange square the sit atop. They’re RFID aware and the orange tiles are tags. If you get tired of a track just move the speaker to a different one, or place the speakers next to each other to play the same song. We’re sure there’s a project for us here, it’s just going to take some thinking to figure out what we want to do with it. But the concept is certainly intriguing. Check out the video demonstration after the break.

Continue reading “Moving Speakers To Mix Audio Tracks”

Composing Music With The Force Trainer

In the ongoing quest to make the Force Trainer useful [Hunter Scott] developed a music composition platform for your mind (channel Jack Black’s voice for the last half of that sentence). Using the Force Trainer’s serial port [Hunter] feeds the data stream into a computer via an FTDI cable and uses Processing to make the music. It’s good, and the demos on his site are worth the click, but we still can’t get enough of the shocking video from back in March. But we digress, let [Hunter] walk you through his setup in the video after the break. Continue reading “Composing Music With The Force Trainer”

Keep Tabs On Your Car Without OBD-II

[Steve] let us know about his MultiDisplay car monitoring system. Unlike traditional systems that rely on interfacing with the OBD-II protocol and existing car computer, the MultiDisplay uses an Arduino and custom shield with a combination of sensors; including temperatures, pressures, throttle, Boost, and etc. The data collected can then be displayed on a 20×4 LCD or streamed to a PC with visualization and event recording.

It’s nice to see half a years worth of work finally be complete and presented in such a clean and professional manner, keep up the good work [Steve]

RC Truck Source For Robotics Platform

[Michael] sent us a link to his RC robotic platform. He started with the same RC toy as the iPhone Robot (CAR) but ended up with a blank slate waiting for more features. What he has is an Arduino with a motor driver, three bump switches for the front and rear, and a XBee module.  On the other side of things he used a SparkFun USB to FTDI connector to interface another XBee module with a PC in order to use Processing.

In the clip after the break you can see the motor control needs to have more fine-tuning done so the beast isn’t just out of control when running. But there’s a ton of potential here. It should not be a problem to add at lease rudimentary video feedback from the device. The Arduino is currently only being used marginally, leaving plenty of space to add on-board sensing such as IR, proximity, or light.

It’s a clean start, we expect to see updates! Continue reading “RC Truck Source For Robotics Platform”

(Mini) Earthquake In Your Living Room

Today we stumbled upon [jimthree’s] Seismic Reflector while looking at projects that employ the Processing language we mentioned a few days ago. Utilizing a Boarduino and some vibration motors from a game controller, the Seismic Reflector does just as its name implies – rattles itself around whenever there is an earthquake. While this does seem a bit silly at first, we were fascinated to learn there have been 165 earthquakes just in the past week and almost no news reports, suddenly this device got a lot more interesting!

3D Magnetometer Mouse In Processing

FFB4SV5G0SD7J7G_MEDIUM

[etgalim] works in Solidworks extensively and wanted a more intuitive way of rotating objects onscreen. To do this, he created a mouse that responds to rotation. He put a 3D compass module inside an old mouse and wired it up to an Arduino. The Arduino then relays the I2C sensor data to the computer. So far, he has a Processing script that uses the mouse to rotate a cube, but eventually he wants to write a Solidworks plugin. It’s a bit shaky, and we think it would be a bit smoother (and cheaper) if he used gyros like the jedipad. Video after the jump.

Continue reading “3D Magnetometer Mouse In Processing”

Barcode Scanner In Processing

barcode_sc

Reader [Nikolaus] decided that instead of using an existing image based bar code decoder, he would write his own. Using the Processing language he created a scanner that parsed the black and white pattern when a bar code was centered on the image. His code then parsed that data and compared it with the initializing character to provide a reference. Currently his scanner supports three character sets of the Code 128 encoding, and provided his complete code so that others could add as they see fit. He admits that the code is a bit messy due to the lengthy character tables, but very straight forward.