SD | |
---|---|
Quick Look | |
Hardware | WF32, MAX32, WiFi Shield |
Include | SD.h |
The SD library provides methods for navigating the directories and files on a FAT formatted SD Card.
The SD library is a wrapper around the sdfatlib library. The SD libarary contains two classes, namely the SD class and File class . The SD class is used to navigate the directory tree and to manipulate files and folders on the SD card. The File class inherits from base class Stream and provides methods for reading from and writing to individual files on the SD card.
This example shows how to read and write data to and from an SD card file.
/*
SD card read/write
This example shows how to read and write data to and from an SD card file
The circuit:
* SD card attached to SPI bus as follows:
** MOSI - pin 11
** MISO - pin 12
** CLK - pin 13
** CS - pin 4
created Nov 2010
by David A. Mellis
updated 2 Dec 2010
by Tom Igoe
- Cleaned up all SD examples included with MPIDE for consistency in defining CS pins
revised 24 May 2013 by Jacob Christ
This example code is in the public domain.
*/
#include <SD.h>
File myFile;
// On the Ethernet Shield, CS is pin 4. It's set as an output by default.
// Note that even if it's not used as the CS pin, the hardware SS pin
// (10 on most Arduino boards, 53 on the Mega) must be left as an output
// or the SD library functions will not work.
// Default SD chip select for Uno and Mega type devices
const int chipSelect_SD_default = 10; // Change 10 to 53 for a Mega
// chipSelect_SD can be changed if you do not use default CS pin
const int chipSelect_SD = chipSelect_SD_default;
void setup()
{
Serial.begin(9600);
Serial.print("Initializing SD card...");
// Make sure the default chip select pin is set to so that
// shields that have a device that use the default CS pin
// that are connected to the SPI bus do not hold drive bus
pinMode(chipSelect_SD_default, OUTPUT);
digitalWrite(chipSelect_SD_default, HIGH);
pinMode(chipSelect_SD, OUTPUT);
digitalWrite(chipSelect_SD, HIGH);
if (!SD.begin(chipSelect_SD)) {
Serial.println("initialization failed!");
return;
}
Serial.println("initialization done.");
// open the file. note that only one file can be open at a time,
// so you have to close this one before opening another.
myFile = SD.open("test.txt", FILE_WRITE);
// if the file opened okay, write to it:
if (myFile) {
Serial.print("Writing to test.txt...");
myFile.println("testing 1, 2, 3.");
// close the file:
myFile.close();
Serial.println("done.");
} else {
// if the file didn't open, print an error:
Serial.println("error opening test.txt");
}
// re-open the file for reading:
myFile = SD.open("test.txt");
if (myFile) {
Serial.println("test.txt:");
// read from the file until there's nothing else in it:
while (myFile.available()) {
Serial.write(myFile.read());
}
// close the file:
myFile.close();
} else {
// if the file didn't open, print an error:
Serial.println("error opening test.txt");
}
}
void loop()
{
// nothing happens after setup
}
This example shows how use the utility libraries on which the SD library is based in order to get info about your SD card.
/*
SD card test
This example shows how use the utility libraries on which the'
SD library is based in order to get info about your SD card.
Very useful for testing a card when you're not sure whether its working or not.
The circuit:
* SD card attached to SPI bus as follows:
** MOSI - pin 11 on Arduino Uno/Duemilanove/Diecimila
** MISO - pin 12 on Arduino Uno/Duemilanove/Diecimila
** CLK - pin 13 on Arduino Uno/Duemilanove/Diecimila
** CS - depends on your SD card shield or module
created 28 Mar 2011
by Limor Fried
- Cleaned up all SD examples included with MPIDE for consistency in defining CS pins
revised 24 May 2013 by Jacob Christ
*/
// include the SD library:
#include <SD.h>
// set up variables using the SD utility library functions:
Sd2Card card;
SdVolume volume;
SdFile root;
// change this to match your SD shield or module;
// Arduino Ethernet shield: pin 4
// Adafruit SD shields and modules: pin 10
// Sparkfun SD shield: pin 8
// On the Ethernet Shield, CS is pin 4. It's set as an output by default.
// Note that even if it's not used as the CS pin, the hardware SS pin
// (10 on most Arduino boards, 53 on the Mega) must be left as an output
// or the SD library functions will not work.
// Default SD chip select for Uno and Mega type devices
const int chipSelect_SD_default = 10; // Change 10 to 53 for a Mega
// chipSelect_SD can be changed if you do not use default CS pin
const int chipSelect_SD = chipSelect_SD_default;
void setup()
{
Serial.begin(9600);
Serial.print("\nInitializing SD card...");
// Make sure the default chip select pin is set to so that
// shields that have a device that use the default CS pin
// that are connected to the SPI bus do not hold drive bus
pinMode(chipSelect_SD_default, OUTPUT);
digitalWrite(chipSelect_SD_default, HIGH);
pinMode(chipSelect_SD, OUTPUT);
digitalWrite(chipSelect_SD, HIGH);
// we'll use the initialization code from the utility libraries
// since we're just testing if the card is working!
if (!card.init(SPI_HALF_SPEED, chipSelect_SD)) {
Serial.println("initialization failed. Things to check:");
Serial.println("* is a card is inserted?");
Serial.println("* Is your wiring correct?");
Serial.println("* did you change the chipSelect pin to match your shield or module?");
return;
} else {
Serial.println("Wiring is correct and a card is present.");
}
// print the type of card
Serial.print("\nCard type: ");
switch(card.type()) {
case SD_CARD_TYPE_SD1:
Serial.println("SD1");
break;
case SD_CARD_TYPE_SD2:
Serial.println("SD2");
break;
case SD_CARD_TYPE_SDHC:
Serial.println("SDHC");
break;
default:
Serial.println("Unknown");
}
// Now we will try to open the 'volume'/'partition' - it should be FAT16 or FAT32
if (!volume.init(card)) {
Serial.println("Could not find FAT16/FAT32 partition.\nMake sure you've formatted the card");
return;
}
// print the type and size of the first FAT-type volume
long volumesize;
Serial.print("\nVolume type is FAT");
Serial.println(volume.fatType(), DEC);
Serial.println();
volumesize = volume.blocksPerCluster(); // clusters are collections of blocks
volumesize *= volume.clusterCount(); // we'll have a lot of clusters
volumesize *= 512; // SD card blocks are always 512 bytes
Serial.print("Volume size (bytes): ");
Serial.println(volumesize);
Serial.print("Volume size (Kbytes): ");
volumesize /= 1024;
Serial.println(volumesize);
Serial.print("Volume size (Mbytes): ");
volumesize /= 1024;
Serial.println(volumesize);
Serial.println("\nFiles found on the card (name, date and size in bytes): ");
root.openRoot(volume);
// list all files in the card with date and size
root.ls(LS_R | LS_DATE | LS_SIZE);
}
void loop(void) {
}
boolean begin(uint8_t csPin = SS);
Initialize the SD card. Returns true is successful, false otherwise.
File open(const char *filename, uint8_t mode = FILE_READ);
Open the specified file/directory with the supplied mode (e.g. read or write, etc). Returns a File object for interacting with the file. Note that currently only one file can be open at a time.
void end(void) {if(root.isOpen()) root.close();}
This will close the root so it is safe to call begin again. To work without corrupting the FAT all open files should be closed before calling end.
boolean exists(char *filepath);
Determine if the requested file path exists.
boolean mkdir(char *filepath);
Create the requested directory heirarchy. If intermediate directories do not exist they will be created.
boolean mkdir(char *filepath);
Create the requested directory heirarchy. If intermediate directories do not exist they will be created.
boolean remove(char *filepath);
Delete the specified file specified in the filepath parameter.
boolean rmdir(char *filepath);
Delete the directory specified in the filepath parameter.
File(void);
Empty Constructor
File(SdFile f, const char *name);
int read(void *buf, uint16_t nbyte);
Buffered read for more efficient, high speed reading.
boolean seek(uint32_t pos);
Sets a file's position. pos is the new position in bytes from the beginning of the file.
uint32_t position();
Returns The current position for a file or directory.
uint32_t size();
Returns The total number of bytes in a file or directory.
void close();
Close the file. This must be called before opening another file.
boolean isDirectory(void);
Returns true is the file is a directory, false otherwise.
File openNextFile(uint8_t mode = O_RDONLY);
Allows you to recurse into a directory
void rewindDirectory(void);
Set the file's current position to zero.
virtual size_t write(uint8_t);
virtual size_t write(const uint8_t *buf, size_t size);
virtual int read();
virtual int peek();
Returns the current posistion in the file. Returns 0 if the file is not open.
virtual void flush();
Causes all modified data and directory fields to be written to the storage device.
operator bool();
The following write functions are pulled in from the Print class.
size_t write(const char *str);
size_t write(const char *buffer, size_t size);
The SD Library is a wrapper around a more complete set of classes. You can access these classes directly from your Arduino Sketch. See the Cardinfo example above for details on how to do this.
Sd2Card;
SdVolume volume;
SdFile root;