Skip to content

Commit 8540bda

Browse files
committed
Added '/' in filename
1 parent e4dbbce commit 8540bda

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/reading_from_sd_card/reading_from_sd_card.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ void setup() {
3636

3737

3838
CSV_Parser cp(/*format*/ "dd", /*has_header*/ true, /*delimiter*/ ',');
39-
cp.readSDfile("file.csv"); // this wouldn't work if SD.begin wasn't called before
39+
cp.readSDfile("/file.csv"); // this wouldn't work if SD.begin wasn't called before
4040

4141
int16_t *column_1 = (int16_t*)cp["column_1"];
4242
int16_t *column_2 = (int16_t*)cp["column_2"];

0 commit comments

Comments
 (0)