Skip to content

Commit 81ad2e0

Browse files
committed
address review comments
1 parent 4859248 commit 81ad2e0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

shared-bindings/rgbmatrix/RGBMatrix.c

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -188,16 +188,16 @@ STATIC void preflight_pins_or_throw(uint8_t clock_pin, uint8_t *rgb_pins, uint8_
188188
//| A RGBMatrix is often used in conjunction with a
189189
//| `framebufferio.FramebufferDisplay`.
190190
//|
191-
//| :param int width: The overall width of the display in pixels
192-
//| :param int height: The overall height of all displays in pixels
193-
//| :param int tile: In a multi-row display, the number of rows of panels
194-
//| :param int bit_depth: The color depth of the display. A value of 1 gives 8 colors, a value of 2 gives 64 colors, and so on. Increasing bit depth increases the CPU and RAM usage of the RGBMatrix, and may lower the panel refresh rate. The framebuffer is always in RGB565 format regardless of the bit depth setting
195-
//| :param bool serpentine: In a multi-row display, True when alternate rows are rotated 180°, which can reduce wiring length
196-
//| :param Sequence[digitalio.DigitalInOut] rgb_pins: The display's "RGB pins"
197-
//| :param Sequence[digitalio.DigitalInOut] addr_pins: The display's "address pins"
198-
//| :param digitalio.DigitalInOut clock_pin: The display's "clock pin"
199-
//| :param digitalio.DigitalInOut latch_pin: The display's "latch pin"
200-
//| :param digitalio.DigitalInOut output_enable_pin: The display's "output enable" pin
191+
//| :param int width: The overall width of the whole matrix in pixels
192+
//| :param int height: The overall height of the whole matrix in pixels
193+
//| :param int tile: In a multi-row matrix, the number of rows of panels
194+
//| :param int bit_depth: The color depth of the matrix. A value of 1 gives 8 colors, a value of 2 gives 64 colors, and so on. Increasing bit depth increases the CPU and RAM usage of the RGBMatrix, and may lower the panel refresh rate. The framebuffer is always in RGB565 format regardless of the bit depth setting
195+
//| :param bool serpentine: In a multi-row matrix, True when alternate rows of panels are rotated 180°, which can reduce wiring length
196+
//| :param Sequence[digitalio.DigitalInOut] rgb_pins: The matrix's RGB pins
197+
//| :param Sequence[digitalio.DigitalInOut] addr_pins: The matrix's address pins
198+
//| :param digitalio.DigitalInOut clock_pin: The matrix's clock pin
199+
//| :param digitalio.DigitalInOut latch_pin: The matrix's latch pin
200+
//| :param digitalio.DigitalInOut output_enable_pin: The matrix's output enable pin
201201
//| :param bool doublebuffer: True if the output is double-buffered
202202
//| :param Optional[WriteableBuffer] framebuffer: A pre-allocated framebuffer to use. If unspecified, a framebuffer is allocated
203203
//|

0 commit comments

Comments
 (0)