Hi, community!
Trying to connect SD card module to XIAO ESP32S3
SD card module: https://aliexpress.ru/item/32673631024.html
I connect all wires as stated in the article Portable GPS Tracker with Arduino | by Joshua Hrisko | Medium
But it doesn’t work for me. In serial monitor i see only ‘Waiting SD’. But if i change CS wire to D3, for example, i’ve got ‘SD card not found’.
Also i tried this code on XIAO SAMD21 and it works.
Maybe there are some peculiarities of working with the XIAO ESP32S3 board?
Code is simple
void setup() {
Serial.begin(9600);
Serial.println("Waiting SD");
if (!SD.begin(6)) {
oled.println("SD card not found");
while (true)
;
}
Serial.println("SD ready");
}