Skip to content

Doc fixes #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Introduction
:target: https://discord.gg/nBQh6qu
:alt: Discord

.. image:: https://travis-ci.org/adafruit/Adafruit_CircuitPython_RGB_Display.svg?branch=master
:target: https://travis-ci.org/adafruit/Adafruit_CircuitPython_RGB_Display
:alt: Build Status

Port of display drivers from https://github.com/adafruit/micropython-adafruit-rgb-display
to Adafruit CircuitPython for use on Adafruit's SAMD21-based and other CircuitPython
boards.
Expand Down
2 changes: 1 addition & 1 deletion adafruit_rgb_display/hx8353.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
`adafruit_RGB_Display.hx8353`
`adafruit_rgb_display.hx8353`
====================================================

A simple driver for the HX8353-based displays.
Expand Down
2 changes: 1 addition & 1 deletion adafruit_rgb_display/ili9341.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
`adafruit_RGB_Display.ili9341`
`adafruit_rgb_display.ili9341`
====================================================

A simple driver for the ILI9341/ILI9340-based displays.
Expand Down
2 changes: 1 addition & 1 deletion adafruit_rgb_display/rgb.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
`adafruit_RGB_Display.rgb`
`adafruit_rgb_display.rgb`
====================================================

Base class for all RGB Display devices
Expand Down
2 changes: 1 addition & 1 deletion adafruit_rgb_display/s6d02a1.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
`adafruit_RGB_Display.s6d02a1`
`adafruit_rgb_display.s6d02a1`
====================================================

A simple driver for the S6D02A1-based displays.
Expand Down
2 changes: 1 addition & 1 deletion adafruit_rgb_display/ssd1331.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
`adafruit_RGB_Display.ssd1331`
`adafruit_rgb_display.ssd1331`
====================================================

A simple driver for the SSD1331-based displays.
Expand Down
2 changes: 1 addition & 1 deletion adafruit_rgb_display/ssd1351.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
`adafruit_RGB_Display.ssd1351`
`adafruit_rgb_display.ssd1351`
====================================================

A simple driver for the SSD1351-based displays.
Expand Down
2 changes: 1 addition & 1 deletion adafruit_rgb_display/st7735.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
"""
`adafruit_RGB_Display.sst7735`
`adafruit_rgb_display.st7735`
====================================================

A simple driver for the ST7735-based displays.
Expand Down
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# 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 = ["digitalio", "busio"]
autodoc_mock_imports = ["adafruit_bus_device", "micropython"]

intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None),'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)}

Expand Down