Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been playing around with some Arduino projects, but I find the Arduino development software to be kind of lacking in features I'm used to in full IDEs, or even the venerable Notepad++.

Are there any other editors for Arduino, or maybe quality plugins to other IDEs, especially for Windows?

share|improve this question
1  
The free visual studio pro plugin is the only complete alternative. It supports ALL of the Arduino features such as multiple pde/ino files, board selection, all types of upload. Every feature of the Arduino IDE + drill down into compiler errors, intellisense etc. – Visual Micro Oct 17 '12 at 20:50
As an alternative, I use a simple text editor (Gedit) on Linux, and Komodo Edit on OS X. And yes, I can use make. – H2CO3 Nov 25 '12 at 15:35

9 Answers

up vote 8 down vote accepted

There is an Arduino Eclipse plugin! And Eclipse is an awesome cross-plateform open-source IDE!

share|improve this answer
5  
I do have to say the eclipse plugin is a massive pain to setup. The Visual Mirco plugin is super easy, if you have access to visual studio... – Zak Mar 20 '12 at 21:34

I have tried a few, there are a couple of options open to you on top of Eclipse.

My very favourite is Microsoft Visual Studio which can be used with a plugin called Visual Micro http://www.visualmicro.com/. Compared to eclipse, it's easier to set up and use IMHO. I also find that on my netbook Visual Micro, whilst resource hungry can run reasonably. I had less joy with Eclipse.

news: may 2013 - The Visual Studio Pro plugin now works with Atmel Studio 6.1 which is free. Atmel Studio is based on Visual Studio 2010 and is created by Atmel Corporation, the manufacturer of the Arduino micro-controllers.

share|improve this answer
1  
The downside might not be such, in the VisualMicro site: visualmicro.com/page/… – Rodrigo Lopez Jun 27 '12 at 11:22

There's this new project. It's an open-source IDE designed to allow professional projects on Arduino. Its features include:

  • Workspace support enable to work with multiple projects at the same time, each one with its own board, programmer and serial port
  • Code editor based on Scintilla, so the editor is very similar to Notepad++ (Also includes color-themes)
  • Build process configurable: You'll be able to change the default libraries, for example

For now, it only works on Windows, but they are planning to make it multi-platform in the future:

http://dalpix.com/mariamole

share|improve this answer

Zeus is a programmer's editor with a lot of IDE like features and it can be easily configured for most programming languages.

share|improve this answer
+1 Nice and snappy editor. – veight Jun 3 at 15:19

There's an awesome Arduino Package for Sublime Text 2 too.

share|improve this answer
This looks like a minimal-effort clone of a TextMate package...the Upload command will only work on a Mac, for example. – bug Apr 14 at 22:40

You can use Arduino mode for Emacs

https://github.com/bookest/arduino-mode

with CEDET for project management

http://cedet.sf.net

though the arduino support in CEDET is currently only available from the bzr repo in trunk. This combination supports compilation and uploading to your arduino from the editor. Here's a short doc page on it:

http://www.randomsample.de/cedetdocs/common/cedet/Arduino-Features.html

share|improve this answer
A correction to the above. The arduino support in CEDET is now part of the CEDET 1.1 release, and will be part of future releases as well. – Eric Jun 14 '12 at 1:25

You're using Windows, so I'd give MariaMole (the one Alex suggested) a try.

I've used eclipse a few times with AVRs, although I wasn't using the Arduino library, just avr-eclipse, you can check my eclipse workspace here if you want.

But I like good editors, so if you're into modal editors, there's plenty of plugins for VIM; if not, I'd recommend Sublime Text 2 (as sekati also did suggest).

To make a good IDE for Arduino out of Sublime Text 2, also install SublimeClang to get autocompletion and code analysis, and if you want to make it a good IDE for other languages too, add SublimeLinter and SublimeCodeIntel to the mix.

share|improve this answer

Stino is the best that I've found. Requires Sublime Text 2 which has an indefinite free trial.

share|improve this answer

Use it with eclipse and the processing plugin!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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