2016-06-14 17:12:13 +02:00
# love meter
2016-06-11 23:12:12 +02:00
## Step 1
2017-09-11 19:49:40 +02:00
Let's build a **LOVE METER** machine. Place a ``||input:on pin pressed||`` block to run code
when pin ``P0`` is pressed.
2016-06-11 23:12:12 +02:00
```blocks
input.onPinPressed(TouchPin.P0, () => {
});
```
## Step 2
2017-09-11 19:49:40 +02:00
Using ``||basic:show number||`` and ``||Math:pick random||`` blocks,
show a random number from 0 to 100 when pin ``P0`` is pressed.
2016-06-11 23:12:12 +02:00
```blocks
input.onPinPressed(TouchPin.P0, () => {
2017-09-11 19:49:40 +02:00
basic.showNumber(Math.random(101));
2016-06-11 23:12:12 +02:00
});
```
## Step 3
2017-09-11 19:49:40 +02:00
Show ``"LOVE METER"`` on the screen when the @boardname @ starts.
2016-06-11 23:12:12 +02:00
```blocks
2017-09-11 19:49:40 +02:00
basic.showString("LOVE METER");
2016-06-11 23:12:12 +02:00
input.onPinPressed(TouchPin.P0, () => {
2017-09-11 19:49:40 +02:00
basic.showNumber(Math.random(101));
2016-06-11 23:12:12 +02:00
});
2016-06-25 23:22:50 +02:00
```
2017-09-11 19:49:40 +02:00
## Step 4
Click ``|Download|`` to transfer your code in your @boardname @. Hold the ``GND`` pin with other hand and press pin ``P0`` with the other hand to trigger this code.