vote up 3 vote down star
1

I'd like to start messing around programming and building something with an Arduino board, but I can't think of any great ideas on what to build. Do you have any suggestions?

flag
2  
arduino.cc/en/Tutorial/HomePage Has a lot of good examples of things that can be done, with instructions on how to do them. – Tnay Nov 3 at 19:06
1  
Need a new tag: belongs-on-roboOverflow – Ether Nov 3 at 19:12
How does this belong on SuperUser? – Chris Lutz Nov 4 at 1:04
1  
Make magazine #19 makezine.com/19 has a section on robotics projects many of which use an Arduino board. – mocj Nov 6 at 16:09

6 Answers

vote up 1 vote down

You could do one of the firefighting robot competitions. We built a robot in university for my bachelor's final project, but didn't have time to enter the competition. Plus the robot needed some polish anyway... :)

Video here.

Mind you, this was done with a Motorola HC12 and a C compiler, and most components outside the microcontroller board were made from scratch, so it took longer than it should. Should be much easier with prefab components.

link|flag
vote up 1 vote down

Path finding/obstacle navigation is typically a good project to start with. If you want something practical, take a look at how iRobot vacuums the floor and come up with a better scheme.

link|flag
vote up 2 vote down

This reverse-geocache puzzle box was an awesome Arduino project. You could take this to the next step, e.g. have a reverse-geocache box that gives out a clue only at a specific location, and then using physical clues found at that location coupled with the next clue from the box, determine where to go for the next step.

link|flag
That's really cool! – NotDan Nov 4 at 19:23
vote up 2 vote down

Start small and build up to something more complex. Control servos. Blink LEDs. Debounce inputs. Read analog sensors. Display text on an LCD. Then put it together.

Despite the name, I like the "Evil Genius" book for PIC microcontrollers because of the small, easily digestible projects that tend to build on one another. It is, of course, aimed at PIC programmers rather than the Arduino, but the material covered will be useful no matter what you're developing on.

I know Arduino is trendy right now, but I also like the Teensy++ development board because of its low price-point ($24), breadboard-compatible PCB, relatively high pin count, linux dev environment, USB connectivity, and not needing a programmer. Worth considering for smaller projects.

If you come up with something cool, let me know. I need an excuse to do something fun :)

link|flag
vote up 1 vote down

Bicycle-related ideas:

  • theft alarm (perhaps with radio link to a base station which is connected to a PC by Ethernet)
  • fancy trip computer (with reed switch or opto sensor on wheel)
    • integrate with a GPS telematics unit (trip logging) with Ethernet/USB download of logged data to PC. Also has an interesting PC programming component--integrate with Google Maps.

Other ideas:

link|flag
Nice! I like it! – NotDan Nov 4 at 1:07
vote up 1 vote down

Depends on your background and if you want practical or cool. On the practical side, a remote control could be a simple starting point. It's got buttons and lights but isn't too demanding.

For a cool project maybe a Simon-style memory game or anything with lights & noises (thinking theremin-style).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.