#include <SD.h>
File file;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
if(!SD.begin())Serial.println("SD card not detected");
else Serial.println("SD card detected");
}
void loop() {
// put your main code here, to run repeatedly:
}