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.

96 line
2.1KB

  1. /*
  2. SD card read/write
  3. This example shows how to read and write data to and from 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. // Teensy 3.5 & 3.6 on-board: BUILTIN_SDCARD
  25. // Wiz820+SD board: pin 4
  26. // Teensy 2.0: pin 0
  27. // Teensy++ 2.0: pin 20
  28. const int chipSelect = 4;
  29. void setup()
  30. {
  31. //UNCOMMENT THESE TWO LINES FOR TEENSY AUDIO BOARD:
  32. //SPI.setMOSI(7); // Audio shield has MOSI on pin 7
  33. //SPI.setSCK(14); // Audio shield has SCK on pin 14
  34. // Open serial communications and wait for port to open:
  35. Serial.begin(9600);
  36. while (!Serial) {
  37. ; // wait for serial port to connect.
  38. }
  39. Serial.print("Initializing SD card...");
  40. if (!SD.begin(chipSelect)) {
  41. Serial.println("initialization failed!");
  42. return;
  43. }
  44. Serial.println("initialization done.");
  45. // open the file.
  46. myFile = SD.open("test.txt", FILE_WRITE);
  47. // if the file opened okay, write to it:
  48. if (myFile) {
  49. Serial.print("Writing to test.txt...");
  50. myFile.println("testing 1, 2, 3.");
  51. // close the file:
  52. myFile.close();
  53. Serial.println("done.");
  54. } else {
  55. // if the file didn't open, print an error:
  56. Serial.println("error opening test.txt");
  57. }
  58. // re-open the file for reading:
  59. myFile = SD.open("test.txt");
  60. if (myFile) {
  61. Serial.println("test.txt:");
  62. // read from the file until there's nothing else in it:
  63. while (myFile.available()) {
  64. Serial.write(myFile.read());
  65. }
  66. // close the file:
  67. myFile.close();
  68. } else {
  69. // if the file didn't open, print an error:
  70. Serial.println("error opening test.txt");
  71. }
  72. }
  73. void loop()
  74. {
  75. // nothing happens after setup
  76. }