• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here: Home » Arduino DIY SD Card Reader and Cheap SD Card Reader Module

By Abhishek Ghosh January 3, 2018 4:06 pm Updated on January 3, 2018

Arduino DIY SD Card Reader and Cheap SD Card Reader Module

Advertisement

For Projects Like Arduino Door Bell We Need Some Extra Storage & Arduino DIY SD Card Reader and Cheap SD Card Reader Module Becomes Practical Matter. It is true that we can play MP3 with Arduino without SD card, but that has limitations. It may appear silly when cheap Made in China SD card readers avaible at $1.5 but actually DIY can save space or just great to test without much resource. This is a helpful and must to read resource around SD, Micro SD cards :

Vim
1
https://www.arduino.cc/en/Reference/SDCardNotes

 

Arduino DIY SD Card Reader

 

This is diagram of improved version of SD card reader as well as ordinary version :

Arduino DIY SD Card Reader and Cheap SD Card Reader Module

Possibly the above illustration is enough to understand many things and we need to type to make you reading a lot. But what is that LD1117A33? That LD1117A33 is a voltage regulator, you’ll get datasheet here :

Advertisement

---

Vim
1
2
https://www.sparkfun.com/datasheets/Components/LD1117V33.pdf
http://www.taitroncomponents.com/catalog/Datasheet/LD1117A12.pdf

Any similar voltage regulator will work fine, unlike IC you need not to find exactly the same thing.

Creating a SD card socket is just easy. You need 2 sets to male pin header. Glue them side by side so that the SD card can be plugged within two rows of pins and card’s contacts get contact with the pin headers. This is exactly that is written in details with photographs :

Vim
1
http://www.instructables.com/id/Cheap-DIY-SD-card-breadboard-socket/

 

Cheap SD Card Reader Module

 

Cheap means, we hunt the cost effective one. Unlike too common Arduino modules like TM1637, these modules, shields are easy to make you rip off exactly like Arduino sound module.

Adafruit’s Micro SD card reader is a good example :

Vim
1
https://www.adafruit.com/product/254

But Adafruit’s one is far from being cheap. But datasheet, schematic available:

Vim
1
https://learn.adafruit.com/adafruit-micro-sd-breakout-board-card-tutorial/download

SparkFun also has similar with shifting level hardware :

Vim
1
https://www.sparkfun.com/products/13743

China, Hong Kong products have no quality control and possibly you should not use a substandard cheap SD card reader with a costly SD card. Your card’s death is an important matter. We really can not see, measure much things on China’s usual design of PCB. If you use too cheap card reader, card should be cheap too.

 

General Matters Around SD/Micro SD Card Reader Modules

 

We are not going o technical matters like SPI. This is usually the wiring :

Wiring-SD-Card-Module-Arduino

This is example test code, you’ll need monitoring at serial monitor :

Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <SD.h> //Include the SD.h Code Library
 
const int chipSelect = 4; //Select at pin 4
void setup()
{
Serial.begin(9600); //Start Serial Communication Info at boud rate 9600
Serial.print("14CORE SD Initializing...");
// make sure that the default chip select pin is set to
// output, even if you don't use it:
pinMode(10, OUTPUT); //Define as ouput
// Note if the card is present and can be initialized:
if (!SD.begin(chipSelect)) {
   Serial.println("14CORE Card failed, or not present");
   //Stop do not do anything
   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("14COREData.txt", FILE_WRITE); // Write
if (dataFile) {
   dataFile.println(dataString);
   dataFile.close();
   Serial.println(dataString);
}  
else {
   Serial.println("Error opening 14COREData.txt Data"); // Failed to read the file
}
}

Tagged With diy sd card reader , arduino sd card reader , diy sd card module , connect laptop sd card reader to arduino , cheap sd card module , tikka kebab circuit design , diy 5v reader , diy cardreader , diy leitor sd card arduino , arduino sd reader spec sheet

This Article Has Been Shared 473 Times!

Facebook Twitter Pinterest
Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Arduino DIY SD Card Reader and Cheap SD Card Reader Module

  • Creating Circuits With Wire, Resin (Tikka Kebab Circuit Design)

    Humans Have Discovered Yummy Tikka Kebab Circuit Design. How To Around Creating Circuits With Wire, Resin, Soldier And No PCB At China Price.

  • Arduino 8 Digit 7 Segment LED Display Buying Guide

    Here Is Arduino 8 Digit 7 Segment LED Display Buying Guide. These Are Driven By MAX7219/MAX7221 Driver Which Supports LED Dot Matrix Too.

  • Arduino UNO Prototype Shield Tutorial

    In Arduino UNO Prototype Shield Tutorial We Have Talked How We Can Use to Convert a Project Semi-Permanent With Shield, Components & Solder.

  • Arduino Temperature Humidity Sensor : New DHT11, DHT21, DHT22 Test Code

    Here is New Test Codes For Arduino Temperature Humidity Sensor DHT11, DHT21, DHT22 Test Code as Hardware (Not Shields). 2 Libraries Needed.

  • Connecting Arduino With M029 JoyStick : Getting Started

    Here is a Getting Started Guide Around Connecting Arduino With M029 JoyStick and Testing With Basic Code. It is a useful thing for robotics.

Additionally, performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (22.1K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Why Data Management is so Important in a Business July 6, 2022
  • Application Modernization : Cloud Can Take Your Applications to the Next Level July 5, 2022
  • Ways To Make Sure Your Online Course Outshine Others July 3, 2022
  • Will Smart Factories Become the New Assembly Line? July 2, 2022
  • The Cost of Doing Business as a Handyman July 1, 2022

About This Article

Cite this article as: Abhishek Ghosh, "Arduino DIY SD Card Reader and Cheap SD Card Reader Module," in The Customize Windows, January 3, 2018, July 7, 2022, https://thecustomizewindows.com/2018/01/arduino-diy-sd-card-reader-cheap-sd-card-reader-module/.

Source:The Customize Windows, JiMA.in

This website uses cookies. If you do not want to allow us to use cookies and/or non-personalized Ads, kindly clear browser cookies after closing this webpage.

Read Privacy Policy.

PC users can consult Corrine Chorney for Security.

Want to know more about us? Read Notability and Mentions & Our Setup.

Copyright © 2022 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy