Made more requested changes

This commit is contained in:
dherrada 2020-07-17 14:53:51 -04:00
parent bfcaa4b2b4
commit d64b4e3059
3 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@
//| ... //| ...
//| //|
//| bitmap: bitmap = ... //| bitmap: displayio.Bitmap = ...
//| """Bitmap containing all font glyphs starting with ASCII and followed by unicode. Use //| """Bitmap containing all font glyphs starting with ASCII and followed by unicode. Use
//| `get_glyph` in most cases. This is useful for use with `displayio.TileGrid` and //| `get_glyph` in most cases. This is useful for use with `displayio.TileGrid` and
//| `terminalio.Terminal`.""" //| `terminalio.Terminal`."""

View File

@ -47,7 +47,7 @@
//| objects in CircuitPython, Display objects live until `displayio.release_displays()` //| objects in CircuitPython, Display objects live until `displayio.release_displays()`
//| is called. This is done so that CircuitPython can use the display itself.""" //| is called. This is done so that CircuitPython can use the display itself."""
//| //|
//| def __init__(self, framebuffer: framebuffer, *, rotation: int = 0, auto_refresh: bool = True) -> None: //| def __init__(self, framebuffer: rgbmatrix.RGBMatrix, *, rotation: int = 0, auto_refresh: bool = True) -> None:
//| """Create a Display object with the given framebuffer (a buffer, array, ulab.array, etc) //| """Create a Display object with the given framebuffer (a buffer, array, ulab.array, etc)
//| //|
//| :param framebuffer: The framebuffer that the display is connected to //| :param framebuffer: The framebuffer that the display is connected to
@ -299,7 +299,7 @@ const mp_obj_property_t framebufferio_framebufferdisplay_rotation_obj = {
(mp_obj_t)&mp_const_none_obj}, (mp_obj_t)&mp_const_none_obj},
}; };
//| framebuffer: framebuffer = ... //| framebuffer: rgbmatrix.RGBMatrix = ...
//| """The framebuffer being used by the display""" //| """The framebuffer being used by the display"""
//| //|
//| //|

View File

@ -190,7 +190,7 @@ const mp_obj_property_t gnss_timestamp_obj = {
(mp_obj_t)&mp_const_none_obj}, (mp_obj_t)&mp_const_none_obj},
}; };
//| fix: string = ... //| fix: gnss.PositionFix = ...
//| """Fix mode.""" //| """Fix mode."""
//| //|
STATIC mp_obj_t gnss_obj_get_fix(mp_obj_t self_in) { STATIC mp_obj_t gnss_obj_get_fix(mp_obj_t self_in) {