Satellite Tracking By Shining A Laser Into Space

[Shingo Hisakawa] sent in a tip for a for a neat little box called the Levistone that tracks the Internation Space Station with a laser. His video log goes though all the steps for this great little project.

[Shingo] originally planned to pull orbital data down from NORAD and send that to an ArduinoBT board with ethernet, GPS and compass modules. In the original plan, the Arduino would do the orbit calculations and point the laser using a few servos. There wasn’t much success with making an Arduino do all the work, so the an Android phone stood in for the GPS, compass and connection to the web. The duty of calculating the location of the ISS using GPS and orbital elements was moved onto the Amazon EC2 cloud. The final product looks great, even if it’s impossible to record the beam for the video.

With the ability to calculate the azimuth and elevation of the ISS from any point in the world, [Shingo] came up with SightSpaceStation, a neat mashup of his data and Google Maps. There are also iOS and Android apps for a nice piece of work in augmented reality. It’s a great project that would really compliment the ISS desk lamp we covered a few days ago.

Forearm-mounted GPS Uses LEDs To Light The Way Home

arm_mounted_gps

While some people can rely solely on memory and landmarks to find their way home, others need a bit more help. Consider Instructables user [_macke_] for instance.

Like other screenless GPS navigation devices we have seen, his “Find Home Detector” uses a GPS module to obtain his location, guiding the way home via a set of alternate indicators. In this case, he uses LEDs which are laid out like a compass rose. When [_macke_] is aimed toward his destination, the LED nearest to his fingertips lights up, letting him know he is on the right path. As he turns away from home, the other LEDs light, indicating the direction in which he should turn.

His forearm-mounted GPS navigator uses a LilyPad Arduino to control the system, much like others we have seen. It is connected to a GPS sensor and a compass module that work in concert to guide him home. The compass is responsible obtaining his heading information, and while it might look as if the LEDs that surround the module are pointing North, they are in fact indicating the heading of his destination instead.

It’s a cool little creation, and we can imagine it would be quite helpful if you happen to be walking home after a long night of drinking.

Be sure to check out the video below for a quick demonstration.

Continue reading “Forearm-mounted GPS Uses LEDs To Light The Way Home”

ChipKIT Sketch: Mini Polyphonic Sampling Synth

In our hands-on review of the Digilent chipKIT Uno32, we posed the question of what the lasting appeal might be for a 32-bit Arduino work-alike. We felt it needed some novel applications exploiting its special features…not just the same old Arduino sketches with MOAR BITS. After the fractal demo, we’ve hit upon something unique and fun…

Continue reading “ChipKIT Sketch: Mini Polyphonic Sampling Synth”

Capturing Video With An Arduino

[Carlos Agell] sent in a tip where he captured images from an analog camera with an Arduino.

We’ve seen a few AVR/Arduino hacks that generate video, although overclocking is necessary if you want to do anything beyond a Breakout clone. [Carlos]’ hack bucks that trend and now he can capture video with an Arduino.

The project captures individual frames from NTSC video at a resolution of 128×96. Although the Arduino isn’t powerful enough for real-time capture, [Carlos] managed this by capturing only thresholds and sending them over to a computer running a program coded in LabVIEW. The PC program reassembles the images of the thresholds and produces a tiny image in 3-bit grayscale.

[Carlos] used the Video Experimenter shield which is impressive in it’s own right. The Video Experimenter is able to do object tracking and edge detection, so we’re wondering when we’ll see robots with computer vision running off an Arduino. Check out a demo of the nootropic design video experimenter shield after the break.

UPDATE: Carlos wrote a sketch in Processing that does the same thing as his LabVIEW program.

Continue reading “Capturing Video With An Arduino”

Arduino Hits The Battlefield — For Real

We’re not sure if this is the first time, but here’s some pretty solid proof that Arduino has found its way into the weapons of war. The creators, [Derek Wales], [John Eischer], and [George Hopkins] are all Electronics Engineering majors at West Point. They came up with this idea after seeing video footage of a firefight in Afghanistan where combat soldiers were calling in artillery strikes using a compasses and GPS devices. It’s an all-in-one unit that can provide the same information quickly and accurately. The prototype above, which they call the DemonEye, contains a laser range finder, digital compass, and a GPS module. The article also states that it contains a mini-computer but we recognize that as an Arduino Mega (thanks to Miguel over at Areopago 21 for noticing this first and sending in the tip about it).

The prototype apparently comes in at $1000. Okay, it seems a bit high but not out of the ballpark. What we can’t understand is how the second generation of devices was billed out at $100,000 for five more units. What’s the going rate for laying out military-grade PCBs?

Million Volt Guitar Rocks The House…for Science!

science_brothers_tesla_hero

[Bill Porter] and his friend [Dan Flisek] work together to put on a science-related educational stage show called “Science Brothers”, in which the pair try to convince school children that their field of expertise is the cooler science. While the two are competitive on stage, the main goal of the program is to get kids interested in science, no matter what the specialty.

The pair currently finance the project out of pocket, so they are always looking for ways to make things interesting while also keeping costs in check. With that in mind [Bill] came up with an awesome way to show off the Tesla coil he built a while back. His most recent educational creation is a little something he calls “Tesla Hero”.

Since he already had a solid state Tesla coil hanging around, he dug up a PS2 Guitar Hero controller and got busy getting the two acquainted. The guitar connects to the coil via a fiber optic isolator board, playing one of five notes as he strums along. A series of Arduino-driven LED strips adorn the guitar, flashing various colors while he plays, as you can see in the video below.

It’s quite a cool project, and we’re sure that his audience will be impressed!

Stick around to see a video of  Tesla Hero in action, and if you’re interested in learning more about the Science Brothers, be sure to check them out here.

Continue reading “Million Volt Guitar Rocks The House…for Science!”

Precision Frequency Measurement Library For 8-bit Microcontrollers

[Paul] has been working on porting over Arduino libraries for use with the Teensy microcontroller platform. This tends to be pretty simple since they both use the same Atmel chip architecture. But once in a while he finds the Arduino libraries are not what they’re cracked up to be. When looking to port over a frequency measurement library he ended up writing his own that works better and is much more portable.

He had two big beefs with the Arduino Frequency Counter Library. The first is that it required the compensation factor the be calibrated using an accurate frequency counter. That’s a chick-and-egg problem since many people who build a frequency counter with an Arduino are doing so because they don’t already have a standalone tool. The second problem is that the Arduino library was hardcoded for ATmega168 or ATmega328 chips.

This new library fixes both issues with just one trade-off. Your hardware setup must be using a crystal oscillator. You can see above in the image above that the frequency measurement is quite accurate with this method. The package also uses a thin abstraction layer which will make it easy to port to any 8-bit microcontroller which is programmed in C.