Posts Tagged ‘arduino’

Public bus transportation notifier

Friday, April 16th, 2010

bus-notifier.jpg

Knuckles904 at Random Hacks of Boredom was tired of waiting for the bus. His town had installed GPS units on the buses so that riders could track their locations via the Internet so he knew there should be a way to avoid the wait while also never missing the bus. He developed a sketch for an Arduino to check the bus location and notify him when it was on its way.

This method saves him from leaving his computer running. It parses the text data from the public transportation website and updates both an LED display, as well as a Twitter feed. Now he can monitor several different bus lines via the hardware at home, or though a cell phone if he’s on the go.

This guy have done a useful tricks and provides some sources to make this project works. Well done!

Arduino balloon tracking

Friday, March 19th, 2010

The Ferret is a high-altitude balloon tracking hardware package. Created by [Adam Greig] and [Jon Sowman], it uses an Arduino to gather NMEA data from a GPS unit, format the data into a string, and transmit that string on narrow-band FM. The project, built in one afternoon, is a tribute to the prototyping simplicity the Arduino provides.

The unit was powered by four AA batteries, using the Arduino’s on board voltage regulator. This provided a bit of heat which helps in the frigid reaches of the upper atmosphere. The bundle above was put in a project box and attached to the outside of the balloon’s payload, then covered with foam for warmth and moisture resistance. This tracking is a lot less complicated than some of the photography setups we’ve seen for balloons. It’s also more versatile because it broadcasts the GPS data so that many people can track it, rather than just logging its location.

Courtesy: Hackaday

Keep tabs on your car with Multidisplay

Wednesday, March 17th, 2010

161020092229.jpg

Stumble upon 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 an Arduino based open source display for interesting measurand´s of a car hosted on Google Code.

Courtesy: Multidisplay via Hackaday

Home Automation with ez430

Tuesday, February 9th, 2010

Now that the protocol for basic communication with the TI chronos ez430 has been worked out (see previous posts) I needed to work on something useful. So I set out to try and control my wireless light switch with the watch. Sadly the RF receiver supplied with the chronos does not use a protocol which is likely to ever be compatible with the arduino so this example requires a computer.

courtesy: chemicaloliver

HOW-TO - Connecting the Nokia 770 to Arduino

Sunday, December 14th, 2008

dsc_0019.jpg

dsc03223.jpg

IDEO labs shows you how to connect the Arduino to the Nokia 770-

In the vein of Arduino-controlled espresso machines and Lego bots, we’ve been playing around with Flash and the Nokia 770 Internet Tablet. With its flexible Linux-based OS, the Nokia 770 is great for rapid prototyping. Plus, you can snag one on the cheap ($65-170 on eBay).

Hardware aside, Flash is a great language for quick prototyping. It’s an environment that many designers are already familiar with, and it enables the user to create a graphic interface in minutes. For prototyping on small screens, Flash Lite can be used, but Flash Lite cannot communicate to other devices outside of the device it’s running on (aside from calling other phones). The Nokia Internet tablets are interesting because they are essentially tiny Linux computers and run full-fledged Flash. We got one of these tablets to run Flash and talk to an Arduino board. This enables any kind of sensor to communicate with the Flash application and allows the app to control things like lights and motors.

Detailed instructions for setting this up can be found in our Google Code wiki (here and here)…

Source: Make Mag

Wireless Arduino programming with ZigBee

Thursday, November 13th, 2008

xbee.jpg

ZigBee is a low-power communication system using digital radios. It’s intended to be easier to work with than Bluetooth. Adafruit recently added an adapter board for Digi’s XBee product line and has put together a great how-to to show the devices potential. Using two XBee radios and adapters you can wirelessly program an Arduino board. This would be great if your Arduino was installed in an inaccessible area or maybe it’s over 100feet away from where you’re working. The radios do serial communication just fine. What the how-to covers is getting the reset line working so the Arduino can restart automatically after you program it. Once the radio pair is configured properly, it will pass the RTS line state directly from one device to the other.

Source: Hack a day