I am a high school student and am thinking of making a robot that draws using different colored markers. I would like some guidance as to where I should start with this program.

What I want to do is to construct a program on the computer where you could draw the path you want the robot to draw and then using the bluetooth dongle and the bluetooth developer kit I would send the command to the robot to draw the path for real.

link|improve this question

69% accept rate
You may be interested to hear that there is a proposal for a StackOverflow style site for Lego Mindstorms on Area51.stackexchange.com. – Eric Nov 15 '10 at 20:45
@Eric it is closed. – WTP'-- Nov 24 '11 at 17:44
feedback

3 Answers

up vote 2 down vote accepted

Well, that isn't exactly easy. But, I would presume the easiest way to do this is with the Mindstorm's kit. I have seen that you can code for the Mindstorm using C++, but I don't know the kit that well to say what or where to get the libraries. I only played with it a long time ago. Then, I assume what it would do is setup a virtual COM port on your computer through bluetooth that you could use to communicate with the kit.

At least, that is in theory.

link|improve this answer
Haven't played with my kit for a while, but this seems quite feasible. See e.g. codeproject.com/KB/recipes/driving_lego_bot.aspx – MSalters Nov 16 '09 at 14:18
feedback

I would recommend trying the NXTComm library for Processing, as it would give you both the ability to control the robot, and to write a program reasonably easily to allow the user to draw the paths.

link|improve this answer
feedback

Another option is to have a program on the PC (written in a language of your choice) that generates a text file containing details about each line segment. This could then be sent to the robot via a USB cable.

A program on the brick could then parse the text file, and move accordingly.

There's no real need to use bluetooth here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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