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.

преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. // 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. // open the file. note that only one file can be open at a time,
  45. // so you have to close this one before opening another.
  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. }