Skip to content

Commit e8aa9d6

Browse files
committed
1.2.2
1 parent ca467a2 commit e8aa9d6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/reading_from_computer_python_row_by_row/reading_from_computer_python_row_by_row.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ void setup() {
8989
// CSV_Parser cp(/*format*/ "sfccccccccccc");
9090
CSV_Parser cp(/*format*/ "sf-----------");
9191

92-
// get "Month" and "Average" columns
92+
// get "Month" and "Average" columns (must be accessed by index because the header was not supplied to the cp object yet)
9393
char **months = (char**)cp[0];
9494
float *averages = (float*)cp[1];
9595

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=CSV Parser
2-
version=1.2.1
2+
version=1.2.2
33
author=Michal Borowski <michalmonday17@gmail.com>
44
maintainer=Michal Borowski <michalmonday17@gmail.com>
55
sentence=CSV Parser for Arduino.

0 commit comments

Comments
 (0)