1

Is there any way to use Arduino in the terminal? I have a USB 802.15.4 board that works with Arduino, but I don't want to use the IDE with it, I want to use the terminal.

asked May 9, 2016 at 7:51
1
  • I think you need to explain what you mean the Arduino IDE (Integrated Development Environment) is the graphic interface Commented May 9, 2016 at 8:06

2 Answers 2

2

1.) You can configure the arduino ide to use an "external editor". This means the arduino ide runs als usual but reloads the opened file for compiling and uploading. This is when you want to keep the original arduino ide.

2.) You can use the ino projekt which gives you a cli interface to manage your arduino projects. The quickstart guide gives a good overview of the project.

ino init -t blink
ino build
ino upload
ino serial

You can of course make all needed modifcations for differend boards and communication. I think the second option is what you are looking for ;)

answered May 9, 2016 at 9:05
0

The most popular method these days is to use arduino-builder.

This seems to be the official Arduino command line interface now, and can do most things the IDE can do short of actually editing your code for you.

It is a set of GO scripts, so you will need GO installed.

answered May 9, 2016 at 13:29

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.