• 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 400 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 (24.3K 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

  • What Online Casinos Have No Deposit Bonus in Australia March 30, 2023
  • Four Foolproof Tips To Never Run Out Of Blog Ideas For Your Website March 28, 2023
  • The Interactive Entertainment Serving as a Tech Proving Ground March 28, 2023
  • Is it Good to Run Apache Web server and MySQL Database on Separate Cloud Servers? March 27, 2023
  • Advantages of Cloud Server Over Dedicated Server for Hosting WordPress March 26, 2023

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, March 31, 2023, https://thecustomizewindows.com/2018/01/arduino-diy-sd-card-reader-cheap-sd-card-reader-module/.

Source:The Customize Windows, JiMA.in

PC users can consult Corrine Chorney for Security.

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

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

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

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT