2017-04-05 10:16:47 -07:00
|
|
|
# Flashing Heart
|
2016-05-27 21:40:59 -07:00
|
|
|
|
2018-10-10 15:38:51 -07:00
|
|
|
## Introduction @unplugged
|
|
|
|
|
2018-12-02 07:58:43 -08:00
|
|
|
Learn how to use the LEDs and make a flashing heart!
|
|
|
|
(Want to learn how lights work? [Watch this video](https://youtu.be/qqBmvHD5bCw)).
|
2018-10-10 15:38:51 -07:00
|
|
|
|
2018-12-02 07:58:43 -08:00
|
|
|
|
|
|
|
![Heart shape in the LEDs](/static/mb/projects/flashing-heart/sim.gif)
|
2018-10-10 15:38:51 -07:00
|
|
|
|
2018-10-10 09:00:56 -07:00
|
|
|
## Step 1 @fullscreen
|
2016-05-27 21:40:59 -07:00
|
|
|
|
2018-10-29 21:36:33 -07:00
|
|
|
Place the ``||basic:show leds||`` block in the ``||basic:forever||`` block and draw a heart.
|
2016-05-27 21:40:59 -07:00
|
|
|
|
2018-10-22 14:14:06 -07:00
|
|
|
![An animation that shows how to drag a block and paint a heart](/static/mb/projects/flashing-heart/showleds.gif)
|
2016-05-27 21:40:59 -07:00
|
|
|
|
2018-10-10 09:00:56 -07:00
|
|
|
## Step 2 @fullscreen
|
2016-05-27 21:40:59 -07:00
|
|
|
|
2018-10-29 21:36:33 -07:00
|
|
|
Place another ``||basic:show leds||`` block. You can leave it blank and draw what you want.
|
2017-04-05 10:16:47 -07:00
|
|
|
|
2017-09-11 10:49:40 -07:00
|
|
|
```blocks
|
2018-10-29 21:36:33 -07:00
|
|
|
basic.forever(function() {
|
2016-12-08 00:10:00 -08:00
|
|
|
basic.showLeds(`
|
|
|
|
. # . # .
|
|
|
|
# # # # #
|
|
|
|
# # # # #
|
|
|
|
. # # # .
|
2018-10-29 21:36:33 -07:00
|
|
|
. . # . .`);
|
2017-04-05 10:16:47 -07:00
|
|
|
basic.showLeds(`
|
2018-10-10 15:38:51 -07:00
|
|
|
. . . . .
|
|
|
|
. . . . .
|
|
|
|
. . . . .
|
|
|
|
. . . . .
|
2018-10-29 21:36:33 -07:00
|
|
|
. . . . .`);
|
2016-06-10 23:09:18 -04:00
|
|
|
})
|
2016-06-11 14:40:09 -04:00
|
|
|
```
|
|
|
|
|
2018-10-29 21:36:33 -07:00
|
|
|
## Step 3 @fullscreen
|
2017-04-05 10:16:47 -07:00
|
|
|
|
2018-10-29 21:36:33 -07:00
|
|
|
Look at the virtual @boardname@, you should see the heart and your drawing blink on the screen.
|
2017-04-05 10:16:47 -07:00
|
|
|
|
2018-10-29 21:36:33 -07:00
|
|
|
![Heart shape in the LEDs](/static/mb/projects/flashing-heart/show-leds.gif)
|
2016-12-08 00:10:00 -08:00
|
|
|
|
2018-10-29 21:36:33 -07:00
|
|
|
## Step 4 @fullscreen
|
2016-12-08 00:10:00 -08:00
|
|
|
|
2018-08-17 07:58:45 -07:00
|
|
|
If you have a @boardname@ connected, click ``|Download|`` to transfer your code and watch the hearts flash!
|