File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
shared-bindings/displayio Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ shared-bindings/displayio/Group.rst shared-bindings/displayio/#displayio.Group
71
71
shared-bindings/displayio/I2CDisplay.rst shared-bindings/displayio/#displayio.I2CDisplay
72
72
shared-bindings/displayio/OnDiskBitmap.rst shared-bindings/displayio/#displayio.OnDiskBitmap
73
73
shared-bindings/displayio/Palette.rst shared-bindings/displayio/#displayio.Palette
74
- shared-bindings/displayio /ParallelBus.rst shared-bindings/displayio/#displayio .ParallelBus
74
+ shared-bindings/paralleldisplay /ParallelBus.rst shared-bindings/paralleldisplay/#paralleldisplay .ParallelBus
75
75
shared-bindings/displayio/Shape.rst shared-bindings/displayio/#displayio.Shape
76
76
shared-bindings/displayio/TileGrid.rst shared-bindings/displayio/#displayio.TileGrid
77
77
shared-bindings/displayio/__init__.rst shared-bindings/displayio/
Original file line number Diff line number Diff line change 39
39
#include "shared-module/displayio/__init__.h"
40
40
#include "supervisor/shared/translate.h"
41
41
42
- //| _DisplayBus = Union['FourWire', 'ParallelBus', 'I2CDisplay']
43
- //| """:py:class:`FourWire`, :py:class:`ParallelBus` or :py:class:`I2CDisplay`"""
42
+ //| _DisplayBus = Union['FourWire', 'paralleldisplay. ParallelBus', 'I2CDisplay']
43
+ //| """:py:class:`FourWire`, :py:class:`paralleldisplay. ParallelBus` or :py:class:`I2CDisplay`"""
44
44
//|
45
45
46
46
//|
Original file line number Diff line number Diff line change 64
64
//| busy_pin: Optional[microcontroller.Pin] = None, busy_state: bool = True,
65
65
//| seconds_per_frame: float = 180, always_toggle_chip_select: bool = False,
66
66
//| grayscale: bool = False) -> None:
67
- //| """Create a EPaperDisplay object on the given display bus (`displayio.FourWire` or `displayio .ParallelBus`).
67
+ //| """Create a EPaperDisplay object on the given display bus (`displayio.FourWire` or `paralleldisplay .ParallelBus`).
68
68
//|
69
69
//| The ``start_sequence`` and ``stop_sequence`` are bitpacked to minimize the ram impact. Every
70
70
//| command begins with a command byte followed by a byte to determine the parameter count and
75
75
//| extra long 500 ms delay instead of 255 ms. The next byte will begin a new command definition.
76
76
//|
77
77
//| :param display_bus: The bus that the display is connected to
78
- //| :type _DisplayBus: displayio.FourWire or displayio .ParallelBus
78
+ //| :type _DisplayBus: displayio.FourWire or paralleldisplay .ParallelBus
79
79
//| :param ~_typing.ReadableBuffer start_sequence: Byte-packed initialization sequence.
80
80
//| :param ~_typing.ReadableBuffer stop_sequence: Byte-packed initialization sequence.
81
81
//| :param int width: Width in pixels
Original file line number Diff line number Diff line change 50
50
//| including synchronizing with refresh rates and partial updating."""
51
51
//|
52
52
53
+ //| import paralleldisplay
54
+
53
55
//| def release_displays() -> None:
54
56
//| """Releases any actively used displays so their busses and pins can be used again. This will also
55
57
//| release the builtin display on boards that have one. You will need to reinitialize it yourself
You can’t perform that action at this time.
0 commit comments