summaryrefslogtreecommitdiffstatshomepage
path: root/docs/tutorial/amp_skin.rst
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-11-02 23:37:02 +0000
committerDamien George <damien.p.george@gmail.com>2014-11-02 23:37:02 +0000
commit6e6dfdc56be2a5d6476d087043d2a4ccae139af2 (patch)
treef63db0de4531eacf91fdc94ed34bc060c2439cef /docs/tutorial/amp_skin.rst
parent1060baa2c26d45c2641ee786581655eb44ffda90 (diff)
downloadmicropython-6e6dfdc56be2a5d6476d087043d2a4ccae139af2.tar.gz
micropython-6e6dfdc56be2a5d6476d087043d2a4ccae139af2.zip
docs: Make custom index page; add more docs.
Diffstat (limited to 'docs/tutorial/amp_skin.rst')
-rw-r--r--docs/tutorial/amp_skin.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tutorial/amp_skin.rst b/docs/tutorial/amp_skin.rst
index 66513a5b2a..fbf0bde2d3 100644
--- a/docs/tutorial/amp_skin.rst
+++ b/docs/tutorial/amp_skin.rst
@@ -51,11 +51,11 @@ For example::
dac.write_timed(buf, 400 * len(buf), mode=DAC.CIRCULAR)
You can also play WAV files using the Python ``wave`` module. You can get
-the wave module [here](/static/doc/examples/wave.py) and you will also need
-the chunk module available [here](/static/doc/examples/chunk.py). Put these
+the wave module `here <http://micropython.org/static/doc/examples/wave.py>`_ and you will also need
+the chunk module available `here <http://micropython.org/static/doc/examples/chunk.py>`_. Put these
on your pyboard (either on the flash or the SD card in the top-level
directory). You will need an 8-bit WAV file to play, such as
-[this one](/static/doc/examples/test.wav). Then you can do::
+`this one <http://micropython.org/static/doc/examples/test.wav>`_. Then you can do::
>>> import wave
>>> from pyb import DAC