Skip to content

Commit

Permalink
Update tutorial.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kiki-lee committed Sep 24, 2020
1 parent 10afbd9 commit 0c3903b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This tutorial will help you solve your first microbit mystery!

<!-- > ## Step 1 @fullscreen
Drag an 'on Pin0 pressed' block into the work area.
Drag an 'on pin P0 pressed' block into the work area.
```blocks
input.onPinPressed(TouchPin.P0, function () {
Expand All @@ -25,7 +25,7 @@ input.onPinPressed(TouchPin.P0, function () {

We need to write code to check whether the user is correct if they touch pin #0.
<br/><br/>
Put a 'check door' custom block inside of the 'on Pin0 pressed' block that's already on your screen.
Put a 'check door' custom block inside of the 'on pin P0 pressed' block that's already on your screen.

```blocks
input.onPinPressed(TouchPin.P0, function () {
Expand All @@ -35,7 +35,7 @@ input.onPinPressed(TouchPin.P0, function () {

## Step 2

Let's write some code to check pin #1.<br/>
Let's write some code to check pin P1.<br/>
Do the same thing that we did for P0, but make sure you're checking door 1.

```blocks
Expand Down

0 comments on commit 0c3903b

Please sign in to comment.