Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use SD Card Module: Examples, Pinouts, and Specs

Image of SD Card Module
Cirkit Designer LogoDesign with SD Card Module in Cirkit Designer

Introduction

The SD Card Module is a compact and versatile component designed to interface SD cards with microcontrollers. It enables the storage and retrieval of data, making it ideal for applications requiring large amounts of non-volatile memory. Commonly used in data logging, multimedia storage, and file transfer systems, the SD Card Module is a staple in embedded systems and IoT projects.

Explore Projects Built with SD Card Module

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Arduino UNO SD Card Data Logger
Image of sd card: A project utilizing SD Card Module in a practical application
This circuit consists of an Arduino UNO connected to an SD card module. The Arduino provides power and ground to the SD module and interfaces with it using SPI communication through digital pins D10 (CS), D11 (MOSI), D12 (MISO), and D13 (SCK). The setup is intended for reading from or writing to an SD card using the Arduino.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO Battery-Powered Data Logger with Micro SD Card Storage
Image of arduino sd: A project utilizing SD Card Module in a practical application
This circuit is designed to interface an Arduino UNO with a Micro SD Card Module for data storage, powered by two 18650 Li-ion batteries through a USB plug and controlled by a rocker switch. The Arduino communicates with the SD card module via SPI protocol and is also connected to the USB plug for potential data transfer or power supply.
Cirkit Designer LogoOpen Project in Cirkit Designer
ESP32-C3 and Micro SD Card Module for Data Logging
Image of Esp 32 super mini with MicroSd module: A project utilizing SD Card Module in a practical application
This circuit features an ESP32-C3 microcontroller interfaced with a Micro SD Card Module. The ESP32-C3 handles SPI communication with the SD card for data storage and retrieval, with specific GPIO pins assigned for MOSI, MISO, SCK, and CS signals.
Cirkit Designer LogoOpen Project in Cirkit Designer
Heltec LoRa V2 with SD Card Data Logging
Image of LoRa SD: A project utilizing SD Card Module in a practical application
This circuit connects an SD card module to a Heltec LoRa V2 microcontroller for data storage and retrieval. The SD module is interfaced with the microcontroller via SPI communication, utilizing the CS, SCK, MOSI, and MISO pins. Power is supplied to the SD module from the microcontroller's 5V output, and both modules share a common ground.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with SD Card Module

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of sd card: A project utilizing SD Card Module in a practical application
Arduino UNO SD Card Data Logger
This circuit consists of an Arduino UNO connected to an SD card module. The Arduino provides power and ground to the SD module and interfaces with it using SPI communication through digital pins D10 (CS), D11 (MOSI), D12 (MISO), and D13 (SCK). The setup is intended for reading from or writing to an SD card using the Arduino.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of arduino sd: A project utilizing SD Card Module in a practical application
Arduino UNO Battery-Powered Data Logger with Micro SD Card Storage
This circuit is designed to interface an Arduino UNO with a Micro SD Card Module for data storage, powered by two 18650 Li-ion batteries through a USB plug and controlled by a rocker switch. The Arduino communicates with the SD card module via SPI protocol and is also connected to the USB plug for potential data transfer or power supply.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Esp 32 super mini with MicroSd module: A project utilizing SD Card Module in a practical application
ESP32-C3 and Micro SD Card Module for Data Logging
This circuit features an ESP32-C3 microcontroller interfaced with a Micro SD Card Module. The ESP32-C3 handles SPI communication with the SD card for data storage and retrieval, with specific GPIO pins assigned for MOSI, MISO, SCK, and CS signals.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of LoRa SD: A project utilizing SD Card Module in a practical application
Heltec LoRa V2 with SD Card Data Logging
This circuit connects an SD card module to a Heltec LoRa V2 microcontroller for data storage and retrieval. The SD module is interfaced with the microcontroller via SPI communication, utilizing the CS, SCK, MOSI, and MISO pins. Power is supplied to the SD module from the microcontroller's 5V output, and both modules share a common ground.
Cirkit Designer LogoOpen Project in Cirkit Designer

Technical Specifications

  • Operating Voltage: 3.3V (logic level) with onboard voltage regulator for 5V compatibility
  • Current Consumption: ~100mA (varies with SD card type and operation)
  • Supported SD Card Types: Standard SD and microSD cards (FAT16/FAT32 file systems)
  • Communication Protocol: SPI (Serial Peripheral Interface)
  • Dimensions: Typically 42mm x 24mm x 12mm (varies by manufacturer)

