2016-05-12 22:56:03 +02:00
|
|
|
|
# Getting started
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
2016-06-04 00:15:24 +02:00
|
|
|
|
## ~avatar
|
|
|
|
|
|
2016-06-01 22:35:53 +02:00
|
|
|
|
Are you ready to build cool BBC micro:bit programs?
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
2016-06-01 22:35:53 +02:00
|
|
|
|
Here are some challenges for you. Unscramble the blocks in the editor
|
|
|
|
|
to make real programs that work!
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
2016-06-04 07:19:43 +02:00
|
|
|
|
[OPEN EDITOR](/#follow:getting-started)
|
|
|
|
|
|
2016-06-04 00:15:24 +02:00
|
|
|
|
## ~
|
|
|
|
|
|
2016-06-02 21:32:13 +02:00
|
|
|
|
### Happy face
|
2016-06-02 20:38:14 +02:00
|
|
|
|
|
2016-06-03 00:25:19 +02:00
|
|
|
|
There are three blocks in the editor (the area to the left).
|
|
|
|
|
They should look like this:
|
2016-06-02 20:38:14 +02:00
|
|
|
|
|
2016-06-02 21:32:13 +02:00
|
|
|
|
```blocks
|
2016-06-02 20:38:14 +02:00
|
|
|
|
basic.forever(() => {
|
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. # . # .
|
|
|
|
|
. . . . .
|
|
|
|
|
# . . . #
|
|
|
|
|
. # # # .
|
|
|
|
|
`)
|
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. . . . .
|
|
|
|
|
. . . . .
|
|
|
|
|
. . . . .
|
|
|
|
|
. . . . .
|
|
|
|
|
`)
|
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
2016-06-03 00:25:19 +02:00
|
|
|
|
When you run this program, you will see a smiley face, then a blank
|
|
|
|
|
screen, then a smiley again -- it never stops! (That's because of the
|
|
|
|
|
``forever`` block.)
|
|
|
|
|
|
2016-06-04 00:42:18 +02:00
|
|
|
|
Click **Compile** to move your program to the BBC micro:bit!
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
2016-06-02 21:32:13 +02:00
|
|
|
|
### Happy unhappy face
|
2016-05-12 22:50:27 +02:00
|
|
|
|
|
2016-06-03 00:25:19 +02:00
|
|
|
|
Draw an unhappy face instead of the blank screen. Click on the dots
|
|
|
|
|
in the second ``show leds`` block until it matches the blocks below.
|
|
|
|
|
Now you have an **animation** (cartoon) that shows a happy face,
|
|
|
|
|
then an unhappy one, then a happy one again, forever (or until
|
|
|
|
|
you turn off your micro:bit)!
|
2016-05-12 22:50:27 +02:00
|
|
|
|
|
2016-05-17 18:35:55 +02:00
|
|
|
|
```blocks
|
2016-06-02 21:32:13 +02:00
|
|
|
|
basic.forever(() => {
|
2016-05-12 22:50:27 +02:00
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. # . # .
|
|
|
|
|
. . . . .
|
|
|
|
|
# . . . #
|
|
|
|
|
. # # # .
|
|
|
|
|
`)
|
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. # . # .
|
|
|
|
|
. . . . .
|
|
|
|
|
. # # # .
|
|
|
|
|
# . . . #
|
|
|
|
|
`)
|
2016-06-02 21:32:13 +02:00
|
|
|
|
});
|
2016-05-12 22:50:27 +02:00
|
|
|
|
```
|
2016-06-04 00:42:18 +02:00
|
|
|
|
Click **Compile** to move your program to the BBC micro:bit!
|
2016-06-01 22:35:53 +02:00
|
|
|
|
|
2016-06-02 21:32:13 +02:00
|
|
|
|
### Your turn!
|
2016-05-12 22:50:27 +02:00
|
|
|
|
|
2016-06-03 00:25:19 +02:00
|
|
|
|
Pile up more ``show leds`` blocks to create your animation! Create an
|
|
|
|
|
animation with at least 5 pictures. What does this animation show?
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
2016-06-02 21:32:13 +02:00
|
|
|
|
```blocks
|
2016-05-12 22:41:15 +02:00
|
|
|
|
basic.forever(() => {
|
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. # . # .
|
|
|
|
|
. . . . .
|
|
|
|
|
# . . . #
|
|
|
|
|
. # # # .
|
|
|
|
|
`)
|
2016-06-03 00:25:19 +02:00
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. # . # .
|
|
|
|
|
. . . . .
|
|
|
|
|
# # # # #
|
|
|
|
|
. . . . .
|
|
|
|
|
`)
|
2016-05-12 22:41:15 +02:00
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. # . # .
|
|
|
|
|
. . . . .
|
|
|
|
|
. # # # .
|
|
|
|
|
# . . . #
|
|
|
|
|
`)
|
2016-06-02 21:32:13 +02:00
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. # . # .
|
|
|
|
|
. . . . .
|
|
|
|
|
# # # # #
|
2016-06-03 00:25:19 +02:00
|
|
|
|
. . . # #
|
|
|
|
|
`)
|
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
# . # . .
|
|
|
|
|
. . . . .
|
|
|
|
|
# . . . #
|
|
|
|
|
. # # # .
|
|
|
|
|
`)
|
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. . # . #
|
2016-06-02 21:32:13 +02:00
|
|
|
|
. . . . .
|
2016-06-03 00:25:19 +02:00
|
|
|
|
# . . . #
|
|
|
|
|
. # # # .
|
2016-06-02 21:32:13 +02:00
|
|
|
|
`)
|
2016-05-12 22:41:15 +02:00
|
|
|
|
});
|
|
|
|
|
```
|
2016-06-04 00:42:18 +02:00
|
|
|
|
Click **Compile** to move your program to the BBC micro:bit!
|
2016-06-01 22:35:53 +02:00
|
|
|
|
|
|
|
|
|
#### ~hint
|
|
|
|
|
|
2016-06-03 00:25:19 +02:00
|
|
|
|
You can find the ``show leds`` block in the **Basic** part of the editor.
|
|
|
|
|
|
2016-06-01 22:35:53 +02:00
|
|
|
|
#### ~
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
2016-06-03 00:25:19 +02:00
|
|
|
|
### Button A and button B
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
2016-06-04 00:15:24 +02:00
|
|
|
|
This program will show the word **ANTEATER** on the LED
|
2016-06-02 21:32:13 +02:00
|
|
|
|
screen when you press button `A`.
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
|
|
|
|
```blocks
|
2016-06-02 21:32:13 +02:00
|
|
|
|
input.onButtonPressed(Button.A, () => {
|
2016-06-04 00:15:24 +02:00
|
|
|
|
basic.showString("ANTEATER");
|
2016-05-12 22:41:15 +02:00
|
|
|
|
});
|
|
|
|
|
```
|
|
|
|
|
|
2016-06-03 00:48:11 +02:00
|
|
|
|
#### ~hint
|
|
|
|
|
|
|
|
|
|
The ``showString`` block can show letters, numbers, and punctuation
|
|
|
|
|
on the micro:bit screen.
|
|
|
|
|
|
|
|
|
|
#### ~
|
|
|
|
|
|
2016-06-02 01:02:22 +02:00
|
|
|
|
Now try to unscramble these blocks in the editor so that the micro:bit
|
2016-06-04 00:15:24 +02:00
|
|
|
|
shows **BANANA** when you press button `B`.
|
2016-06-01 22:35:53 +02:00
|
|
|
|
|
2016-05-12 22:41:15 +02:00
|
|
|
|
```shuffle
|
|
|
|
|
input.onButtonPressed(Button.B, () => {
|
2016-06-04 00:15:24 +02:00
|
|
|
|
basic.showString("BANANA");
|
2016-05-12 22:41:15 +02:00
|
|
|
|
});
|
|
|
|
|
```
|
2016-06-03 00:25:19 +02:00
|
|
|
|
#### ~hint
|
|
|
|
|
|
|
|
|
|
You can find the letter `B` by clicking the letter `A` on the
|
|
|
|
|
``onButtonPressed`` block.
|
|
|
|
|
|
2016-06-03 00:48:11 +02:00
|
|
|
|
#### ~
|
|
|
|
|
|
2016-06-04 00:42:18 +02:00
|
|
|
|
Click **Compile** to move your program to the BBC micro:bit!
|
|
|
|
|
|
2016-06-03 00:48:11 +02:00
|
|
|
|
#### Your turn!
|
2016-06-03 00:25:19 +02:00
|
|
|
|
|
2016-06-03 00:48:11 +02:00
|
|
|
|
Can you combine these blocks so your program shows your real name
|
2016-06-04 00:15:24 +02:00
|
|
|
|
instead of **ANTEATER** when you press `A`, but _your secret agent
|
|
|
|
|
name_ instead of **BANANA** when you press `B`?
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
|
|
|
|
### Shake
|
|
|
|
|
|
2016-06-02 01:02:22 +02:00
|
|
|
|
You can find when someone is shaking the BBC micro:bit by checking its
|
2016-06-01 22:35:53 +02:00
|
|
|
|
**accelerometer** (it finds whether the micro:bit is speeding up or
|
|
|
|
|
slowing down).
|
|
|
|
|
|
2016-06-02 01:02:22 +02:00
|
|
|
|
Unscramble these blocks in the editor to show a frownie when someone
|
2016-06-03 00:25:19 +02:00
|
|
|
|
shakes the micro:bit. (Ouch!)
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
|
|
|
|
```shuffle
|
|
|
|
|
input.onGesture(Gesture.Shake, () => {
|
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. # . # .
|
|
|
|
|
. . . . .
|
|
|
|
|
. # # # .
|
|
|
|
|
# . . . #`);
|
|
|
|
|
});
|
|
|
|
|
```
|
2016-06-04 00:42:18 +02:00
|
|
|
|
Click **Compile** to move your program to the BBC micro:bit!
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
|
|
|
|
### Pins
|
|
|
|
|
|
2016-06-02 01:02:22 +02:00
|
|
|
|
You can also use the pins as buttons. (The pins are the holes in the
|
2016-06-03 00:25:19 +02:00
|
|
|
|
metal stripe at the bottom of the micro:bit board.) For example, hold
|
2016-06-02 01:02:22 +02:00
|
|
|
|
the ``GND`` button with one hand and touch the ``0`` pin (called
|
2016-06-01 22:35:53 +02:00
|
|
|
|
``P0``) with your other hand to tell the micro:bit you're pressing it.
|
|
|
|
|
|
2016-06-04 07:19:43 +02:00
|
|
|
|
Unscramble the blocks in the editor to show a heart when you press
|
2016-06-01 22:35:53 +02:00
|
|
|
|
pin ``P0``.
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
|
|
|
|
```shuffle
|
|
|
|
|
input.onPinPressed(TouchPin.P0, () => {
|
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. # . # .
|
2016-06-04 07:19:43 +02:00
|
|
|
|
# . # . #
|
2016-05-12 22:41:15 +02:00
|
|
|
|
# . . . #
|
2016-06-04 07:19:43 +02:00
|
|
|
|
. # . # .
|
|
|
|
|
. . # . .`);
|
2016-05-12 22:41:15 +02:00
|
|
|
|
});
|
|
|
|
|
```
|
2016-06-04 00:42:18 +02:00
|
|
|
|
Click **Compile** to move your program to the BBC micro:bit!
|
2016-05-12 22:41:15 +02:00
|
|
|
|
|
2016-06-04 07:19:43 +02:00
|
|
|
|
## ~hint
|
2016-06-03 00:25:19 +02:00
|
|
|
|
|
2016-06-04 07:19:43 +02:00
|
|
|
|
Try this experiment: find a friend and hold hands together. Press the ``GND`` button
|
|
|
|
|
while your friend pressed the ``P0`` button. You should see the heart! The electric current is going through your bodies and accross your handshake
|
|
|
|
|
to make it happen!
|
2016-06-03 00:25:19 +02:00
|
|
|
|
|
2016-06-04 07:19:43 +02:00
|
|
|
|
## ~
|
2016-06-04 00:15:24 +02:00
|
|
|
|
|
|
|
|
|
## Let's play Rock Paper Scissors!
|
|
|
|
|
|
|
|
|
|
### ~avatar avatar
|
|
|
|
|
|
|
|
|
|
Build a Rock Paper Scissors game with the BBC micro:bit!
|
|
|
|
|
You can play the game with a friend who has it on a micro:bit.
|
|
|
|
|
You can also play it with friends who are just using their hands.
|
|
|
|
|
|
|
|
|
|
### ~
|
|
|
|
|
|
|
|
|
|
## Step 1: Getting started
|
|
|
|
|
|
|
|
|
|
We want the micro:bit to choose rock, paper, or scissors when you
|
|
|
|
|
shake it. Try creating an ``on shake`` block so when you shake the
|
|
|
|
|
micro:bit, it will run part of a program.
|
|
|
|
|
|
2016-06-04 07:19:43 +02:00
|
|
|
|
Clear up the blocks and add the blocks below.
|
|
|
|
|
|
2016-06-04 00:15:24 +02:00
|
|
|
|
```blocks
|
|
|
|
|
input.onGesture(Gesture.Shake, () => {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Next, when you shake the micro:bit, it should pick a random number from `0` to `2`
|
2016-06-04 07:19:43 +02:00
|
|
|
|
and store it in the variable `item`.
|
2016-06-04 00:15:24 +02:00
|
|
|
|
|
|
|
|
|
Add a ``set`` block with a variable. Then add a ``pick random`` block,
|
|
|
|
|
and store the random number in the variable,
|
|
|
|
|
like this:
|
|
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
|
input.onGesture(Gesture.Shake, () => {
|
2016-06-04 07:19:43 +02:00
|
|
|
|
let item = Math.random(3)
|
2016-06-04 00:15:24 +02:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### ~hint
|
|
|
|
|
No one can predict random numbers. That's what makes them great for Rock Paper Scissors!
|
|
|
|
|
### ~
|
|
|
|
|
|
|
|
|
|
Each possible number these blocks can make (`0`, `1`, or `2`) means a different picture.
|
|
|
|
|
We will show the right picture for that number on the LED screen.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Step 2: Picking paper
|
|
|
|
|
|
|
|
|
|
Put an ``if`` block after the ``let`` block that checks whether
|
2016-06-04 07:19:43 +02:00
|
|
|
|
`item` is `0`. Make sure the ``if`` block has an ``else if`` part
|
2016-06-04 00:15:24 +02:00
|
|
|
|
and an ``else`` part.
|
|
|
|
|
|
|
|
|
|
Next, add a ``show leds`` block that shows a
|
|
|
|
|
picture of a piece of paper:
|
|
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
|
input.onGesture(Gesture.Shake, () => {
|
2016-06-04 07:19:43 +02:00
|
|
|
|
let item = Math.random(3)
|
|
|
|
|
if (item == 0) {
|
2016-06-04 00:15:24 +02:00
|
|
|
|
basic.showLeds(`
|
|
|
|
|
# # # # #
|
|
|
|
|
# . . . #
|
|
|
|
|
# . . . #
|
|
|
|
|
# . . . #
|
|
|
|
|
# # # # #
|
|
|
|
|
`)
|
|
|
|
|
} else if (false) {
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Step 3: A random rock
|
|
|
|
|
|
|
|
|
|
Now we are going to add a new picture for the micro:bit to show
|
|
|
|
|
when another random number comes up.
|
|
|
|
|
|
2016-06-04 07:19:43 +02:00
|
|
|
|
Make the ``else if`` part check if the variable `item` is `1`.
|
2016-06-04 00:15:24 +02:00
|
|
|
|
Then add a ``show leds`` block with a picture of a rock.
|
|
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
|
input.onGesture(Gesture.Shake, () => {
|
2016-06-04 07:19:43 +02:00
|
|
|
|
let item = Math.random(3)
|
|
|
|
|
if (item == 0) {
|
2016-06-04 00:15:24 +02:00
|
|
|
|
basic.showLeds(`
|
|
|
|
|
# # # # #
|
|
|
|
|
# . . . #
|
|
|
|
|
# . . . #
|
|
|
|
|
# . . . #
|
|
|
|
|
# # # # #
|
|
|
|
|
`)
|
2016-06-04 07:19:43 +02:00
|
|
|
|
} else if (item == 1) {
|
2016-06-04 00:15:24 +02:00
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. # # # .
|
|
|
|
|
. # # # .
|
|
|
|
|
. # # # .
|
|
|
|
|
. . . . .
|
|
|
|
|
`)
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Step 4: Suddenly scissors
|
|
|
|
|
|
|
|
|
|
Add a ``show leds`` block with a picture of scissors to the ``else`` part:
|
|
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
|
input.onGesture(Gesture.Shake, () => {
|
2016-06-04 07:19:43 +02:00
|
|
|
|
let item = Math.random(3)
|
|
|
|
|
if (item == 0) {
|
2016-06-04 00:15:24 +02:00
|
|
|
|
basic.showLeds(`
|
|
|
|
|
# # # # #
|
|
|
|
|
# . . . #
|
|
|
|
|
# . . . #
|
|
|
|
|
# . . . #
|
|
|
|
|
# # # # #
|
|
|
|
|
`)
|
|
|
|
|
|
2016-06-04 07:19:43 +02:00
|
|
|
|
} else if (item == 1) {
|
2016-06-04 00:15:24 +02:00
|
|
|
|
basic.showLeds(`
|
|
|
|
|
. . . . .
|
|
|
|
|
. # # # .
|
|
|
|
|
. # # # .
|
|
|
|
|
. # # # .
|
|
|
|
|
. . . . .
|
|
|
|
|
`)
|
|
|
|
|
} else {
|
|
|
|
|
basic.showLeds(`
|
|
|
|
|
# # . . #
|
|
|
|
|
# # . # .
|
|
|
|
|
. . # . .
|
|
|
|
|
# # . # .
|
|
|
|
|
# # . . #
|
|
|
|
|
`)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### ~hint
|
|
|
|
|
|
2016-06-04 07:19:43 +02:00
|
|
|
|
You don't need to check if `item` is `2` because `2` is the only number left out of `0`, `1`, and `2`.
|
2016-06-04 00:15:24 +02:00
|
|
|
|
That's why you can use an ``else`` instead of an ``else if``.
|
|
|
|
|
|
|
|
|
|
### ~
|
|
|
|
|
|
2016-06-04 00:42:18 +02:00
|
|
|
|
Your game is ready!
|
|
|
|
|
|
|
|
|
|
Click **Compile** to move your program to the BBC micro:bit!
|
|
|
|
|
|
|
|
|
|
Have fun!
|
2016-06-04 00:15:24 +02:00
|
|
|
|
|
|
|
|
|
## Step 5: Are you the greatest?
|
|
|
|
|
|
|
|
|
|
Here is a way you can make your Rock Paper Scissors game better.
|
|
|
|
|
When button ``A`` is pressed,
|
|
|
|
|
the micro:bit will add `1` to your score.
|
|
|
|
|
|
|
|
|
|
Open the ``Game`` drawer, and then add the block ``change score by 1`` to your program,
|
|
|
|
|
like this:
|
|
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
|
input.onButtonPressed(Button.A, () => {
|
|
|
|
|
game.addScore(1)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Step 6: Prove you're the greatest!
|
|
|
|
|
|
|
|
|
|
After your micro:bit can add `1` to the score, show how many wins you have.
|
|
|
|
|
|
|
|
|
|
```blocks
|
|
|
|
|
input.onButtonPressed(Button.A, () => {
|
|
|
|
|
game.addScore(1)
|
|
|
|
|
basic.showString("WINS:")
|
|
|
|
|
basic.showNumber(game.score())
|
|
|
|
|
})
|
|
|
|
|
```
|
|
|
|
|
## Step 7: Staying honest
|
|
|
|
|
|
|
|
|
|
Success! Your micro:bit can track wins!
|
|
|
|
|
But what about losses?
|
|
|
|
|
Use the ``Game`` drawer to subtract `1` from your score when you press button `B`.
|
|
|
|
|
|
|
|
|
|
Here are all the blocks you will need:
|
|
|
|
|
|
|
|
|
|
```shuffle
|
|
|
|
|
input.onButtonPressed(Button.B, () => {
|
|
|
|
|
game.addScore(-1)
|
|
|
|
|
basic.showString("LOSSES:")
|
|
|
|
|
basic.showNumber(game.score())
|
|
|
|
|
})
|
|
|
|
|
```
|
2016-06-04 00:42:18 +02:00
|
|
|
|
Click **Compile** to move your program to the BBC micro:bit!
|
2016-06-04 00:15:24 +02:00
|
|
|
|
|
|
|
|
|
## Your turn!
|
|
|
|
|
|
|
|
|
|
How else can you make your game better?
|
|
|
|
|
Ever hear of [Rock Paper Scissors Spock Lizard](http://www.samkass.com/theories/RPSSL.html)?
|