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
Copy file name to clipboardExpand all lines: shared-bindings/epaperdisplay/EPaperDisplay.c
+32-7Lines changed: 32 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,10 @@
67
67
//| two_byte_sequence_length: bool = False,
68
68
//| start_up_time: float = 0,
69
69
//| address_little_endian: bool = False,
70
+
//| save_full_framebuffer: bool = False,
71
+
//| partial_window_command: Optional[int] = None,
72
+
//| partial_start_command: Optional[int] = None,
73
+
//| partial_end_command: Optional[int] = None,
70
74
//| ) -> None:
71
75
//| """Create a EPaperDisplay object on the given display bus (`fourwire.FourWire` or `paralleldisplaybus.ParallelBus`).
72
76
//|
@@ -111,7 +115,12 @@
111
115
//| :param bool two_byte_sequence_length: When true, use two bytes to define sequence length
112
116
//| :param float start_up_time: Time to wait after reset before sending commands
113
117
//| :param bool address_little_endian: Send the least significant byte (not bit) of multi-byte addresses first. Ignored when ram is addressed with one byte
114
-
//| """
118
+
//| :param bool save_full_framebuffer: When true, the display will save the full framebuffer to enable partial updates
119
+
//| :param int partial_window_command: Command to set the partial window
120
+
//| :param int partial_start_command: Command to start partial update
121
+
//| :param int partial_end_command: Command to end partial update
0 commit comments