Race Car POV LED Displays

race_car_pov

Last year, when [Alex] was asked by his friend [Martin] to help him out with building some LED POV modules for a race car, his response was a enthusiastic “YES!”

[Martin’s] goal was to involve fans more deeply in the race, so he decided that the POV modules would carry messages from fans on-board, printing them in the night as the race cars screamed around the track. The pair started prototyping and testing a design, wrapping things up shortly before this year’s 24 hours of Nürburgring.

The modules consist of an Arduino-compatible AVR, a GPS module, a 16-LED light bar, and the circuitry for driving the LEDs. While most of the components are pretty standard fare, the we don’t often see a GPS sensor built into a POV display. [Alex] says that the sensor is used to calculate the speed of the cars, ensuring a uniform font size.

They took their LED displays to the 24 hours of Nürburgring, where they were invited by Audi to install the modules on a pair of R8 Le Mans race cars. As you can see by the pictures on his blog and Flickr set, the POV units worked out nicely without having to stretch the camera exposure times too far.

If you’ re interested to hear a bit more about how the displays were built, check out this entry in[Alex’s] blog, where he goes through some additional details.

Update:[Alex] pointed us to the videos!

GPS Lap Timer From Secondhand Parts

gps_racing_lap_timer

Hackaday forum member [nes] was training for an endurance race, and rather than having someone verbally call out his lap times, he wanted something he could keep in-vehicle to help keep track of his performance. With the race budget running dry, he and his teammates needed something cheap, if not free, to get the job done.

He scored a “broken” GPS receiver on eBay for a measly £4 and found that the receiver worked, but corrupted software prevented the unit from mapping routes. Since he didn’t require routing functions to keep track of his lap times, he splayed the GPS receiver open and started hunting around for a serial bit stream. He found what he was looking for after a bit of probing and hooked it up to his computer to see if the data contained NMEA sentences.

He cut the receiver down to the necessary parts and then started work on the lap timer itself. The timer uses an ATMega32 to run the show, displaying relevant time and location information on an LCD panel he scavenged from the trash bin.

He admits that the wiring is a bit questionable, but says that after about seven hours of rough use, everything is still intact and working great.

GPS Without GPS

Open Electronics just released a neat little board that can place you on a map without using GPS.

The board works on the basic principles of a cellphone network – the ‘cell’ network is a series of towers that are placed more or less equidistant to each other. Save for the most desolate parts of the country, a cell tower usually communicates with a phone one or two miles away. Usually, several cell towers can be seen, so the position of a cellphone can be pinpointed to within 200-350 feet. Translating cell towers to latitude and longitude is easily done by querying a Google database that was created for the mobile version of Google Maps.

The board itself is a PIC18 microcontroller and a SIM900 GSM module. The firmware available at Open Electronics is pretty impressive – all communication to the board is handled through SMS and the phone can report it’s location to 8 other phones.

It’s pretty impressive to think the same technology that caught [Kevin Mitnick] is now available to the masses. We’re wondering what Hack a Day readers would use this for, so if you have an idea leave a comment.

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”

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?

Adding GPS To A Viewsonic G-Tablet

gtablet_gps

The hackers over at the xda-developers forum always seem to have something awesome brewing, and [fosser2] is no exception. He bought himself a Viewsonic G-tablet, but was a bit disappointed in its lack of a GPS module. He pried the tablet open in hopes of finding a spot where he might be able to cram one in, and was happily surprised at what he found.

It turns out that either Viewsonic had plans to include a GPS module and scrapped them, or they are planning on adding GPS to a future SKU. The tablet’s mainboard already had a spot laid out for the module, as well as the GPS antenna. He carefully soldered in a compatible module from Digikey, and then got to work adding the various other components required to get it working properly.

While the hack doesn’t require that you add a ridiculous amount of parts to the board, you had better make sure your soldering skills are up to snuff before giving it a shot. Those who can’t reliably solder SMD components should probably stay away from this one.

[via Engadget]

I2C Arduino GPS Shield

i2c_gps_shield

[Wayne] wrote in to share an item he just finished working on, an I2C GPS shield for the Arduino. While other GPS solutions have existed for quite some time, his caught our eye due to its feature list.

The shield removes a good bit of the hassle associated with parsing raw NMEA data from traditional GPS addons. While you have the option to communicate with the GPS module over serial in order to obtain the raw data, the use of the I2C interface makes getting the most commonly used GPS data a breeze. The GPS module itself can be set to update at anywhere from 1 to 10 Hz, and [Wayne] says that the I2C bus blows away the oft-used 9600 baud serial interface. While I2C is primarily used for receiving data, it can also be utilized to configure the GPS via its control registers, allowing for on the fly settings tweaks.

While he does sell the units pre-assembled at a competitive price, [Wayne] also provides a full schematic, making this an easy afternoon project once you have sourced the proper components.