No description
Find a file
2017-02-15 05:49:47 -08:00
AnalogBinLoggerExtras Fix bintocsv dll problem 2014-11-07 06:20:43 -08:00
html Commit changes from SdFat-beta 2016-07-19 12:54:02 -07:00
SdFat Allow printf macro 2017-02-15 05:49:47 -08:00
SdFatTestSuite Commit changes from SdFat-beta 2016-07-19 12:54:02 -07:00
.gitattributes Initial Commit 2014-08-06 05:05:57 -07:00
.gitignore Initial Commit 2014-08-06 05:05:57 -07:00
changes.txt Commit changes from SdFat-beta 2016-07-19 12:54:02 -07:00
README.md Fix README 2016-07-19 13:03:38 -07:00
SdFat.html Initial Commit 2014-08-06 05:05:57 -07:00

The Arduino SdFat library provides read/write access to FAT16/FAT32 file systems on SD/SDHC flash cards.

SdFat requires Arduino 1.6x or greater.

To use SdFat, clone the repository or unzip the ZIP file and place the SdFat folder into the libraries sub-folder in your main sketch folder.

For more information see the Manual installation section of this guide:

http://arduino.cc/en/Guide/Libraries

A number of configuration options can be set by editing SdFatConfig.h #define macros. See the html documentation for details

Read changes.txt if you have used previous releases of this library.

Please read the html documentation for this library. Start with html/index.html and read the Main Page. Next go to the Classes tab and read the documentation for the classes SdFat, SdBaseFile, SdFile, File, StdioStream, ifstream, ofstream, and others.

A new class, "File", has been added to provide compatibility with the Arduino SD.h library. To use SdFat with programs written for SD.h replace

#include <SD.h>

with these two lines:

#include "SdFat.h"
SdFat SD;

Please continue by reading the html documentation.

Updated 19 Jul 2016