micropython/docs
Paul Sokolovsky dd76c8dc0f docs/library/uctypes: Add examples and make general updates.
Examples are added to the beginning of the module docs, similarly to docs
for many other modules.

Improvements to grammar, style, and clarity. Some paragraphs are updated
with better suggestions. A warning added of the effect incorrect usage of
the module may have. Describe the fact that offset range used in one
defined structure is limited.
2018-10-23 11:42:30 +11:00
..
differences
esp8266 docs: Unify all the ports into one set of documentation. 2018-10-01 13:53:53 +10:00
library docs/library/uctypes: Add examples and make general updates. 2018-10-23 11:42:30 +11:00
pyboard docs: Unify all the ports into one set of documentation. 2018-10-01 13:53:53 +10:00
readthedocs/settings
reference
static
templates docs: Unify all the ports into one set of documentation. 2018-10-01 13:53:53 +10:00
wipy docs/wipy: Fix links to network.Server, and markup for boot.py. 2018-10-01 14:08:02 +10:00
Makefile
README.md
conf.py docs: Remove sphinx_selective_exclude, it's no longer used. 2018-10-01 13:54:32 +10:00
index.rst docs: Unify all the ports into one set of documentation. 2018-10-01 13:53:53 +10:00
license.rst
make.bat

README.md

MicroPython Documentation

The MicroPython documentation can be found at: http://docs.micropython.org/en/latest/

The documentation you see there is generated from the files in the docs tree: https://github.com/micropython/micropython/tree/master/docs

Building the documentation locally

If you're making changes to the documentation, you may want to build the documentation locally so that you can preview your changes.

Install Sphinx, and optionally (for the RTD-styling), sphinx_rtd_theme, preferably in a virtualenv:

 pip install sphinx
 pip install sphinx_rtd_theme

In micropython/docs, build the docs:

make MICROPY_PORT=<port_name> html

Where <port_name> can be unix, pyboard, wipy or esp8266.

You'll find the index page at micropython/docs/build/<port_name>/html/index.html.

PDF manual generation

This can be achieved with:

make MICROPY_PORT=<port_name> latexpdf

but require rather complete install of LaTeX with various extensions. On Debian/Ubuntu, try (500MB+ download):

apt-get install texlive-latex-recommended texlive-latex-extra