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 години
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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
  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. if (!SD.begin(chipSelect)) {
  37. Serial.println("initialization failed!");
  38. return;
  39. }
  40. Serial.println("initialization done.");
  41. // open the file. note that only one file can be open at a time,
  42. // so you have to close this one before opening another.
  43. myFile = SD.open("test.txt", FILE_WRITE);
  44. // if the file opened okay, write to it:
  45. if (myFile) {
  46. Serial.print("Writing to test.txt...");
  47. myFile.println("testing 1, 2, 3.");
  48. // close the file:
  49. myFile.close();
  50. Serial.println("done.");
  51. } else {
  52. // if the file didn't open, print an error:
  53. Serial.println("error opening test.txt");
  54. }
  55. // re-open the file for reading:
  56. myFile = SD.open("test.txt");
  57. if (myFile) {
  58. Serial.println("test.txt:");
  59. // read from the file until there's nothing else in it:
  60. while (myFile.available()) {
  61. Serial.write(myFile.read());
  62. }
  63. // close the file:
  64. myFile.close();
  65. } else {
  66. // if the file didn't open, print an error:
  67. Serial.println("error opening test.txt");
  68. }
  69. }
  70. void loop()
  71. {
  72. // nothing happens after setup
  73. }