Skip to content

Commit 37808b1

Browse files
authored
Update README.md
1 parent 7dc9a7a commit 37808b1

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,12 @@ This library helps streamline complex timing operations and keeps your code orga
4444
- **Example:**
4545
```cpp
4646
delayObj.NewDelayFunction(1000, myCallback); // Executes myCallback every 1000ms
47-
```
47+
4848
### 3. `void updateTime(void (*callback)(), unsigned long interval)`
4949
- **Description:** Updates the interval of an existing timer associated with the given `callback`.
5050
- **Example:**
5151
```cpp
5252
delayObj.updateTime(myCallback, 500); // Changes interval to 500ms
53-
```
5453

5554
### 4. `void loop()`
5655
- **Description:** Call this method in the main `loop()` function to keep the timers running and execute callbacks when needed.

0 commit comments

Comments
 (0)