You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
2.1KB

  1. /*
  2. SD card basic file example
  3. This example shows how to create and destroy an SD card file
  4. The circuit:
  5. * SD card attached to SPI bus as follows:
  6. ** MOSI - pin 11, pin 7 on Teensy with audio board
  7. ** MISO - pin 12
  8. ** CLK - pin 13, pin 14 on Teensy with audio board
  9. ** CS - pin 4, pin 10 on Teensy with audio board
  10. created Nov 2010
  11. by David A. Mellis
  12. modified 9 Apr 2012
  13. by Tom Igoe
  14. This example code is in the public domain.
  15. */
  16. #include <SD.h>
  17. #include <SPI.h>
  18. File myFile;
  19. // change this to match your SD shield or module;
  20. // Arduino Ethernet shield: pin 4
  21. // Adafruit SD shields and modules: pin 10
  22. // Sparkfun SD shield: pin 8
  23. // Teensy audio board: pin 10
  24. // Wiz820+SD board: pin 4
  25. // Teensy 2.0: pin 0
  26. // Teensy++ 2.0: pin 20
  27. const int chipSelect = 4;
  28. void setup()
  29. {
  30. //UNCOMMENT THESE TWO LINES FOR TEENSY AUDIO BOARD:
  31. //SPI.setMOSI(7); // Audio shield has MOSI on pin 7
  32. //SPI.setSCK(14); // Audio shield has SCK on pin 14
  33. // Open serial communications and wait for port to open:
  34. Serial.begin(9600);
  35. while (!Serial) {
  36. ; // wait for serial port to connect. Needed for Leonardo only
  37. }
  38. Serial.print("Initializing SD card...");
  39. if (!SD.begin(chipSelect)) {
  40. Serial.println("initialization failed!");
  41. return;
  42. }
  43. Serial.println("initialization done.");
  44. if (SD.exists("example.txt")) {
  45. Serial.println("example.txt exists.");
  46. }
  47. else {
  48. Serial.println("example.txt doesn't exist.");
  49. }
  50. // open a new file and immediately close it:
  51. Serial.println("Creating example.txt...");
  52. myFile = SD.open("example.txt", FILE_WRITE);
  53. myFile.close();
  54. // Check to see if the file exists:
  55. if (SD.exists("example.txt")) {
  56. Serial.println("example.txt exists.");
  57. }
  58. else {
  59. Serial.println("example.txt doesn't exist.");
  60. }
  61. // delete the file:
  62. Serial.println("Removing example.txt...");
  63. SD.remove("example.txt");
  64. if (SD.exists("example.txt")){
  65. Serial.println("example.txt exists.");
  66. }
  67. else {
  68. Serial.println("example.txt doesn't exist.");
  69. }
  70. }
  71. void loop()
  72. {
  73. // nothing happens after setup finishes.
  74. }