Thank you for doing this. I was just getting back into some Arduino development after a year or more and had to install the IDE on a new laptop and ended up with 2.0.1. Took me a while to figure out the new Serial Monitor, and then was more than a little annoyed that there was no way to select it all to save. So tried out your solution and it worked a treat on my MacBook Pro (Retina mid 2012) running Catalina connecting by USB to an old UNO board. Why the Arduino dev people came up with this limitation in the first place, and haven't fixed it in well over a year is beyond me. I can only surmise that the developers aren't actually using the toolset that they are writing. OK, , thanks for sharing this, and to Roger Meier for CoolTerm
Thanks. sir i want to upload the data of arduino in excel sheet so will i have to keep the computer continuous on and then keep the excel sheet open please reply me
I know that the software coolterm is powerful through your viedo. These days, it makes my computer crash when my matlab sample the data from arduinuo via serial communication. Thank you for sharing and give me another way to gather data.
hii. i just want to know that does it store the data in ram initially and then save that to the file or directly writes to the file because for high frequency data acquisition if it directly writes to file wouldnt be helpful. from the text file i am assuming that it initially stores the data in ram then writing the data to text file as a batch. can you please confirm my query.
nice video! I have a problem: the text file is created and info travels throughout the port, however I no text is written on the file (file is empty). What could be the issue?.
Excellent explanation of coolterm. Very helpful. It beats saving data on SD, which is very temperamental. Any suggestions for saving data when running an Arduino sketch on battery and disconnected from computer? Or in that case are we just left with the SD?
Hi, I got a problem in data saved in text file. Each line of the data is separate by the println () command in aduino. In the view plain, the data look good with every line is separated. However, I checked the text file and there was no enter in the data, that mean all numbers were recorded in one line in the text. What should be the problem of this?
Couldn't you just store the variables in an array while you're measuring? And then once done measuring say you're done and then loop thru the contents of the array to generate the csv?
I should create a web app that should allow me to read and view Arduino data in real time (maybe even graphs like in the video). Advice? Could I save the data to an excel file and have the webapp read the value later?
The data that I see in the Arduino IDE doesn't display the same in CoolTerm. CoolTerm shows me all sorts of characters. It's like I'm missing some converter. Help?
Thank you! Could you tell me please is it possible to save txt in python when in the uart port 115200 from other device we get a lot of information? Couldn’t to make delay :(
Hi sir, I need to store audio data. Right now, the sample rate is 16k. In this way, I think the serial print is not fast enough to print out every sample. Any suggestions here?
I faced a problem in coolterm. I need to sote the data in around 6 month or more for thesis perpuse. But when arduino Restarted or PC Restarted or CoolTerm terminated and when I start to data logging again, then it can't store the data in same file with out lossing previous data. If i use same name then It replace the previous file. 😪 Please help me. Have any more similar software???
In your application, I suggest you to use SD card with arduino instead of collecting data using terminal. You just need a SD card module to connect the card with Arduino. Arduino has an by default example to interface with. You will find a lot of example in google search, how to connect sd card with arduino. Thank you.
@@ShuvangkarDas wow! Thanks a lot. Is SD Card can store the data in csv or xml formate? And is SD card can continue update the data in same file without lost previous data if the power is interrupt?
sir, I am passionate about learning and in this I need your help. I had tried to connect you through Linkedin but still my request is pending. please let me a way so that I can contact you. please sir.
Thank you for doing this. I was just getting back into some Arduino development after a year or more and had to install the IDE on a new laptop and ended up with 2.0.1. Took me a while to figure out the new Serial Monitor, and then was more than a little annoyed that there was no way to select it all to save. So tried out your solution and it worked a treat on my MacBook Pro (Retina mid 2012) running Catalina connecting by USB to an old UNO board.
Why the Arduino dev people came up with this limitation in the first place, and haven't fixed it in well over a year is beyond me. I can only surmise that the developers aren't actually using the toolset that they are writing. OK, , thanks for sharing this, and to Roger Meier for CoolTerm
Great to know it helped.
Looked at so many videos before I came to this. Finally a very clear video! Thanks!
Glad it helped!
Thank you so much, you saved me from copying them all manually!
Happy to hear it helped :D.
YOU ARE AMAZING !!! Big thanks , i was struggling to do that and finally your video was the solution.
Glad to hear that it helped :D
Thanks. sir i want to upload the data of arduino in excel sheet so will i have to keep the computer continuous on and then keep the excel sheet open please reply me
I know that the software coolterm is powerful through your viedo. These days, it makes my computer crash when my matlab sample the data from arduinuo via serial communication. Thank you for sharing and give me another way to gather data.
You are welcome.
Thank you so much, without this video I would not have succeeded in solving my arduino data capture problem
You are welcome
Thanks, that was super helpful and very clear. It has allowed me to use my arduino uno kiln-control project as a data logger, so useful!
hii. i just want to know that does it store the data in ram initially and then save that to the file or directly writes to the file because for high frequency data acquisition if it directly writes to file wouldnt be helpful. from the text file i am assuming that it initially stores the data in ram then writing the data to text file as a batch. can you please confirm my query.
I guess you are correct.
this was an amazing video thank you so much helped me with my project in school :)
Does the Arduino have to be connected to a laptop when you want to store data like this?
nice video! I have a problem: the text file is created and info travels throughout the port, however I no text is written on the file (file is empty). What could be the issue?.
Excellent explanation of coolterm. Very helpful. It beats saving data on SD, which is very temperamental. Any suggestions for saving data when running an Arduino sketch on battery and disconnected from computer? Or in that case are we just left with the SD?
Thank you, very helpful with a complete explanation
Thanks So Much, needed this for my disso results
Where will the data be saved if the pc is shutdown
Sir ,the txt file that is saved is blank. What should I do?
Whenever I have CoolTerm tack on timestamps, it also skips a line between each data packet. Do you know if there is a way to stop this?
Hi, I got a problem in data saved in text file. Each line of the data is separate by the println () command in aduino. In the view plain, the data look good with every line is separated. However, I checked the text file and there was no enter in the data, that mean all numbers were recorded in one line in the text. What should be the problem of this?
In CoolTerm go to Options --> File Capture --> Check Retain termination string :D
@@gines6234 Do you also know how to get the commas to show up?
I'm only getting spaces inbetween my values, even though I added commas in the program
@@benvanzon3234 No idea honestly, they should appear if you put it in arduino code. Nevertheless try playing with the options in Text or File Capture.
@@gines6234 Yes, this can solve the problem.
@@gines6234 Many thanks
Great video nice one 👍
Thank you 😁
Couldn't you just store the variables in an array while you're measuring?
And then once done measuring say you're done and then loop thru the contents of the array to generate the csv?
I should create a web app that should allow me to read and view Arduino data in real time (maybe even graphs like in the video). Advice? Could I save the data to an excel file and have the webapp read the value later?
Same. I need to create an app that will capture ESP32 board data over wifi in real time with a save button. I can take all the help I can get.
do you know if it is possible to save data for about two days?
Yes it is possible.
This helped me out today. Thanks!
Awesome Guide! Thank you so much 🙏
if i want enter data from text file to Arduino.... against the video what can i do?
please
The data that I see in the Arduino IDE doesn't display the same in CoolTerm. CoolTerm shows me all sorts of characters. It's like I'm missing some converter. Help?
can you solve it? if you can, how do you do it?
Thanks! It`s working perfectly!
You are welcome
Onek Onek, Thanks! 💟😭😭
You are welcome!
Hello Shuvangkar, need help in sending serial data from the sensor data over wifi. i am using arduino rev 2.0 wifi board
Thank you! Could you tell me please is it possible to save txt in python when in the uart port 115200 from other device we get a lot of information? Couldn’t to make delay :(
Yes, you can do that
Sir what if i want to send a command of time synchronization on the serial port and store data also
You have to write few lines of Arduino Code. In coolterm there is an option to send command to Arduino.
How about the time in x-axis?
You have to get the time fron Arduino. Use RTC or millis
Thank you very much. It's very helpful to me !!!
You are welcome.
You are my hero! Thank you!
Super helpful video! Thank you so much!!!
it is showing me access denied error even if I am running the app as an administrator.
what should I do?
any luck with this?
Sir, I already have code for Arduino, do I need to write another code to save data in coolterm ?
No. You just need to serial print. Cool term save automatically
@@ShuvangkarDas okay sir, thank you so much!
@@ShuvangkarDas sir , it is not showing timing in coolterm but it showing in serial monitor, what should I do now?
Thank you very much for the video! It helped a lot!
Hi sir, I need to store audio data. Right now, the sample rate is 16k. In this way, I think the serial print is not fast enough to print out every sample. Any suggestions here?
Try sampling in 8-bit mode
I dont know why my result is all in row data, cannot be column format like ur video shown
Because, you didn't put new line command in your code.
In CoolTerm go to Options --> File Capture --> Check Retain termination string :D
For MacBook it says access denied. Any suggestion?
That's a security issue you need to resolve. Try searching enabling serial port in macbook.
@@ShuvangkarDas resolved.
I faced a problem in coolterm.
I need to sote the data in around 6 month or more for thesis perpuse.
But when arduino Restarted or PC Restarted or CoolTerm terminated and when I start to data logging again, then it can't store the data in same file with out lossing previous data.
If i use same name then It replace the previous file. 😪
Please help me.
Have any more similar software???
In your application, I suggest you to use SD card with arduino instead of collecting data using terminal. You just need a SD card module to connect the card with Arduino. Arduino has an by default example to interface with. You will find a lot of example in google search, how to connect sd card with arduino. Thank you.
@@ShuvangkarDas wow! Thanks a lot.
Is SD Card can store the data in csv or xml formate?
And is SD card can continue update the data in same file without lost previous data if the power is interrupt?
You can store in any format and data preserves in power cycle.
@@ShuvangkarDas Thanks a lot bro. 🙏
Thanks for your video, but can you please suggest a process which is completely automated in the real time?
If you want really automated, then write python script.
Mine worked initially but I started getting 'access denied'. Help please anyone?
Great one, thanks !
Any idea how to use PS2 keyboard with esp
bro can we save data from nodemcu + arduno ide +excel
Yes you can
Super helpful, thanks !
Welcome
how to add date and time in the export Txt file
Use RTC with Arduino and generate date time.
Thanks, really helpful!
Happy to help :D
Bravo!!!! Grazie!!!!
Thanks for the information
How can I save data along with time ?
Enable time in Arduino Serial Terminal
Or write code in to print time
This does not work on Linux unfortunately. As soon as Coolterm connects to the serial port, Arduino starts seeing gibberish on the terminal.
Actually, you need to close Arduino's serial console and just use CoolTerm, then it works.
This worked for me.
Thank a lot really heplful!
can you send me the link, so it is not working?
What link are you looking for?
@@ShuvangkarDas the application
@@Mohamed-uo8nl freeware.the-meiers.org/ here it is
thank you brother !
Helpful
Thank you
Thank you
Welcome!
nice thanks 4 that its helpfull
Happy to help
very helpful
Thank you
Thank you so much
Thanks ❤❤
well done
Thanks
Thank you Bro
Thank you!
Thanks a lot!
You are welcome.
TE AMO
sir, I am passionate about learning and in this I need your help. I had tried to connect you through Linkedin but still my request is pending. please let me a way so that I can contact you. please sir.
Accepted. Thanks for connecting
Sir can I get ur mail id , I hv some doubts
You will get my email address in YT channel description
Thanks!
Thank you
Thank you