#include <SPI.h>
#include <SD.h>
File myFile;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.print("Salam");
if(!SD.begin(10)){
Serial.println("Failed");
while(1);
}
Serial.println();
}
void loop() {
// put your main code here, to run repeatedly:
}