Skip to content

Commit 6dfe187

Browse files
author
Mario
committed
fix README
1 parent 2776fb7 commit 6dfe187

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,18 @@ void setup() {
8282
}
8383
```
8484

85+
#### Running required operations
86+
87+
You must call `logger.process()` in your loop to run the required operations (file updates and rotation). E.g.:
88+
89+
```cpp
90+
void loop() {
91+
// your code is here
92+
93+
logger.process();
94+
}
95+
```
96+
8597
#### Writing data
8698

8799
Simply call `logger.write()` and the data will be logged with the current timestamp:

0 commit comments

Comments
 (0)