Dear All.
I just trying to use SdFatLib ... specialy the "tail" sample.
Now .. I have a file called "MYSTEP.CSV" on my sdcard.
The SdFatLib success to "tail" the file content.
basically .. the contents is just a comma seperated values like
7768,253
7957,254
8547,253
8705,254
10133,255
10293,254
10831,255
11031,254
Question :
How to parse a line to two variable, i.e :
7768,253
to -->
var1 = 7768
var2 = 253
Sincerely
-bino-