aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-05-27 23:56:38 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2011-05-28 00:09:44 -0400
commit17a7a35f7b1c083225f35770798bc288a1c43fc1 (patch)
treea3b5c2da348f9fd6ae08a0dd83f0257471b21c97 /docs
parentae5d739f430f14886798910966165df5d2be014b (diff)
downloadlibrambutan-17a7a35f7b1c083225f35770798bc288a1c43fc1.tar.gz
librambutan-17a7a35f7b1c083225f35770798bc288a1c43fc1.zip
Docs: Improve analogwrite.rst.
Make the note warning against its usage more direct. Add a blurb introducing its purpose and links in See Also to related board-specific values.
Diffstat (limited to 'docs')
-rw-r--r--docs/source/lang/api/analogwrite.rst25
1 files changed, 15 insertions, 10 deletions
diff --git a/docs/source/lang/api/analogwrite.rst b/docs/source/lang/api/analogwrite.rst
index b553d8b..0169976 100644
--- a/docs/source/lang/api/analogwrite.rst
+++ b/docs/source/lang/api/analogwrite.rst
@@ -8,21 +8,23 @@
analogWrite()
=============
+analogWrite() is used to create a :ref:`PWM <pwm>` wave on a pin.
+
.. note::
On the Maple, calling analogWrite() is the same as calling
- :ref:`lang-pwmwrite`\ ; we recommend using that function directly
- instead.
+ :ref:`lang-pwmwrite`. We recommend writing pwmWrite() instead of
+ analogWrite().
- This is because PWM is not true analog output (i.e., is not the
- output of a `DAC
+ This is because PWM is not true analog output (it's not the output
+ of a `DAC
<http://en.wikipedia.org/wiki/Digital-to-analog_converter>`_\ ), so
- the function is badly named. For instance, analogWrite() **has
- absolutely nothing to do with** :ref:`lang-analogread`\ , which is
- potentially confusing.
+ the function is very badly named. For instance, **analogWrite()
+ has nothing to do with** :ref:`lang-analogread`\ , which can be
+ confusing.
- The alias of analogWrite() to pwmWrite() is provided for the sake
- of compatibility with Arduino only.
+ We provide analogWrite() for the sake of compatibility with Arduino
+ only.
.. contents:: Contents
:local:
@@ -67,7 +69,7 @@ for more information.
Another fix is to consult your board's :ref:`pin maps <gpio-pin-maps>`
to find the timer which controls PWM on the pin you're using, then set
-that Timer's overflow to 255. Subsequent calls to analogWrite()
+that timer's overflow to 255. Subsequent calls to analogWrite()
should work as on the Arduino (with the same loss of precision).
Note, however, that that affects the overflow for the **entire
timer**, so other code relying on that timer (such as any
@@ -162,6 +164,9 @@ See Also
--------
- :ref:`pwm`
+- :ref:`lang-pwmwrite`
+- :ref:`BOARD_NR_PWM_PINS <lang-board-values-nr-pwm-pins>`
+- :ref:`boardPWMPins <lang-board-values-pwm-pins>`
.. rubric:: Footnotes