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

@ -16,7 +16,7 @@ Answer the questions while completing the tutorial. Pay attention to the dialogu
## 2. Draw the stored value for the variable called count
```
```blocks
let count = 0
```
@ -26,7 +26,7 @@ let count = 0
## 3. Draw which LEDs are ON after running this code and pressing button "A" once. Explain you chose to draw that number
```
```blocks
let count_ = 0
input.onButtonPressed("A", () => {
count_ = count_ + 1
@ -40,7 +40,7 @@ input.onButtonPressed("A", () => {
## 4. Draw which LEDs are ON after running this code and pressing button "A" three times. Explain you chose to draw that number
```
```blocks
count_ = 0
input.onButtonPressed("A", () => {
count_ = count_ + 1