From 659ef3ca3f1e06d1316e9fa98ffb71ac1cd0ae1b Mon Sep 17 00:00:00 2001 From: sstaub Date: Wed, 21 Mar 2018 14:19:07 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0706613..52057e3 100755 --- a/README.md +++ b/README.md @@ -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()**
Destructor for Ticker object @@ -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)**
-Set callback interval in ms. +Set callback interval in ms or us when using MICROS_MICROS. **void setCallback(ftpr callback)**
Set function callback.