epaperdisplay module

This commit is contained in:
foamyguy 2024-02-20 16:54:37 -06:00
parent ab65ff6848
commit 8ba9146d71
2 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ Implementation Notes
import struct
import displayio
import epaperdisplay
__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_SPD1656.git"
@ -48,7 +48,7 @@ _STOP_SEQUENCE = b"\x02\x01\x00" b"\x07\x01\xA5" # Power off then deep sleep
# pylint: disable=too-few-public-methods
class SPD1656(displayio.EPaperDisplay):
class SPD1656(epaperdisplay.EPaperDisplay):
r"""SPD1656 display driver
:param bus: The data bus the display is on

View file

@ -27,7 +27,7 @@ extensions = [
# 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 = ["epaperdisplay"]
autodoc_preserve_defaults = True