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: README.md
+11-11
Original file line number
Diff line number
Diff line change
@@ -40,9 +40,9 @@ ChangeLog
40
40
How to use
41
41
----------
42
42
43
-
1. create new **Tasker** folder under your Arduino projects' libraries folder and place Tasker files there so the header file ends in **./libraries/Tasker/Tasker.h**
44
-
2. in Arduino IDE load File -> Examples -> Tasker -> MultiBlink
45
-
3. see how easy it is to add three tasks and run them all at once
43
+
1. create new **Tasker** folder under your Arduino projects' libraries folder and place Tasker files there so the header file ends in **./libraries/Tasker/Tasker.h** or **install from Arduino Library Manager**
44
+
2. in Arduino IDE load File -> Examples -> Tasker -> MultiBlink (or other examples found there)
45
+
3. see how easy it is to add three tasks and run them all at once (or read the DS18B20 without waiting)
46
46
4. use that example as a basis for your own code
47
47
48
48
Tasker API
@@ -78,12 +78,8 @@ Tasker API
78
78
Best to be called as often as possible, ideally in the Arduino's <code>loop()</code> function:
79
79
80
80
```cpp
81
-
void setup() {
82
-
tasker.setInterval(...);
83
-
}
84
-
85
81
void loop() {
86
-
tasker.loop(); // needs to be called as often as possible
0 commit comments