fprint() to save uint8 in .txt file

13 views (last 30 days)
benl23
benl23 on 24 Apr 2020
Answered: Athul Prakash on 27 Apr 2020
Hi all,
Thank you in advance for your help.
I've got a vector of uint8 numerica values ( from 0 to 255) that I would like to save in a .txt file.
I would need to have a .txt file in which each row is a single character. After having stored this .txt file in a SD card I would need to read it in Arduino whose file.read() function works reading one byte at a time.
I was thinking then that I would need to create a .txt file in which each row is the ASCII value correspondent to my uint8 number. Is there an easy way to do that using the fprint() function?
Do you have suggestions?
Thank you for your help!!

Answers (1)

Athul Prakash
Athul Prakash on 27 Apr 2020
You may save it using the '%d' formatting operator and save it line by line to a text file. Use '\n' for moving to the next line.
Please see this doc and the examples in it to understand how to print your ascii values line by line.
In general, I have found the examples very useful in learning a new function or tool in matlab. Try picking out the first example in the doc.
Hope it Helps!

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!