MariaMole是一个用于Arduino开发的开源高级IDE,拥有像项目管理,可调整的编译器选和语法高亮显示等特性。
网址:http://dalpix.com/mariamole
MariaMole is an alternative software for creating Arduino programns. Some of its features are:
- User interface similar to other software development environments
- Works with multiple projects at the same time
- Code coloring themes
- Full control of the building process: It still handles it for you, but you can fine-tune it.
Want to know more? Check the following pages:
- Download MariaMole here(此为下载地址)
- Want a tutorial for your first steps? Check it here
- Have questions? Stuck on a problem? Check our FAQ here
- Want to see the release history? It’s available at the download page
- How can I help to improve MariaMole?
上面提供了下载地址,文件总共1.57M,很小。
安装好后运行,弹出如下图界面,选择Arduino.exe的安装路径,比如我的是“D:\Program Files\Arduino\arduino-1.0.5\”,然后就可以使用了。里面附带一个简单的教程。
运行后的主界面:
60秒快速使用说明:
MariaMole quick start: Learn its basics in 60 seconds! Check this tutorial for your first steps on MariaMole: http://dalpix.com/mariamole-tutorial
简单翻译一下60秒快速使用说明:
首先设置好 Arduino IDE 的路径,如果刚才没有设置好,不要紧,打开 Edit(编辑)菜单,选中 Preferences(首选项),就看到了选择 Arduino IDE 路径的界面,点击 Change ,找到 Arduino 的路径并确定。
接下来选择 Wordspace(工作空间),选择你要放置文件的地方。
然后 Add A New Project(添加新项目),在弹出窗口中选择一项,我以第二项为例。选中Arduino IDE 中的 Blink 例子。选中后点击 Next。
接下来给项目起名字,我就用默认的例子名作为项目名称。下面的两个选项中,第一个要你选择使用的Arduino型号,不知道也没关系,以后还可以再工具栏中的”Change project options”修改。第二个是选择程序语言,如果也不知道用哪一种程序语言,就选择 “AVR ISP”,这是大多数板子的默认语言。当然,还得注意你选择的串口号,我的是COM3,就选择了COM3。一定要选对才可以工作。
下来工作界面就打开了,可以使用了。注意看左边,粗体是正在编辑的项目(因为这里可以出现多个项目,正在编辑的用粗体显示),项目中有目录树,显示该项目中的文件。双击即可编辑。
然后就可以编译并上传代码到Arduino了。
成功后会在下面框中返回Success信息。