add full screen options

This commit is contained in:
Peli de Halleux
2018-10-10 09:00:56 -07:00
parent 73d5dc81c5
commit 55d2b9ea1e
3 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
# Flashing Heart
## Step 1
## Step 1 @fullscreen
Place the ``||basic:show leds||`` block in the ``||basic:on start||`` block and draw a heart.
@ -14,7 +14,7 @@ basic.showLeds(`
);
```
## Step 2
## Step 2 @fullscreen
Place another ``||basic:show leds||`` block under the heart to make it blink. Check in the simulator to see the heart blink.
@ -33,7 +33,7 @@ basic.showLeds(`
. . # . .`);
```
## Step 3
## Step 3 @fullscreen
Move the blocks inside the ``||basic:forever||`` to repeat the animation.
@ -55,7 +55,7 @@ basic.forever(() => {
})
```
## Step 4
## Step 4 @fullscreen
Place more ``||basic:show leds||`` blocks to create your own animation.
@ -83,6 +83,6 @@ basic.forever(() => {
})
```
## Step 5
## Step 5 @fullscreen
If you have a @boardname@ connected, click ``|Download|`` to transfer your code and watch the hearts flash!