aboutsummaryrefslogtreecommitdiff
path: root/docs/library/machine.Timer.rst
diff options
context:
space:
mode:
authordanicampora <daniel@wipy.io>2016-02-22 19:16:30 +0100
committerdanicampora <daniel@wipy.io>2016-02-22 19:16:30 +0100
commit12547ce737741bab006900c8e325b86c955e057e (patch)
tree40447923468f2f09b5cc41295a64baabcdbec1b7 /docs/library/machine.Timer.rst
parentcc7a4d7db2e56d19034ab2efb3cb4bec77df7d38 (diff)
docs: Minor change to improve clarity in machine.Timer docs.
Diffstat (limited to 'docs/library/machine.Timer.rst')
-rw-r--r--docs/library/machine.Timer.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/library/machine.Timer.rst b/docs/library/machine.Timer.rst
index 868470f67..ded72b5c9 100644
--- a/docs/library/machine.Timer.rst
+++ b/docs/library/machine.Timer.rst
@@ -7,8 +7,8 @@ class Timer -- control internal timers
Timers can be used for a great variety of tasks, calling a function periodically,
counting events, and generating a PWM signal are among the most common use cases.
- Each timer consists of 2 16-bit channels and this channels can be tied together to
- form 1 32-bit timer. The operating mode needs to be configured per timer, but then
+ Each timer consists of two 16-bit channels and this channels can be tied together to
+ form one 32-bit timer. The operating mode needs to be configured per timer, but then
the period (or the frequency) can be independently configured on each channel.
By using the callback method, the timer event can call a Python function.