aboutsummaryrefslogtreecommitdiff
path: root/docs/library/machine.Timer.rst
diff options
context:
space:
mode:
authordanicampora <daniel@wipy.io>2016-02-23 19:53:26 +0100
committerdanicampora <daniel@wipy.io>2016-02-23 19:53:59 +0100
commit8e1fdf2eb3444740d1631878c270cf0003b5d404 (patch)
treef29ac445512fb09eb6ea4a308e2f2779b9d5fe12 /docs/library/machine.Timer.rst
parent28adab36c795691a9064495a18d44ebc69c5db64 (diff)
docs: Add note on machine.Timer class regarding PWM output pins.
Diffstat (limited to 'docs/library/machine.Timer.rst')
-rw-r--r--docs/library/machine.Timer.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/library/machine.Timer.rst b/docs/library/machine.Timer.rst
index ded72b5c9..a3be95b0e 100644
--- a/docs/library/machine.Timer.rst
+++ b/docs/library/machine.Timer.rst
@@ -126,6 +126,17 @@ Methods
doesn't support floating point numbers the duty cycle must be specified in the range 0-10000,
where 10000 would represent 100.00, 5050 represents 50.50, and so on.
+ .. note::
+
+ When the channel is in PWM mode, the corresponding pin is assigned automatically, therefore
+ there's no need to assign the alternate function of the pin via the ``Pin`` class. The pins which
+ support PWM functionality are the following:
+
+ - ``GP24`` on Timer 0 channel A.
+ - ``GP25`` on Timer 1 channel A.
+ - ``GP9`` on Timer 2 channel B.
+ - ``GP10`` on Timer 3 channel A.
+ - ``GP11`` on Timer 3 channel B.
class TimerChannel --- setup a channel for a timer
==================================================