You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/01-threading-basics.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,8 @@ The advantage of this approach is that a complex and lengthy `loop()` function (
17
17
#### Example (Single-Threaded):
18
18
This sketch demonstrates how one would implement a program which requires the execution of three different actions on three different periodic intervals. In this example we blink three different LEDs at three different intervals.
19
19
20
+

21
+
20
22
**Blink_Three_LEDs.ino**:
21
23
22
24
```C++
@@ -59,7 +61,9 @@ You can imagine that with increasing complexity of a sketch it gets quite diffic
59
61
60
62
#### Example (Multi-Threaded):
61
63
62
-
The same functionality can be provided via multi-threaded execution in a much cleaner way.
64
+
The same functionality can be provided via multi-threaded execution in a much cleaner way by splitting up the tasks into separate files / threads.
65
+
66
+

0 commit comments