diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-05-20 16:44:29 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-05-23 10:18:39 -0400 |
commit | fce940294469a49a4d04302a790e9e399e81ad06 (patch) | |
tree | 19ea5f2958d7ee35e645d86d34da7414e6443dd2 | |
parent | 780ed306ef5fbb6a1defe71f1075885216933953 (diff) | |
download | librambutan-fce940294469a49a4d04302a790e9e399e81ad06.tar.gz librambutan-fce940294469a49a4d04302a790e9e399e81ad06.zip |
analogWrite() docs typo
-rw-r--r-- | source/lang/api/analogwrite.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lang/api/analogwrite.rst b/source/lang/api/analogwrite.rst index dd2192a..b553d8b 100644 --- a/source/lang/api/analogwrite.rst +++ b/source/lang/api/analogwrite.rst @@ -61,7 +61,7 @@ analogWrite() into the right range:: analogWrite(pin, map(duty, 0, 255, 0, 65535)); This will convert values in the range 0-255 to values in the range -0--65,635, which is the correct default range for all of the timers +0--65,535, which is the correct default range for all of the timers which control PWM output. See the :ref:`timers reference <timers>` for more information. |