Need advices on storing serial monitor data

Hello everyone..

I am working on a project and I get vast amount of Serial monitor data. I need to analyze it, so I better use some tools. :slight_smile:

My plan is simple: storage whole data to excel and analyse it by excel support.

However, to do that, I need to put the data to excel.

I made some short research and concluded to 2 options.

  1. Learn "Processing", convert the code to this language and add necessary codes to storage data.
  2. Use some programs which storages serial monitor data directly.

I tend to prefer the second option because I won't need to learn another language and I won't need to disturb my code. However, I don't know the advantages and disadvantages of both options.

Should I really prefer the second option or does using "processing" a better option for something that I am realize yet?

And, If I prefer second option, which program you would you suggest?
(except Twedge, I need more than 90 days and I can't afford paying a program)
Thanks

You do not identify your PC OS ... but generally most Serial Communication programs can log to a file. Why, oh why, the ArduinoIDE does not is beyond me, but it is Open Source so I am not going to complain because someone will just tell me to add the write-to-file log code :o

You can also do it by redirecting the serial port to a file if you are into that command-line stuff.

Click Here for Google Search

Processing terminal code: https://www.safaribooksonline.com
/library/view/arduino-cookbook/9781449399368/ch04.html

Ray

https://www.google.com/search?q=gobetwino

However, I prefer Python for such things. I believe Robin2 has graciously published an example on this forum.

I use Jack Christensen's 'Serial Data Monitor'.

http://forum.arduino.cc/index.php?topic=281091.0

Any good free terminal emulator like PuTTY or even HyperTerminal on Windoze will allow you to send and write files. Don't use serial monitor, use a terminal program.

... snakes make me squeamish :cold_sweat:

I have never used gobetwino ... probably should give it a try for my own edification.

Ray

Windoze
:frowning:

LarryD:
Windoze
:frowning:

OMG ... not cross-platform!

I'm a No-Windoze kind of guy ... I even take NoDoz when I drive if I can't get the liquid caffeine.

Once I was a MCSE, but W-10 broke me down into a shadow of the hacker I once was ... then I was saved by Linux. Amen

Ray

I am using Realterm software to create excel files now. :slight_smile:

Thank all of you very much..