2016-06-14 11:12:13 -04:00
# love meter
2016-06-11 17:12:12 -04:00
## Step 1
2017-09-11 10:49:40 -07: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 17:12:12 -04:00
```blocks
input.onPinPressed(TouchPin.P0, () => {
});
```
## Step 2
2017-09-11 10:49:40 -07: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 17:12:12 -04:00
```blocks
input.onPinPressed(TouchPin.P0, () => {
2017-09-11 10:49:40 -07:00
basic.showNumber(Math.random(101));
2016-06-11 17:12:12 -04:00
});
```
## Step 3
2017-09-11 10:49:40 -07:00
Show ``"LOVE METER"` ` on the screen when the @boardname @ starts.
2016-06-11 17:12:12 -04:00
```blocks
2017-09-11 10:49:40 -07:00
basic.showString("LOVE METER");
2016-06-11 17:12:12 -04:00
input.onPinPressed(TouchPin.P0, () => {
2017-09-11 10:49:40 -07:00
basic.showNumber(Math.random(101));
2016-06-11 17:12:12 -04:00
});
2016-06-25 17:22:50 -04:00
```
2017-09-11 10:49:40 -07: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.