setup docs folder

This commit is contained in:
sommersoft 2018-02-24 13:04:54 -06:00
parent f3ed452b05
commit d03b2abfa0
5 changed files with 83 additions and 5 deletions

BIN
docs/_static/favicon.ico vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -2,7 +2,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('..'))
# -- General configuration ------------------------------------------------
@ -15,8 +15,10 @@ extensions = [
'sphinx.ext.viewcode',
]
autodoc_mock_imports = ["digitalio", "micropython"]
# Uncomment the below if you use native CircuitPython modules such as
# digitalio, micropython and busio. List the modules you use. Without it, the
# autodoc module docs will fail to generate with a warning.
autodoc_mock_imports = ["micropython", "digitalio", "addfruit_bus_device"]
intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None),'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)}
@ -26,7 +28,7 @@ templates_path = ['_templates']
source_suffix = '.rst'
# The master toctree document.
master_doc = 'README'
master_doc = 'index'
# General information about the project.
project = u'Adafruit CIRCUITPYTHON_CHARLCD Library'
@ -52,7 +54,7 @@ language = None
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.env', 'CODE_OF_CONDUCT.md']
# The reST default role (used for this markup: `text`) to use for all
# documents.
@ -69,6 +71,9 @@ pygments_style = 'sphinx'
# If true, `todo` and `todoList` produce output, else they produce nothing.
todo_include_todos = False
# If this is True, todo emits a warning for each TODO entries. The default is False.
todo_emit_warnings = True
# -- Options for HTML output ----------------------------------------------
@ -93,6 +98,12 @@ else:
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# The name of an image file (relative to this directory) to use as a favicon of
# the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
#
html_favicon = '_static/favicon.ico'
# Output file base name for HTML help builder.
htmlhelp_basename = 'AdafruitCIRCUITPYTHON_CHARLCDLibrarydoc'

20
docs/examples.rst Normal file
View file

@ -0,0 +1,20 @@
Simple test
------------
Ensure your device works with this simple test.
.. literalinclude:: ../examples/charlcd_mono_simpletest.py
:caption: examples/charlcd_mono_simpletest.py
:linenos:
.. literalinclude:: ../examples/charlcd_rgb_simpletest.py
:caption: examples/charlcd_rgb_simpletest.py
:linenos:
.. literalinclude:: ../examples/charlcd_I2C_simpletest.py
:caption: examples/charlcd_I2C_simpletest.py
:linenos:
.. literalinclude:: ../examples/charlcd_SPI_simpletest.py
:caption: examples/charlcd_SPI_simpletest.py
:linenos:

47
docs/index.rst Normal file
View file

@ -0,0 +1,47 @@
.. include:: ../README.rst
Table of Contents
=================
.. toctree::
:maxdepth: 4
:hidden:
self
.. toctree::
:caption: Examples
examples
.. toctree::
:caption: API Reference
:maxdepth: 3
api
.. toctree::
:caption: Tutorials
.. toctree::
:caption: Related Products
Adafruit Character LCDs <http://www.adafruit.com/category/63_96>
.. toctree::
:caption: Other Links
Download <https://github.com/adafruit/Adafruit_CircuitPython_CharLCD/releases/latest>
CircuitPython Reference Documentation <https://circuitpython.readthedocs.io>
CircuitPython Support Forum <https://forums.adafruit.com/viewforum.php?f=60>
Discord Chat <https://adafru.it/discord>
Adafruit Learning System <https://learn.adafruit.com>
Adafruit Blog <https://blog.adafruit.com>
Adafruit Store <https://www.adafruit.com>
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`