summaryrefslogtreecommitdiff
path: root/docs/esp32/tutorial/index.rst
diff options
context:
space:
mode:
authorIhorNehrutsa <Ihor.Nehrutsa@gmail.com>2021-09-19 00:41:42 +0300
committerDamien George <damien@micropython.org>2021-09-21 23:28:16 +1000
commit71111cffbaef778635e212550ff3f0521c43f592 (patch)
tree6dcd471d4c61c2d3c73c73ab795c99a8053dd308 /docs/esp32/tutorial/index.rst
parent52636fa69232002f3d8ebed583f8ee61a55878d4 (diff)
docs/esp32: Explain ESP32 PWM modes, timers, and channels.
Diffstat (limited to 'docs/esp32/tutorial/index.rst')
-rw-r--r--docs/esp32/tutorial/index.rst22
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/esp32/tutorial/index.rst b/docs/esp32/tutorial/index.rst
new file mode 100644
index 000000000..e9cfd9db1
--- /dev/null
+++ b/docs/esp32/tutorial/index.rst
@@ -0,0 +1,22 @@
+.. _esp32_tutorial:
+
+MicroPython tutorial for ESP32
+==============================
+
+This tutorial is intended to get you started using MicroPython on the ESP32
+system-on-a-chip. If it is your first time it is recommended to follow the
+tutorial through in the order below. Otherwise the sections are mostly self
+contained, so feel free to skip to those that interest you.
+
+The tutorial does not assume that you know Python, but it also does not attempt
+to explain any of the details of the Python language. Instead it provides you
+with commands that are ready to run, and hopes that you will gain a bit of
+Python knowledge along the way. To learn more about Python itself please refer
+to `<https://www.python.org>`__.
+
+.. toctree::
+ :maxdepth: 1
+ :numbered:
+
+ intro.rst
+ pwm.rst