pxt-calliope/docs/projects/flashing-heart.md

98 lines
1.6 KiB
Markdown
Raw Normal View History

2017-04-05 10:16:47 -07:00
# Flashing Heart
2016-05-27 21:40:59 -07:00
## Step 1
Place the ``||basic:show leds||`` block in the ``||basic:on start||`` block
and draw a heart.
2016-05-27 21:40:59 -07:00
```blocks
2016-05-27 21:40:59 -07:00
basic.showLeds(`
. # . # .
# # # # #
# # # # #
. # # # .
. . # . .`
);
2016-05-27 21:40:59 -07:00
```
## Step 2
2017-04-05 10:16:47 -07:00
Click ``|Download|`` to transfer your code in your @boardname@!
## Step 3
2016-05-27 21:40:59 -07:00
Place another ``||basic:show leds||`` block under the heart to make it blink.
2017-04-05 10:16:47 -07:00
```blocks
2016-05-27 21:40:59 -07:00
basic.showLeds(`
. # . # .
# # # # #
# # # # #
. # # # .
. . # . .`);
2017-04-05 10:16:47 -07:00
basic.showLeds(`
. # . # .
# . # . #
# . . . #
. # . # .
. . # . .`);
2016-06-10 23:09:18 -04:00
```
2017-04-05 10:16:47 -07:00
## Step 4
2016-06-10 23:09:18 -04:00
2017-12-06 20:23:17 -08:00
Move the blocks inside the ``||basic:forever||`` to repeat the animation.
2016-06-10 23:09:18 -04:00
2017-04-05 10:16:47 -07:00
```block
2016-06-10 23:09:18 -04:00
basic.forever(() => {
2016-12-08 00:10:00 -08:00
basic.showLeds(`
. # . # .
# # # # #
# # # # #
. # # # .
. . # . .`
);
2017-04-05 10:16:47 -07:00
basic.showLeds(`
. # . # .
# . # . #
# . . . #
. # . # .
. . # . .`);
2016-06-10 23:09:18 -04:00
})
2016-06-11 14:40:09 -04:00
```
2017-04-05 10:16:47 -07:00
## Step 5
2016-06-11 14:40:09 -04:00
2017-12-06 20:23:17 -08:00
Click ``|Download|`` to transfer your code in your @boardname@ and watch the hearts flash!
2016-06-11 14:40:09 -04:00
2017-04-05 10:16:47 -07:00
## Step 6
Place more ``||basic:show leds||`` blocks to create your own animation.
2017-04-05 10:16:47 -07:00
```blocks
2016-06-11 14:40:09 -04:00
basic.forever(() => {
2016-12-08 00:10:00 -08:00
basic.showLeds(`
. # . # .
# # # # #
# # # # #
. # # # .
. . # . .`
);
basic.showLeds(`
. # . # .
2017-04-05 10:16:47 -07:00
# . # . #
# . . . #
. # . # .
2016-12-08 00:10:00 -08:00
. . # . .`);
2017-04-05 10:16:47 -07:00
basic.showLeds(`
. . . . .
. # . # .
. # # # .
. . # . .
. . . . .`);
2016-06-11 14:40:09 -04:00
})
2016-06-25 17:22:50 -04:00
```
2016-12-08 00:10:00 -08:00
2017-04-05 10:16:47 -07:00
## Step 7
2016-12-08 00:10:00 -08:00
2017-04-05 10:16:47 -07:00
Click ``|Download|`` to transfer your code in your @boardname@!