vote up 12 vote down star
8

I'm new to it and currently using the visual flow-chart like language that the Lego Mindstorms IDE uses. I'm impressed with how readable the diagramming language is but missing the flexiblity of actual code. I'm imagining complicated projects I want to try out and don't really want to implement them as a gigantic flow chart! lol :)

I know there are other languages/IDEs you can use but not really sure what they are or which to use. What IDE/language do you recommend for programming Lego Mindstorms projects?

I'd prefer an IDE that still allows me to hit Run and send the program down to the NXT brick via bluetooth and run it immediately.

UPDATE: I ended up choosing lejos. Mainly because I've just started learning Java at work which is very similar to C# which I'm already familiar with. I would recommend Lejos since Java is a great high level, feature-rich language and there are nice IDE's for it. Eclipse is a great IDE which lejos has a plugin for and ant build scripts make building your project, loading it to the NXT brick and running it on the device a one step process. Lejos does require special firmware on your NXT brick but that went fine and you can always put your old Mindstorms firmware back on later if you want.

If you want to check out other language and IDE options I'd highly recommend this chart I stumbled across: http://www.teamhassenplug.org/NXT/NXTSoftware.html

flag

60% accept rate

9 Answers

vote up 0 vote down

You can use nxtOSEK as operating system on the NXT. Then you can use plain C to write your code.

link|flag
vote up 2 vote down

FYI, I came across this extremely helpful feature comparison chart of different languages which you can program the NXT in:

http://www.teamhassenplug.org/NXT/NXTSoftware.html

link|flag
vote up 1 vote down

I would suggest RobotC as a good choice for programming the NXT. Here are some of the benefits of RobotC:

  • C based syntax
  • IDE
  • debugging
  • sample programs
  • better performance than the original firmware
  • free 30 day trial

RobotC

link|flag
Why would you ever want to pay for something like that? There are many other free, open source options that are just as good, if not better. – Zifre May 7 at 22:44
vote up 3 vote down

Another option is Microsoft Robotics Studio.

link|flag
vote up 1 vote down

MATLAB actually has a LEGO MINDSTORMS NXT Toolkit, if you're interested at all in using MATLAB. You can send commands via Bluetooth connection or create embedded controls that are downloaded to the robot. I've seen it discussed on some of the MathWorks blogs, and there are some demos posted on the MathWorks File Exchange (here's one).

link|flag
vote up 0 vote down

We used NQC for programming Lego Mindstorms. We was to build a four-wheel robot to gather artificial rubbish(pieces of bead and paper) in a competition. After testing different programming and IDEs I concluded NQC was right to me.(because I knew C and NQC had many good tutorial materials). And the point is that you can modify your code easily with NQC. For example, at the competition, we should change our code in oder to cope with new challenges in our robot's environmetn( they changed MDF with carpet!)

by the way, We obtained a good result (third place) :)

link|flag
vote up 1 vote down

I think this is a good book about programming your Mindstorm NXT with the NXC (Not eXactly C) language.

"LEGO Mindstorms NXT Power Programming: Robotics in C" by John C. Hansen

With a small amount of tinkering you can probably get NXC working with whatever your favourite IDE already is.

link|flag
vote up 0 vote down

Back in the day, NQC was the way to go; A good intro to C style programming, with fewer pitfalls.

link|flag
Now replaced with NXC, which is designed for the new NXT. – Eric Sep 26 at 7:50
vote up 10 vote down

You have these languages besides the original ones that come with Lego:

  • C and C++ under BrickOS (formerly LegOS)
  • Java under leJOS or TinyVM
  • NQC ("Not Quite C")
  • pbFORTH (extensions to the Forth programming language)
  • pbLua (An NXT API for the Lua programming language)
  • Visual Basic (Through the COM+ interface supplied on the CD)
  • RobotC (New Language and NXT Compatible)
  • Interactive C (Language similar to C used in robotics competitions.)
  • XSLisp an implementation of Lisp for the RCX (1 + 2) and NXT

If you're new to programming, I suggest the Java or Lua options, if you know some programming, it's time to learn C. Steer away from artificially smaller languages... If you're going to put up the time, then go all the way and learn a good language like C. IDE's, whatever... Eclipse is very good for starters, then your experience will drift you away from it to VI or Emacs :)

link|flag
Very interesting, thanks for the info. I'm surprised you didn't mention MS Robotics Studio which I thought you could use too? I'm comfortable in C# so I was considering that as an option. Have you used it / have an opinion on it? – Ben Daniel Mar 20 at 6:54
On the other hand, after working as a Delphi developer for the last 8 years, it seems I'll be learning and using Java mostly full time at my work soon, so maybe I'll look into the Java options... – Ben Daniel Mar 20 at 6:56
You said "whatever" for IDEs...so how do you go about getting your program onto the NXT device? I assumed someone would have made an IDE plugin? – Ben Daniel Mar 20 at 7:08
Ben Daniel: I think lejos (the Java thing) has an Eclipse plugin. – DrJokepu Mar 20 at 11:02
1  
@Ben: Maybe this will help for java: bartneck.de/2008/03/… – Dervin Thunk Mar 20 at 22:16
show 1 more comment

Your Answer

Get an OpenID
or

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