File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
lang/en/typeshed/stdlib/microbit Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def show(
4040 loop : bool = False ,
4141 clear : bool = False ,
4242) -> None :
43- """Shows images, letters or digits on the display.
43+ """Shows images, letters or digits on the LED display.
4444
4545 Example: ``display.show(Image.HEART)``
4646
@@ -64,7 +64,7 @@ def scroll(
6464 loop : bool = False ,
6565 monospace : bool = False ,
6666) -> None :
67- """Scrolls a number or text on the display.
67+ """Scrolls a number or text on the LED display.
6868
6969 Example: ``display.scroll('micro:bit')``
7070
@@ -80,21 +80,21 @@ def scroll(
8080 ...
8181
8282def on () -> None :
83- """Turn on the display.
83+ """Turn on the LED display.
8484
8585 Example: ``display.on()``
8686 """
8787 ...
8888
8989def off () -> None :
90- """Turn off the display (allowing you to re-use the GPIO pins associated with the display for other purposes).
90+ """Turn off the LED display (disabling the display allows you to re-use the GPIO pins for other purposes).
9191
9292 Example: ``display.off()``
9393 """
9494 ...
9595
9696def is_on () -> bool :
97- """Check whether the display is on .
97+ """Check whether the LED display is enabled .
9898
9999 Example: ``display.is_on()``
100100
You can’t perform that action at this time.
0 commit comments