We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaba4b0 commit 3f62811Copy full SHA for 3f62811
adafruit_ssd1327.py
@@ -51,13 +51,22 @@
51
b"\xAF\x00" # DISPLAY_ON
52
)
53
54
+
55
# pylint: disable=too-few-public-methods
56
class SSD1327(displayio.Display):
57
"""SSD1327 driver
58
- :param int height: height in pixels
59
- :param int width: width in pixels
60
- :param int rotation: rotation in degrees 0 < rotation < 180 results in 90 degree rotation
+ :param ~displayio.I2CDisplay bus: I2C bus
+ :param \**kwargs:
61
+ See below
62
63
+ :Keyword Arguments:
64
+ * *width* (``int``) --
65
+ Display width
66
+ * *height* (``int``) --
67
+ Display height
68
+ * *rotation* (``int``) --
69
+ Display rotation
70
"""
71
72
def __init__(self, bus: displayio.I2CDisplay, **kwargs) -> None:
0 commit comments