Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sstaub authored Mar 21, 2018
1 parent 97ae933 commit 659ef3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Creates a Ticker object
- parameter interval sets the interval time in ms
- parameter interval resolution can changed to us instead of ms with setting the parameter resolution to MICROS_MICROS
- parameter repeats sets the number of repeats the callback should executed, 0 is endless
- parameter resolution sets the internal resolution of the Ticker, it can MICROS or MILLIS
- parameter resolution sets the internal resolution of the Ticker, it can MICROS, MILLIS or MICROS_MICROS (for us intervals)

**~Ticker()**<br>
Destructor for Ticker object
Expand All @@ -143,7 +143,7 @@ Stop the Ticker.
Must to be called in the loop(), it will check the Ticker, and if necessary, will run the callback

**void setInterval(uint32_t interval)**<br>
Set callback interval in ms.
Set callback interval in ms or us when using MICROS_MICROS.

**void setCallback(ftpr callback)**<br>
Set function callback.
Expand Down

0 comments on commit 659ef3c

Please sign in to comment.