Problemas de lectura de microSD en OPLA

Buen día.

Estoy teniendo problemas para poder guardar archivos en la microSD usando el OPLÁ IoT KIT ya que cuando conecto la micro en el shield, me dice dice que no detecta la misma, he probado varios códigos y configuraciones y no logro hacerlo funcionar.
Ojala me puedan ayudar adjunto códigos usados y captura de panta del error

Código 1

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

const int chipSelect = SDCARD_SS_PIN;
const int chipSelect = SDCARD_CS_PIN;
const int chipSelect = 0;

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 += ",";
    }
  }

  // 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);

  // if the file is available, write to it:
  if (dataFile) {
    dataFile.println(dataString);
    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");
  }
  delay(1000);
}

Código 2

#include <Arduino_MKRIoTCarrier.h>
MKRIoTCarrier carrier;

File myFile;

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
  }

  //  Init the entire Carrier
  CARRIER_CASE = false;
  carrier.begin();
  
  // open the file. note that only one file can be open at a time,
  // so you have to close this one before opening another.
  myFile = SD.open("datalog.csv", FILE_WRITE);

  // if the file opened okay, write to it:
  if (myFile) {
    Serial.print("Writing to test.txt...");
    myFile.println("testing 1, 2, 3.");
    // close the file:
    myFile.close();
    Serial.println("done.");
  } else {
    // if the file didn't open, print an error:
    Serial.println("error opening test.txt");
  }

  // re-open the file for reading:
  myFile = SD.open("datalog.csv");
  if (myFile) {
    Serial.println("datalog.csv:");

    // read from the file until there's nothing else in it:
    while (myFile.available()) {
      Serial.write(myFile.read());
    }
    // close the file:
    myFile.close();
  } else {
    // if the file didn't open, print an error:
    Serial.println("error opening test.txt");
  }
}

void loop() {
  // nothing happens after setup
}

image

:warning:
Código corregido

Tu publicación fue ** MOVIDA ** a su ubicación actual ya que es más adecuada.

¿Podría también tomarse unos minutos para Aprenda a usar el foro .

¿Puedes poner el esquema /foto de conexión del arduino con el SD así como del lector SD que estás usando?
Saludos.

perdona, es el OPLA que ya lleva incrustado microSD...

Buen dia, efectivamente, estoy metiendo la sd en carrier y no la lee, ya probé hacerlo con un mkr Zero y si funciona, solo que tengo que incrustar la microsd sobre la mkrzero y no sobre el carrier, no se cual sea el problema

Busca el esquemático (schematic) y revisa conexiones (continuidad) con un tester.
Revisa las soldaduras a ver si algo no luce bien.

He buscado tu placa solo para comprender que se trata de un shield que usa un MKR1010 asi que enfoquémosnos en esto.
Segun este hilo que te invito a leer hay un bug

y si no, mira este otro
https://forums.adafruit.com/viewtopic.php?f=22&t=148586
Pero te aseguro que con el primero tal vez resuelvas tu problema.

Buen dia, ya intente ambas opciones pero no funciona, estoy usando un Arduino MKR 1010 y no logro hacerlo funcionar, no entiendo bien que pase, ya lo revise físicamente y el producto esta en buenas condiciones
Ojala me puedas ayudar :frowning_face:

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