Pin Configuration and Descriptions

Pin Name Pin Number Description
GND 1 Ground connection
VCC 2 Power supply input (3.3V or 5V, depending on the module)
MISO 3 Master In Slave Out - SPI data output from the SD card to the microcontroller
MOSI 4 Master Out Slave In - SPI data input from the microcontroller to the SD card
SCK 5 Serial Clock - SPI clock signal
CS 6 Chip Select - Activates the SD card for communication

Usage Instructions

How to Use the SD Card Module in a Circuit

  1. Power the Module: Connect the VCC pin to a 3.3V or 5V power source (check your module's specifications) and the GND pin to ground.
  2. Connect SPI Pins:
    • Connect the MISO, MOSI, SCK, and CS pins to the corresponding SPI pins on your microcontroller.
    • For Arduino UNO, the SPI pins are:
      • MISO: Pin 12
      • MOSI: Pin 11
      • SCK: Pin 13
      • CS: Any digital pin (commonly Pin 10)
  3. Insert SD Card: Ensure the SD card is formatted to FAT16 or FAT32 before inserting it into the module.
  4. Load Required Libraries: Use libraries like the Arduino SD library to simplify communication with the SD card.

Example Code for Arduino UNO

#include <SPI.h>
#include <SD.h>

// Define the Chip Select (CS) pin for the SD card module
const int chipSelect = 10;

void setup() {
  // Initialize serial communication for debugging
  Serial.begin(9600);
  while (!Serial) {
    ; // Wait for the serial port to connect (for native USB boards)
  }

  Serial.println("Initializing SD card...");

  // Check if the SD card is present and can be initialized
  if (!SD.begin(chipSelect)) {
    Serial.println("Card failed, or not present");
    // Don't proceed if the SD card initialization fails
    while (1);
  }
  Serial.println("Card initialized successfully!");

  // Create or open a file on the SD card
  File dataFile = SD.open("example.txt", FILE_WRITE);

  // Check if the file opened successfully
  if (dataFile) {
    dataFile.println("Hello, SD card!"); // Write data to the file
    dataFile.close(); // Close the file to save changes
    Serial.println("Data written to file.");
  } else {
    Serial.println("Error opening file.");
  }
}

void loop() {
  // Nothing to do here
}

Important Considerations and Best Practices

  • Voltage Levels: Ensure the module's logic level matches your microcontroller (3.3V or 5V). Most modules have onboard regulators for 5V compatibility.
  • SD Card Formatting: Always format the SD card to FAT16 or FAT32 before use. Unformatted or unsupported file systems may cause errors.
  • Chip Select Pin: Avoid conflicts by ensuring the CS pin is unique if multiple SPI devices are connected.
  • Library Compatibility: Use the latest version of the Arduino SD library for optimal performance and compatibility.

Troubleshooting and FAQs

Common Issues

  1. SD Card Initialization Fails

    • Cause: Incorrect wiring or unsupported SD card format.
    • Solution: Double-check connections and ensure the SD card is formatted to FAT16 or FAT32.
  2. File Not Opening

    • Cause: Incorrect file path or insufficient permissions.
    • Solution: Verify the file name and ensure the file is opened in the correct mode (FILE_WRITE or FILE_READ).
  3. Data Corruption

    • Cause: Improper handling of the SD card (e.g., removing it during operation).
    • Solution: Always close files using file.close() and avoid removing the SD card while the module is powered.
  4. Slow Performance

    • Cause: Using a low-speed SD card or inefficient code.
    • Solution: Use a Class 10 or higher SD card and optimize your code for fewer read/write operations.

FAQs

  • Can I use microSD cards with this module? Yes, most SD Card Modules support microSD cards with FAT16 or FAT32 formatting.

  • What is the maximum SD card size supported? This depends on the module and library used. Typically, cards up to 32GB are supported with the Arduino SD library.

  • Can I connect multiple SD Card Modules to one microcontroller? Yes, but each module must have a unique CS pin to avoid conflicts on the SPI bus.

  • Why is my SD card not detected? Ensure proper wiring, correct voltage levels, and that the SD card is inserted securely.