42 lines
806 B
Markdown
42 lines
806 B
Markdown
# beautiful image lesson
|
|
|
|
display beautiful images on the BBC micro:bit #var #pause #docs
|
|
|
|
### @video td/videos/beautiful-image-0
|
|
|
|
## Topic
|
|
|
|
Show LEDs
|
|
|
|
## Quick Links
|
|
|
|
* [activity](/microbit/lessons/beautiful-image/activity)
|
|
* [challenges](/microbit/lessons/beautiful-image/challenges)
|
|
|
|
|
|
## Prior learning/place of lesson in scheme of work
|
|
|
|
Learn how to **show LEDs**, to show an image on the BBC micro:bit's LED screen. We will be learning how to Show LEDs using simple commands such as Show LEDs and pause.
|
|
|
|
## Documentation
|
|
|
|
```docs
|
|
basic.showLeds(`
|
|
. . . . .
|
|
. . . . .
|
|
. . # . .
|
|
. . . . .
|
|
. . . . .
|
|
`)
|
|
|
|
|
|
basic.pause(100)
|
|
|
|
```
|
|
|
|
## Objectives
|
|
|
|
* learn how to display an image on the micro:bit's LED screen
|
|
* learn how to pause your code for the specified number of milliseconds
|
|
|