Skip to content

Commit 670fc05

Browse files
authored
Merge pull request #16 from tannewt/doc_fixup
Doc fixes
2 parents 2aa45ae + 3433b57 commit 670fc05

File tree

9 files changed

+12
-8
lines changed

9 files changed

+12
-8
lines changed

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Introduction
99
:target: https://discord.gg/nBQh6qu
1010
:alt: Discord
1111
12+
.. image:: https://travis-ci.org/adafruit/Adafruit_CircuitPython_RGB_Display.svg?branch=master
13+
:target: https://travis-ci.org/adafruit/Adafruit_CircuitPython_RGB_Display
14+
:alt: Build Status
15+
1216
Port of display drivers from https://github.com/adafruit/micropython-adafruit-rgb-display
1317
to Adafruit CircuitPython for use on Adafruit's SAMD21-based and other CircuitPython
1418
boards.

adafruit_rgb_display/hx8353.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222
"""
23-
`adafruit_RGB_Display.hx8353`
23+
`adafruit_rgb_display.hx8353`
2424
====================================================
2525
2626
A simple driver for the HX8353-based displays.

adafruit_rgb_display/ili9341.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222
"""
23-
`adafruit_RGB_Display.ili9341`
23+
`adafruit_rgb_display.ili9341`
2424
====================================================
2525
2626
A simple driver for the ILI9341/ILI9340-based displays.

adafruit_rgb_display/rgb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222
"""
23-
`adafruit_RGB_Display.rgb`
23+
`adafruit_rgb_display.rgb`
2424
====================================================
2525
2626
Base class for all RGB Display devices

adafruit_rgb_display/s6d02a1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222
"""
23-
`adafruit_RGB_Display.s6d02a1`
23+
`adafruit_rgb_display.s6d02a1`
2424
====================================================
2525
2626
A simple driver for the S6D02A1-based displays.

adafruit_rgb_display/ssd1331.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222
"""
23-
`adafruit_RGB_Display.ssd1331`
23+
`adafruit_rgb_display.ssd1331`
2424
====================================================
2525
2626
A simple driver for the SSD1331-based displays.

adafruit_rgb_display/ssd1351.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222
"""
23-
`adafruit_RGB_Display.ssd1351`
23+
`adafruit_rgb_display.ssd1351`
2424
====================================================
2525
2626
A simple driver for the SSD1351-based displays.

adafruit_rgb_display/st7735.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222
"""
23-
`adafruit_RGB_Display.sst7735`
23+
`adafruit_rgb_display.st7735`
2424
====================================================
2525
2626
A simple driver for the ST7735-based displays.

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Uncomment the below if you use native CircuitPython modules such as
1919
# digitalio, micropython and busio. List the modules you use. Without it, the
2020
# autodoc module docs will fail to generate with a warning.
21-
# autodoc_mock_imports = ["digitalio", "busio"]
21+
autodoc_mock_imports = ["adafruit_bus_device", "micropython"]
2222

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

0 commit comments

Comments
 (0)