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 with the given framebuffer (a buffer, array, ulab.array, etc)
58
58
//|
59
59
//| :param framebuffer: The framebuffer that the display is connected to
60
60
//| :type framebuffer: any core object implementing the framebuffer protocol
61
-
//| :param int width: Width in pixels
62
-
//| :param int height: Height in pixels
63
-
//| :param int rotation: The rotation of the display in degrees clockwise. Must be in 90 degree increments (0, 90, 180, 270)
64
-
//| :param int color_depth: The number of bits of color per pixel transmitted. (Some displays
65
-
//| support 18 bit but 16 is easier to transmit. The last bit is extrapolated.)
66
-
//| :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.
67
-
//| :param microcontroller.Pin backlight_pin: Pin connected to the display's backlight
68
-
//| :param bool brightness: Initial display brightness. This value is ignored if auto_brightness is True.
69
-
//| :param bool auto_brightness: If True, brightness is controlled via an ambient light sensor or other mechanism.
70
61
//| :param bool auto_refresh: Automatically refresh the screen
71
-
//| :param int native_frames_per_second: Number of display refreshes per second
62
+
//| :param int rotation: The rotation of the display in degrees clockwise. Must be in 90 degree increments (0, 90, 180, 270)
0 commit comments