38 lines
690 B
Markdown
Raw Normal View History

2016-03-25 16:47:20 -07:00
# smiley blocks activity
Learn to design a blinking image.
### ~avatar avatar
2016-05-26 15:24:10 -07:00
2016-03-25 16:47:20 -07:00
Welcome! This tutorial will help you make a smiley face blink. Let's get started!
### ~
Create an animation with an image displaying a smiley face and the next image with no LEDs lit up. This will make it look like the smiley face is blinking as the display switches between images.
```blocks
2016-03-30 15:11:05 -07:00
basic.showLeds(`
2016-03-25 16:47:20 -07:00
. # . # .
. # . # .
. . . . .
# . . . #
. # # # .
`)
2016-03-30 15:11:05 -07:00
basic.showLeds(`
2016-03-25 16:47:20 -07:00
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .
`)
```
### ~avatar boothing
2016-04-13 08:27:45 -07:00
Excellent, you're ready to continue with the [challenges](/lessons/smiley/challenges)!
2016-03-25 16:47:20 -07:00
### ~