move lessons out of web site

will move select lessons back to "educators" section
This commit is contained in:
Tom Ball
2016-06-14 11:49:58 -04:00
parent a6e6dd8287
commit f4eca66648
184 changed files with 8 additions and 8 deletions

View File

@ -1,58 +0,0 @@
# magic logo challenges
Coding challenges for magic logo.
## Before we get started
Complete the [magic logo](/lessons/magic-logo/activity) activity and your code will look like this:
```blocks
input.onLogoUp(() => {
basic.showLeds(`
. . # . .
. # # # .
# # # # #
. . # . .
. . # . .
`)
})
```
### Challenge 1
How about when the logo is down? We should display an arrow pointing downward!
```blocks
input.onLogoUp(() => {
basic.showLeds(`
. . # . .
. # # # .
# # # # #
. . # . .
. . # . .
`)
})
input.onLogoDown(() => {
basic.showLeds(`
. . # . .
. . # . .
# # # # #
. # # # .
. . # . .
`)
})
```
### Challenge 2
Use the `on screen up` event to show a spinning arrow when the screen is turned up.
### Challenge 3
Display another animation using the `on screen up` event.