Serial Monitor Image:
CodeUsed: GitHub
Funny that if I comment on that part of the code:
myFile = SD.open("dados.txt", FILE_WRITE);
if (myFile){
Serial.print("Escrevendo em arquivo..."); //Escreve no arquivo
myFile.println("hello SD Card Shield!"); //Teste de escrita
myFile.close(); //Fecha o arquivo
Serial.println("Escrita finalizada"); //Informa escrita finalizada
}else{
Serial.println("Erro ao abrir arquivo"); //Informa que há algum erro
}
The arduino does not restart, however, I can not write the data in the .txt file.