36ec29d4e8
/docs/design_guide: added links to firmware build learning guides for SAMD21 & ESP8266. Changes were placed in the "Adding native modules" section, since that seemed to me the best place based on target audience. Updated documentation for `delay()` which fixes #243. |
||
---|---|---|
.. | ||
differences | ||
esp8266 | ||
library | ||
pyboard | ||
readthedocs/settings | ||
reference | ||
sphinx_selective_exclude | ||
static | ||
templates | ||
wipy | ||
c2rst.py | ||
common_hal.md | ||
design_guide.rst | ||
drivers.rst | ||
esp8266_index.rst | ||
Makefile | ||
porting.rst | ||
pyboard_index.rst | ||
README.md | ||
supported_ports.rst | ||
troubleshooting.rst | ||
unix_index.rst | ||
unsupported_ports.rst | ||
wipy_index.rst |
Adafruit's CircuitPython Documentation
The latest documentation can be found at: http://circuitpython.readthedocs.io/en/latest/
The documentation you see there is generated from the files in the whole tree: https://github.com/adafruit/circuitpython/tree/master
Building the documentation locally
If you're making changes to the documentation, you should build the documentation locally so that you can preview your changes.
Install Sphinx, recommonmark, and optionally (for the RTD-styling), sphinx_rtd_theme, preferably in a virtualenv:
pip install sphinx
pip install recommonmark
pip install sphinx_rtd_theme
In circuitpython/
, build the docs:
sphinx-build -v -b html . _build/html
You'll find the index page at _build/html/index.html
.