We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dc9a7a commit 37808b1Copy full SHA for 37808b1
1 file changed
README.md
@@ -44,13 +44,12 @@ This library helps streamline complex timing operations and keeps your code orga
44
- **Example:**
45
```cpp
46
delayObj.NewDelayFunction(1000, myCallback); // Executes myCallback every 1000ms
47
-```
+
48
### 3. `void updateTime(void (*callback)(), unsigned long interval)`
49
- **Description:** Updates the interval of an existing timer associated with the given `callback`.
50
51
52
delayObj.updateTime(myCallback, 500); // Changes interval to 500ms
53
54
55
### 4. `void loop()`
56
- **Description:** Call this method in the main `loop()` function to keep the timers running and execute callbacks when needed.
0 commit comments