finished updated lessons

This commit is contained in:
Michael Elliot Braun
2016-03-29 16:17:34 -07:00
parent 6a932a9c5c
commit 8d1f59dc84
17 changed files with 194 additions and 613 deletions

View File

@@ -23,10 +23,20 @@ Learn how to create a **local variable**, `var t :=time` where you can store dat
## Documentation
* **on shake** : [read more...](/microbit/reference/input/on-gesture)
* **local variable** : [read more...](/microbit/reference/variables/var)
* **show LEDs** : [read more...](/microbit/reference/basic/show-leds)
* **pick random** : [read more...](/microbit/blocks/math)
```docs
input.onGesture(Gesture.Shake, () => {
})
Math.random(3)
let x = 0
basic.showLeds(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`)
```
## Objectives