Keeping Tabs On Your Tabby With A Camera And GPS

cat_eye_pictures_and_gps

[Janis] has an outdoor cat that likes to roam all over the neighborhood. He was curious to see what he was up to all day, so he decided to build a small cat cam to document the feline’s comings and goings. After the cat returned one evening with a snail riding along on his back, [Janis] thought it would be pretty interesting to see where the cat was going as well.

He calls his creation “CatEye”, and it consists of a small JPEG color camera and GPS sensor, both of which are managed by what looks to be an ATMega328. The camera snaps pictures as the cat roams around, while the GPS sensor records its location throughout its travels. All of the data is stored on an SD card, making it easy to transfer the pics and .KML files back to his computer. A few clicks later, he can see everywhere his cat has been, using Google Earth.

It seems like a pretty interesting project, and we would love to see some schematics and code so that we can strap one of these on [Caleb] our cat to see where he’s been all day.

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.

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]

FBI Tracking Device Found; Disassembled

[ifixit] has apparently grown tired of tearing apart Apple’s latest gizmos, and their latest display of un-engineering has a decidedly more federal flair. You may have heard about Yasir Afifi’s discovery of a FBI-installed tracking device on his car back in October of last year. Apparently, the feds abandoned a similar device with activist Kathy Thomas. Wired magazine managed to get their hands on it, and gave it to ifixit to take apart. There’ve even posted a video.

The hardware itself isn’t that remarkable, it’s essentially a GPS receiver designed before the turn of the century paired with a short range wireless transceiver. The whole device is powered by a set of D-sized lithium-thionyl chloride batteries which should be enough juice to run the whole setup for another few decades–long enough to outlast any reasonable expectations of privacy, with freedom and justice for all.

Simple AVR Based GPS Tracker

The latest project from Lucidscience.com is a simple AVR based GPS tracker. As usual, the instructions here are quite in-depth including schematics and step by step procedures all the way down to modifying cables when necessary. What we found interesting is that the GPS module he’s using is so simple. It only requires 3 wires, one for power, one for serial communication, and one for a heartbeat.

For the microprocessor, he’s using an ATMega 324, which is a bit of processing overkill but he needed the SRAM for the GPS point storage. You could obviously expand to external storage but the goal here was to keep it extremely simple. Actually, there just isn’t a whole lot here other than the microprocessor, the GPS module, and a level converter. After wrapping up the circuit he goes on to explain how to get the data into Google Earth for display. After a few trips around the block you can see the results are quite nice.