File tree 1 file changed +5
-7
lines changed
1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
- ##########
1
+ #####
2
2
Timer
3
- ##########
3
+ #####
4
4
5
5
About
6
6
-----
@@ -19,7 +19,7 @@ ESP32-S3 4
19
19
========= ================
20
20
21
21
Arduino-ESP32 Timer API
22
- ----------------------------
22
+ -----------------------
23
23
24
24
timerBegin
25
25
**********
@@ -31,11 +31,9 @@ This function is used to configure the timer. After successful setup the timer w
31
31
hw_timer_t * timerBegin(uint8_t num, uint16_t divider, bool countUp);
32
32
33
33
* ``num `` select timer number.
34
- * ``divider `` select timer divider.
35
- * ``resolution `` select timer resolution .
34
+ * ``divider `` select timer divider. Sets how quickly the timer counter is “ticking”.
35
+ * ``countUp `` select timer direction. Sets if the counter should be incrementing or decrementing .
36
36
37
- * range is 1-14 bits (1-20 bits for ESP32).
38
-
39
37
This function will return ``timer `` structure if configuration is successful.
40
38
If ``NULL `` is returned, error occurs and the timer was not configured.
41
39
You can’t perform that action at this time.
0 commit comments