2016-03-26 00:47:20 +01:00
|
|
|
# flashing heart quiz
|
|
|
|
|
|
|
|
Learn how to create a blinking LED script with a variable.
|
|
|
|
|
|
|
|
## Name
|
|
|
|
|
|
|
|
## Directions
|
|
|
|
|
2016-04-13 17:27:45 +02:00
|
|
|
Use this activity document to guide your work in the [flashing heart activity](/lessons/flashing-heart/activity).
|
2016-03-26 00:47:20 +01:00
|
|
|
|
|
|
|
Answer the questions while completing the activity. Pay attention to the dialogues!
|
|
|
|
|
|
|
|
## 1. Describe what pause does?
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## 2. Draw the image being displayed using the BBC micro:bit image.
|
|
|
|
|
|
|
|
```
|
|
|
|
basic.showLeds(`
|
|
|
|
. # . # .
|
|
|
|
# # # # #
|
|
|
|
# # # # #
|
|
|
|
. # # # .
|
|
|
|
. . # . .
|
|
|
|
`, 400)
|
|
|
|
```
|
|
|
|
|
|
|
|
![](/static/mb/empty-microbit.png)
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
## 3. Write the code to show LEDs of a broken heart forever.
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|