We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e542ba commit a5a6a1eCopy full SHA for a5a6a1e
1 file changed
examples/reading_from_sd_card/reading_from_sd_card.ino
@@ -55,14 +55,15 @@ void setup() {
55
} else {
56
Serial.println("ERROR: At least 1 of the columns was not found, something went wrong.");
57
}
58
+
59
+ // output parsed values (allows to check that the file was parsed correctly)
60
+ cp.print(); // assumes that "Serial.begin()" was called before (otherwise it won't work)
61
62
63
Serial.println("ERROR: File called '/file.csv' does not exist...");
64
-
- // output parsed values (allows to check that the file was parsed correctly)
- cp.print(); // assumes that "Serial.begin()" was called before (otherwise it won't work)
65
66
67
void loop() {
68
-}
69
+}
0 commit comments