Skip to content

Commit 5f0c595

Browse files
authored
Merge pull request #3 from sommersoft/new_docs
Improve Ref Docs
2 parents 520d8a3 + 392e1a9 commit 5f0c595

9 files changed

+123
-15
lines changed
File renamed without changes.

.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ deploy:
1616
provider: releases
1717
api_key: $GITHUB_TOKEN
1818
file_glob: true
19-
file: bundles/*
19+
file: $TRAVIS_BUILD_DIR/bundles/*
2020
skip_cleanup: true
2121
overwrite: true
2222
on:
2323
tags: true
2424

2525
install:
26-
- pip install pylint circuitpython-build-tools
26+
- pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme
2727

2828
script:
2929
- pylint adafruit_focaltouch.py
3030
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name examples/*.py)
3131
- circuitpython-build-bundles --filename_prefix adafruit-circuitpython-focaltouch --library_location .
32+
- cd docs && sphinx-build -E -W -b html . _build/html

README.rst

+27-8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ Introduction
1010
:target: https://discord.gg/nBQh6qu
1111
:alt: Discord
1212
13+
.. image:: https://travis-ci.org/adafruit/Adafruit_CircuitPython_FocalTouch.svg?branch=master
14+
:target: https://travis-ci.org/adafruit/Adafruit_CircuitPython_FocalTouch
15+
:alt: Build Status
16+
1317
CircuitPython driver for common low-cost FocalTech capacitive touch chips.
1418
Currently supports FT6206 & FT6236
1519

@@ -44,14 +48,6 @@ Usage Example
4448
if n:
4549
print(ft.touches)
4650
47-
API Reference
48-
=============
49-
50-
.. toctree::
51-
:maxdepth: 2
52-
53-
api
54-
5551
Contributing
5652
============
5753

@@ -82,3 +78,26 @@ Then run the build:
8278
.. code-block:: shell
8379
8480
circuitpython-build-bundles --filename_prefix adafruit-circuitpython-focaltouch --library_location .
81+
82+
Sphinx documentation
83+
-----------------------
84+
85+
Sphinx is used to build the documentation based on rST files and comments in the code. First,
86+
install dependencies (feel free to reuse the virtual environment from above):
87+
88+
.. code-block:: shell
89+
90+
python3 -m venv .env
91+
source .env/bin/activate
92+
pip install Sphinx sphinx-rtd-theme
93+
94+
Now, once you have the virtual environment activated:
95+
96+
.. code-block:: shell
97+
98+
cd docs
99+
sphinx-build -E -W -b html . _build/html
100+
101+
This will output the documentation to ``docs/_build/html``. Open the index.html in your browser to
102+
view them. It will also (due to -W) error out on any warning like Travis will. This is a good way to
103+
locally verify it will pass.

adafruit_focaltouch.py

+20-1
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,28 @@
2323
`adafruit_focaltouch`
2424
====================================================
2525
26-
TODO(description)
26+
CircuitPython driver for common low-cost FocalTech capacitive touch chips.
27+
Currently supports FT6206 & FT6236.
2728
2829
* Author(s): ladyada
30+
31+
Implementation Notes
32+
--------------------
33+
34+
**Hardware:**
35+
36+
* Adafruit `2.8" TFT LCD with Cap Touch Breakout Board w/MicroSD Socket
37+
<http://www.adafruit.com/product/2090>`_ (Product ID: 2090)
38+
39+
* Adafruit `2.8" TFT Touch Shield for Arduino w/Capacitive Touch
40+
<http://www.adafruit.com/product/1947>`_ (Product ID: 1947)
41+
42+
**Software and Dependencies:**
43+
44+
* Adafruit CircuitPython firmware for the ESP8622 and M0-based boards:
45+
https://github.com/adafruit/circuitpython/releases
46+
* Adafruit's Bus Device library (when using I2C/SPI):
47+
https://github.com/adafruit/Adafruit_CircuitPython_BusDevice
2948
"""
3049

3150
# imports

docs/_static/favicon.ico

4.31 KB
Binary file not shown.

api.rst renamed to docs/api.rst

File renamed without changes.

conf.py renamed to docs/conf.py

+13-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import os
44
import sys
5-
sys.path.insert(0, os.path.abspath('.'))
5+
sys.path.insert(0, os.path.abspath('..'))
66

77
# -- General configuration ------------------------------------------------
88

@@ -20,15 +20,15 @@
2020
# autodoc module docs will fail to generate with a warning.
2121
autodoc_mock_imports = ["adafruit_bus_device", "micropython"]
2222

23-
intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None),'BusDevice': ('https://circuitpython.readthedocs.io/projects/bus_device/en/latest/', None),'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)}
23+
intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None),'BusDevice': ('https://circuitpython.readthedocs.io/projects/busdevice/en/latest/', None),'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)}
2424

2525
# Add any paths that contain templates here, relative to this directory.
2626
templates_path = ['_templates']
2727

2828
source_suffix = '.rst'
2929

3030
# The master toctree document.
31-
master_doc = 'README'
31+
master_doc = 'index'
3232

3333
# General information about the project.
3434
project = u'Adafruit FocalTouch Library'
@@ -54,7 +54,7 @@
5454
# List of patterns, relative to source directory, that match files and
5555
# directories to ignore when looking for source files.
5656
# This patterns also effect to html_static_path and html_extra_path
57-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
57+
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.env', 'CODE_OF_CONDUCT.md']
5858

5959
# The reST default role (used for this markup: `text`) to use for all
6060
# documents.
@@ -71,6 +71,9 @@
7171
# If true, `todo` and `todoList` produce output, else they produce nothing.
7272
todo_include_todos = False
7373

74+
# If this is True, todo emits a warning for each TODO entries. The default is False.
75+
todo_emit_warnings = True
76+
7477

7578
# -- Options for HTML output ----------------------------------------------
7679

@@ -95,6 +98,12 @@
9598
# so a file named "default.css" will overwrite the builtin "default.css".
9699
html_static_path = ['_static']
97100

101+
# The name of an image file (relative to this directory) to use as a favicon of
102+
# the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
103+
# pixels large.
104+
#
105+
html_favicon = '_static/favicon.ico'
106+
98107
# Output file base name for HTML help builder.
99108
htmlhelp_basename = 'AdafruitFocalTouchLibrarydoc'
100109

docs/examples.rst

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Simple tests
2+
------------
3+
4+
Ensure your device works with these simple tests.
5+
6+
.. literalinclude:: ../examples/print_touches.py
7+
:caption: examples/print_touches.py
8+
:linenos:
9+
10+
.. literalinclude:: ../examples/simple_paint.py
11+
:caption: examples/simple_paint.py
12+
:linenos:

docs/index.rst

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
.. include:: ../README.rst
2+
3+
Table of Contents
4+
=================
5+
6+
.. toctree::
7+
:maxdepth: 4
8+
:hidden:
9+
10+
self
11+
12+
.. toctree::
13+
:caption: Examples
14+
15+
examples
16+
17+
.. toctree::
18+
:caption: API Reference
19+
:maxdepth: 3
20+
21+
api
22+
23+
.. toctree::
24+
:caption: Tutorials
25+
26+
.. toctree::
27+
:caption: Related Products
28+
29+
Adafruit 2.8" TFT LCD with Cap Touch Breakout Board w/MicroSD Socket <https://www.adafruit.com/product/2090>
30+
2.8" TFT Touch Shield for Arduino w/Capacitive Touch <https://www.adafruit.com/product/1947>
31+
32+
.. toctree::
33+
:caption: Other Links
34+
35+
Download <https://github.com/adafruit/Adafruit_CircuitPython_FocalTouch/releases/latest>
36+
CircuitPython Reference Documentation <https://circuitpython.readthedocs.io>
37+
CircuitPython Support Forum <https://forums.adafruit.com/viewforum.php?f=60>
38+
Discord Chat <https://adafru.it/discord>
39+
Adafruit Learning System <https://learn.adafruit.com>
40+
Adafruit Blog <https://blog.adafruit.com>
41+
Adafruit Store <https://www.adafruit.com>
42+
43+
Indices and tables
44+
==================
45+
46+
* :ref:`genindex`
47+
* :ref:`modindex`
48+
* :ref:`search`

0 commit comments

Comments
 (0)