File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -41,18 +41,19 @@ class Matrix:
41
41
"""Class representing the Adafruit RGB Matrix. This is used to automatically
42
42
initialize the display.
43
43
44
- :param int width: The width of the display in Pixels. Defaults to 64.
45
- :param int height: The height of the display in Pixels. Defaults to 32.
44
+ :param int width: The total width of the display(s) in Pixels. Defaults to 64.
45
+ :param int height: The total height of the display(s) in Pixels. Defaults to 32.
46
46
:param int bit_depth: The number of bits per color channel. Defaults to 2.
47
47
:param list alt_addr_pins: An alternate set of address pins to use. Defaults to None
48
48
:param string color_order: A string containing the letter "R", "G", and "B" in the
49
49
order you want. Defaults to "RGB"
50
- :param int width: The total width of the display(s) in Pixels. Defaults to 64.
51
- :param int height: The total height of the display(s) in Pixels. Defaults to 32.
52
- :param bool Serpentine: Used when panels are arranged in a serpentine pattern rather
50
+ :param bool serpentine: Used when panels are arranged in a serpentine pattern rather
53
51
than a Z-pattern. Defaults to True.
54
52
:param int tiles_rows: Used to indicate the number of rows the panels are arranged in.
55
53
Defaults to 1.
54
+ :param int rotation: The rotation of the display in degrees clockwise.
55
+ Must be in 90 degree increments (0, 90, 180, 270).
56
+ Defaults to 0.
56
57
"""
57
58
58
59
# pylint: disable=too-few-public-methods,too-many-branches,too-many-statements,too-many-locals
You can’t perform that action at this time.
0 commit comments