You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//| Create a Display object on the given display bus (`displayio.FourWire` or `displayio.ParallelBus`).
57
57
//|
@@ -90,6 +90,8 @@
90
90
//| support 18 bit but 16 is easier to transmit. The last bit is extrapolated.)
91
91
//| :param bool grayscale: True if the display only shows a single color.
92
92
//| :param bool pixels_in_byte_share_row: True when pixels are less than a byte and a byte includes pixels from the same row of the display. When False, pixels share a column.
93
+
//| :param int bytes_per_cell: Number of bytes per addressable memory location when color_depth < 8. When greater than one, bytes share a row or column according to pixels_in_byte_share_row.
94
+
//| :param bool reverse_pixels_in_byte: Reverses the pixel order within each byte when color_depth < 8. Does not apply across multiple bytes even if there is more than one byte per cell (bytes_per_cell.)
93
95
//| :param int set_column_command: Command used to set the start and end columns to update
94
96
//| :param int set_row_command: Command used so set the start and end rows to update
95
97
//| :param int write_ram_command: Command used to write pixels values into the update region. Ignored if data_as_commands is set.
@@ -102,7 +104,7 @@
102
104
//| :param bool data_as_commands: Treat all init and boundary data as SPI commands. Certain displays require this.
0 commit comments