summaryrefslogtreecommitdiffstatshomepage
path: root/docs/tutorial/amp_skin.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorial/amp_skin.rst')
-rw-r--r--docs/tutorial/amp_skin.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/tutorial/amp_skin.rst b/docs/tutorial/amp_skin.rst
index fbf0bde2d3..dd949e180f 100644
--- a/docs/tutorial/amp_skin.rst
+++ b/docs/tutorial/amp_skin.rst
@@ -3,11 +3,11 @@ The AMP audio skin
Soldering and using the AMP audio skin.
-.. image:: http://micropython.org/static/doc/skin-amp-1.jpg
+.. image:: img/skin_amp_1.jpg
:alt: AMP skin
:width: 250px
-.. image:: http://micropython.org/static/doc/skin-amp-3.jpg
+.. image:: img/skin_amp_2.jpg
:alt: AMP skin
:width: 250px
@@ -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 <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
+the wave module `here <http://micropython.org/resources/examples/wave.py>`_ and you will also need
+the chunk module available `here <http://micropython.org/resources/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 <http://micropython.org/static/doc/examples/test.wav>`_. Then you can do::
+`this one <http://micropython.org/resources/examples/test.wav>`_. Then you can do::
>>> import wave
>>> from pyb import DAC