SD module cant save data?

Im making GPS tracker, but i have a lot of issues with my SD module. Im new to arduino and this is my first post so i may dont understand a lot of things, please be patient.
When i started doing this project most of the time i couldnt initialize SD, after some research i found this video:, so i bought 1 and 2 GB SD cards ithat replaced of my old 8 GB micro SDHC. Looks like its working sometimes depending on connections.
if i use GND near MISO as only ground then it doesnt work at all.
if i use "back" (closer to the edge) pins it doesnt work at all.
I tested it with external power source to power arduino and it works sometimes. does initialize 80% of the times, but saves only something like 1% of data
When im powering it via arduino it does initialize, it says that first log is saved, but its not and it doesnt save anything after that.
it doesnt matter if i use 3.3V or 5V as power.
also i found that delays makes it save more data.

Im using SD library examples

SD card datalogger

  This example shows how to log data from three analog sensors
  to an SD card using the SD library.

  The circuit:
   analog sensors on analog ins 0, 1, and 2
   SD card attached to SPI bus as follows:
 ** MOSI - pin 11
 ** MISO - pin 12
 ** CLK - pin 13
 ** CS - pin 4 (for MKRZero SD: SDCARD_SS_PIN)

  created  24 Nov 2010
  modified 9 Apr 2012
  by Tom Igoe

  This example code is in the public domain.

*/

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

const int chipSelect = 4;

void setup() {
  // Open serial communications and wait for port to open:
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for native USB port only
  }


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

  // 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:
    while (1);
  }
  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 += ",";
    }
  }

  delay(200);
  // open the file. note that only one file can be open at a time,
  // so you have to close this one before opening another.
  File dataFile = SD.open("datalog.txt", FILE_WRITE);
  delay(200);
  // if the file is available, write to it:
  if (dataFile) {
    dataFile.println(dataString);
    delay(300);
    dataFile.close();
    // print to the serial port too:
    Serial.println(dataString);
  }
  // if the file isn't open, pop up an error:
  else {
    Serial.println("error opening datalog.txt");
  }
}

Update:
For some reason when im holding hand over arduino it works

.... unstable contacts....
Do you make connections via breadboard or solder it?

Please post links to the components, a wiring diagram and a picture of your setup.

From the description, intermittent connections may be the problem.

Please post link's to all you're equipment, as well as a schematic.

It's also worth noting that if you're using the same SD card module as the author of the video you linked, it is not safe to use for a conventional Arduino UNO/Nano board running at 5v 16MHZ, as there is no proper level shifting circuity to allow the 3.3v SD card to be used with the 5V arduino pins. This could destroy the SD card: Do not use this SD card module with 5V Arduinos.

Such a module should work fine for 3.3V arduino's, such as the Arduino pro mini, of an ESP8266/ESP32.
image

There are also a lot of cheap SD module's with improper level shifters to use with 5V Arduino's. The one's that Adafruit sell are good: MicroSD card breakout board+ : ID 254 : $7.50 : Adafruit Industries, Unique & fun DIY electronics and kits.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.