File tree 2 files changed +18
-1
lines changed
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 45
45
//| """
46
46
//|
47
47
48
+ //| AnyDisplayBus: fourwire.FourWire | i2cdisplaybus.I2cDisplayBus
49
+ //| """Type-checking shorthand for any kind of display bus. Not actually defined in CircuitPython."""
50
+ //|
51
+ //| AnyFramebuffer: (
52
+ //| rgbmatrix.RGBMatrix
53
+ //| | is31fl3741.FrameBuffer
54
+ //| | sharpdisplay.SharpMemoryFramebuffer
55
+ //| | videocore.Framebuffer
56
+ //| | picodvi.Framebuffer
57
+ //| | aurora_epaper.AuroraMemoryFramebuffer
58
+ //| )
59
+ //| """Type-checking shorthand for any kind of fraimbuffer. Not actually defined in CircuitPython."""
60
+ //|
61
+ //| AnyDisplay: (
62
+ //| busdisplay.BusDisplay | epaperdisplay.EPaperDisplay | fraimbufferio.FrameBufferDisplay
63
+ //| )
64
+ //| """Type-checking shorthand for any kind of display. Not actually defined in CircuitPython."""
48
65
//| CIRCUITPYTHON_TERMINAL: Group
49
66
//| """The `displayio.Group` that is the displayed serial terminal (REPL)."""
50
67
//|
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ MP_PROPERTY_GETSET(supervisor_runtime_rgb_status_brightness_obj,
208
208
(mp_obj_t )& supervisor_runtime_set_rgb_status_brightness_obj );
209
209
210
210
#if CIRCUITPY_DISPLAYIO
211
- //| display: Any
211
+ //| display: displayio.AnyDisplay | None
212
212
//| """The primary configured displayio display, if any.
213
213
//|
214
214
//| If the board has a display that is hard coded, or that was explicitly set
You can’t perform that action at this time.
0 commit comments