3

Since inotool is dead, I'm trying to transition over to Arduino's built-in command line tool.

It seems largely equivalent, but the one feature it seems to be missing is a serial interface. e.g. Running ino serial would open a simple serial interface to the Arduino, providing invaluable debugging info from any Serial.print() statements.

How is this accomplished with the current Arduino command line tool?

asked Nov 30, 2015 at 1:38
4
  • You may want to just use some other command line serial solution. Commented Nov 30, 2015 at 2:31
  • @ChrisStratton, Such as...? Commented Nov 30, 2015 at 3:11
  • Well, I use an ever-evolving custom solution, so won't be of much help with that... Commented Nov 30, 2015 at 3:13
  • What OS are you using? Putty, screen, minicom ... Commented Nov 30, 2015 at 13:59

2 Answers 2

2

If you are using linux, as I guess, you can look at this archwiki page. Even if is a wiki relative to archlinux OS some informations explained are LinuxOS independendent.

For your needs, you can use screen command. Here is an example: remember to substitute the serial port with the one wich arduino is connected (usually /dev/ttyACM* or /dev/ttyUSB*) and to specify the right baud rate.

screen /dev/ttyACM0 9600
answered Dec 9, 2015 at 8:38
0

I ended up simply switching to ano.

answered Dec 9, 2015 at 22:12

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.