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.

Files.ino 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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
  7. ** MISO - pin 12
  8. ** CLK - pin 13
  9. ** CS - pin 4
  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. // Open serial communications and wait for port to open:
  31. Serial.begin(9600);
  32. while (!Serial) {
  33. ; // wait for serial port to connect. Needed for Leonardo only
  34. }
  35. Serial.print("Initializing SD card...");
  36. // On the Ethernet Shield, CS is pin 4. It's set as an output by default.
  37. // Note that even if it's not used as the CS pin, the hardware SS pin
  38. // (10 on most Arduino boards, 53 on the Mega) must be left as an output
  39. // or the SD library functions will not work.
  40. pinMode(10, OUTPUT);
  41. if (!SD.begin(chipSelect)) {
  42. Serial.println("initialization failed!");
  43. return;
  44. }
  45. Serial.println("initialization done.");
  46. if (SD.exists("example.txt")) {
  47. Serial.println("example.txt exists.");
  48. }
  49. else {
  50. Serial.println("example.txt doesn't exist.");
  51. }
  52. // open a new file and immediately close it:
  53. Serial.println("Creating example.txt...");
  54. myFile = SD.open("example.txt", FILE_WRITE);
  55. myFile.close();
  56. // Check to see if the file exists:
  57. if (SD.exists("example.txt")) {
  58. Serial.println("example.txt exists.");
  59. }
  60. else {
  61. Serial.println("example.txt doesn't exist.");
  62. }
  63. // delete the file:
  64. Serial.println("Removing example.txt...");
  65. SD.remove("example.txt");
  66. if (SD.exists("example.txt")){
  67. Serial.println("example.txt exists.");
  68. }
  69. else {
  70. Serial.println("example.txt doesn't exist.");
  71. }
  72. }
  73. void loop()
  74. {
  75. // nothing happens after setup finishes.
  76. }