2016-06-14 17:12:13 +02:00
|
|
|
# smiley buttons
|
|
|
|
|
2016-06-11 20:40:09 +02:00
|
|
|
![](/static/mb/projects/a2-buttons.png)
|
|
|
|
|
|
|
|
Use buttons to show a smiley or frowny face.
|
|
|
|
|
|
|
|
## Step 1
|
|
|
|
|
2016-06-14 23:20:45 +02:00
|
|
|
Use [show leds](/reference/basic/show-leds) to make a smiley face:
|
2016-06-11 20:40:09 +02:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
basic.showLeds(`
|
|
|
|
. # . # .
|
|
|
|
. # . # .
|
|
|
|
. . . . .
|
|
|
|
# . . . #
|
|
|
|
. # # # .`);
|
|
|
|
```
|
|
|
|
|
|
|
|
## Step 2
|
|
|
|
|
|
|
|
Add an input block for when [button A is pressed](/reference/input/button-is-pressed), and put a
|
|
|
|
frowny face inside it:
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
basic.showLeds(`
|
|
|
|
. # . # .
|
|
|
|
. # . # .
|
|
|
|
. . . . .
|
|
|
|
# . . . #
|
|
|
|
. # # # .`);
|
|
|
|
input.onButtonPressed(Button.A, () => {
|
|
|
|
basic.showLeds(`
|
|
|
|
. # . # .
|
|
|
|
. # . # .
|
|
|
|
. . . . .
|
|
|
|
. # # # .
|
|
|
|
# . . . #`);
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
## Step 3
|
|
|
|
|
|
|
|
Now add blocks so that when [button B is pressed](/reference/input/button-is-pressed), a smiley appears:
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
basic.showLeds(`
|
|
|
|
. # . # .
|
|
|
|
. # . # .
|
|
|
|
. . . . .
|
|
|
|
# . . . #
|
|
|
|
. # # # .`);
|
|
|
|
input.onButtonPressed(Button.A, () => {
|
|
|
|
basic.showLeds(`
|
|
|
|
. # . # .
|
|
|
|
. # . # .
|
|
|
|
. . . . .
|
|
|
|
. # # # .
|
|
|
|
# . . . #`);
|
|
|
|
});
|
|
|
|
input.onButtonPressed(Button.B, () => {
|
|
|
|
basic.showLeds(`
|
|
|
|
. # . # .
|
|
|
|
. # . # .
|
|
|
|
. . . . .
|
|
|
|
# . . . #
|
|
|
|
. # # # .`);
|
|
|
|
});
|
2016-06-25 23:22:50 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
### ~button /projects/love-meter
|
|
|
|
NEXT: Love Meter
|
|
|
|
### ~
|