pxt-calliope/docs/reference/basic/clear-screen.md
2016-06-11 22:28:57 -04:00

28 lines
561 B
Markdown

# Clear Screen
Turn off all the LED lights on the [LED screen](/device/screen).
```sig
basic.clearScreen()
```
### Example: vanishing heart
The following code shows a heart on the screen and then turns off all the LED lights using `clear screen`:
```blocks
basic.showLeds(`
. # . # .
# # # # #
# # # # #
. # # # .
. . # . .
`)
basic.clearScreen()
```
### See also
[set brightness](/reference/led/set-brightness), [unplot](/reference/led/unplot), [plot](/reference/led/plot), [Image](/reference/images/image), [clear](/reference/basic/clear-screen)