mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
SD library updates. Renaming makeDir() to mkdir(). Replacing example. Adding keywords.txt.
This commit is contained in:
36
libraries/SD/examples/ReadWrite/ReadWrite.pde
Normal file
36
libraries/SD/examples/ReadWrite/ReadWrite.pde
Normal file
@ -0,0 +1,36 @@
|
||||
#include <SD.h>
|
||||
|
||||
File f;
|
||||
|
||||
void setup()
|
||||
{
|
||||
Serial.begin(9600);
|
||||
Serial.print("Initializing SD card...");
|
||||
SD.begin();
|
||||
Serial.println("done.");
|
||||
|
||||
f = SD.open("test.txt", true, false);
|
||||
if (f) {
|
||||
Serial.print("Writing to test.txt...");
|
||||
f.println("testing 1, 2, 3.");
|
||||
f.close();
|
||||
Serial.println("done.");
|
||||
} else {
|
||||
Serial.println("error opening test.txt");
|
||||
}
|
||||
|
||||
f = SD.open("test.txt");
|
||||
if (f) {
|
||||
Serial.println("test.txt:");
|
||||
while (f.available()) Serial.write(f.read());
|
||||
f.close();
|
||||
} else {
|
||||
Serial.println("error opening test.txt");
|
||||
}
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user