Yes, but even when i put
pinMode(53, OUTPUT);
if (!SD.begin(53)) {
Serial.println("initialization failed!");
return;
}
Serial.println("initialization done.");
It's not working, but i realized something in the library says
- SD card attached to SPI bus as follows:
** MOSI - pin 11
** MISO - pin 12
** CLK - pin 13
** CS - pin 4
But in my case the pins are:
MOSI:51
MISO:50
CLK:52
CS:53
Do i have the change this? How do i change this?
Thanks