diff options
author | Damien George <damien@micropython.org> | 2021-12-15 11:49:22 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-12-15 11:49:22 +1100 |
commit | d9d67adef1113ab18f1bb3c0c6204ccb210a27be (patch) | |
tree | c1806e1109c043c89023253472d11909ccec7fa9 /docs/wipy/tutorial/timer.rst | |
parent | 5ca56aaf166c3e7cda178dfe809f8caf599b1dff (diff) |
docs: Remove trailing spaces and convert tabs to spaces.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'docs/wipy/tutorial/timer.rst')
-rw-r--r-- | docs/wipy/tutorial/timer.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/wipy/tutorial/timer.rst b/docs/wipy/tutorial/timer.rst index c87ac4495..7cd7d0f13 100644 --- a/docs/wipy/tutorial/timer.rst +++ b/docs/wipy/tutorial/timer.rst @@ -5,7 +5,7 @@ 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 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. +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. Example usage to toggle an LED at a fixed frequency:: |