Serial log

Thread Starter

augre

Joined Sep 7, 2014
2
Hi Guys,

I am making log files from data that comes in through serial from a micro controller.

I know that any terminal can do that but I need to make this process automatic.

So I would just connect the micro controller and the program would read in the data and save it in a file. Without me interacting the computer

I was trying to use the python serial module, but doesn't work too well.

What would you recommend to use?
 

tshuck

Joined Oct 18, 2012
3,534
The .NET framework makes it pretty easy - common language would be C#, VB, and C++. Just attach to the serial port, register for the data received event, and write the date to a file.
 
Top