2018-09-10 06:24:50 +02:00
# Dice
2018-09-10 06:26:44 +02:00
## Introduction @unplugged
2018-09-10 06:24:50 +02:00
![A microbit dice ](/static/mb/projects/dice.png )
2018-09-11 00:46:24 +02:00
Let's turn the @boardname @ into a dice! To do this, we need 3 pieces of code: one to detect a throw (shake), another to pick a random number, and then one to show the number.
2018-09-10 06:24:50 +02:00
## Step 1 @fullscreen
2018-09-11 00:46:24 +02:00
Place the ``||input:on shake||`` block onto the editor workspace. It runs code when you shake the @boardname @.
2018-09-10 06:24:50 +02:00
```blocks
input.onGesture(Gesture.Shake, () => {
})
```
## Step 2 @fullscreen
2018-09-11 00:46:24 +02:00
Get a ``||basic:show number||`` block and place it inside the ``||input:on shake||`` block to display a number.
2018-09-10 06:24:50 +02:00
```blocks
input.onGesture(Gesture.Shake, () => {
basic.showNumber(0)
})
```
## Step 3 @fullscreen
2018-09-11 00:46:24 +02:00
Put a ``||Math:pick random||`` block in the ``||basic:show number||`` block to pick a random number.
2018-09-10 06:24:50 +02:00
```blocks
input.onGesture(Gesture.Shake, () => {
basic.showNumber(Math.randomRange(0, 10))
})
```
## Step 4 @fullscreen
A typical dice shows values from `1` to `6` . So, in ``||Math:pick random||``, don't forget to choose the right minimum and maximum values!
```blocks
input.onGesture(Gesture.Shake, () => {
basic.showNumber(Math.randomRange(1, 6))
})
```
## Step 5
Use the simulator to try out your code. Does it show the number you expected?
## Step 6
If you have a @boardname @ connected, click ``|Download|`` and transfer your code to the @boardname @!