Difference between revisions of "Arduino SD card Module"

From Geeetech Wiki
Jump to: navigation, search
Line 54: Line 54:
 
   }  
 
   }  
 
  }
 
  }
 +
 +
= How to buy=
 +
click here to buy[http://www.geeetech.com/sd-card-reader-module-for-memory-read-and-write-p-170.html SD card]

Revision as of 03:07, 7 May 2012

Introduction

SDcard.jpg

The Arduino SD Card Shield is a simple solution for transferring data to and from a standard SD card. The pinout is directly compatible with Arduino, but can also be used with other microcontrollers. It allows you to add mass storage and data logging to your project.

Features

  • Break out board for standard SD card and Micro SD (TF) card
  • Contains a switch to select the flash card slot
  • Sits directly on a Arduino
  • Also be used with other microcontrollers

Connection Diagram

SD card wiring.jpg

example code

#include <SD.h>
const int chipSelect = 4;
void setup()
{
 Serial.begin(9600);
 Serial.print("Initializing SD card...");
 // make sure that the default chip select pin is set to
 // output, even if you don't use it:
 pinMode(10, OUTPUT);
 
 // see if the card is present and can be initialized:
 if (!SD.begin(chipSelect)) {
   Serial.println("Card failed, or not present");
   // don't do anything more:
   return;
 }
 Serial.println("card initialized.");
}
void loop()
{
 // make a string for assembling the data to log:
 String dataString = "";
 // read three sensors and append to the string:
 for (int analogPin = 0; analogPin < 3; analogPin++) {
   int sensor = analogRead(analogPin);
   dataString += String(sensor);
   if (analogPin < 2) {
     dataString += ","; 
   }
 }
 File dataFile = SD.open("datalog.txt", FILE_WRITE);
 if (dataFile) {
   dataFile.println(dataString);
   dataFile.close();
   Serial.println(dataString);
 }  
 else {
   Serial.println("error opening datalog.txt");
 } 
}

How to buy

click here to buySD card