47 lines
1.1 KiB
Markdown
47 lines
1.1 KiB
Markdown
# magic logo lesson
|
|
|
|
show an image that points up when the logo is up.
|
|
|
|
### @video td/videos/magic-logo-0
|
|
|
|
## Topic
|
|
|
|
On Logo Up
|
|
|
|
## Quick Links
|
|
|
|
* [activity](/microbit/lessons/magic-logo/activity)
|
|
* [challenges](/microbit/lessons/magic-logo/challenges)
|
|
* [quiz](/microbit/lessons/magic-logo/challenges)
|
|
* [quiz answers](/microbit/lessons/magic-logo/challenges)
|
|
|
|
## Prior learning/place of lesson in scheme of work
|
|
|
|
Learn how to plot image **on logo up**, `on logo up` to run code when the micro:bit screen is facing up and vertically orientated. We will be learning how to plot an image with the logo up, basic show LEDs, and logo down.
|
|
|
|
## Documentation
|
|
```docs
|
|
input.onLogoUp(() => {
|
|
|
|
})
|
|
input.onLogoDown(() => {
|
|
|
|
})
|
|
basic.showLeds(`
|
|
. . . . .
|
|
. . . . .
|
|
. . # . .
|
|
. . . . .
|
|
. . . . .
|
|
`)
|
|
|
|
|
|
```
|
|
|
|
## Objectives
|
|
|
|
* learn how to display an image on the micro:bit's LED screen
|
|
* learn how to run code when the micro:bit screen is facing down and vertically orientated
|
|
* learn how to run code when the micro:bit screen is facing up and vertically orientated
|
|
|