So I'm in the process of tearing apart and modifying Nick Gammon's program which allows you to program one arduino from a SD card connected to another arduino. This program (not library) uses the SdFat library. I would like to show the file's creation date on my display NOT print them to the serial port. I can't seem to figure this simple task out.
This is how nick/SdFat does it:
file.printFatDate(&Serial, d.creationDate);
I just want to return the creation date to my lcd print function.
I tried just doing String(d.creationDate) but get some weird int which I can't figure out any way that it represents a date of any kind.
I don't really fully understand everything going on in his program and just try to move/delete things to work it down to the elemets I need.