2017-12-08 23:56:39 +01:00
|
|
|
# Turtle Scanner
|
|
|
|
|
2018-09-11 18:02:40 +02:00
|
|
|
## Setting up your project
|
|
|
|
|
|
|
|
This project uses an **microturtle** Extension. You'll need to add it to your project to make it work.
|
|
|
|
|
|
|
|
* create a new project
|
|
|
|
* click on the gearwheel menu and click **Extensions**
|
|
|
|
* select the **microturtle** extension
|
|
|
|
|
|
|
|
After the project reloads, you should see the **turtle** category in the blocks.
|
|
|
|
|
|
|
|
## Code
|
|
|
|
|
2017-12-11 04:12:08 +01:00
|
|
|
The turtle scans the display over and over again.
|
2017-12-08 23:56:39 +01:00
|
|
|
|
|
|
|
```blocks
|
|
|
|
turtle.setPosition(0, 0)
|
|
|
|
turtle.turnRight()
|
|
|
|
turtle.setSpeed(20)
|
|
|
|
basic.forever(() => {
|
|
|
|
turtle.forward(4)
|
|
|
|
turtle.turnRight()
|
|
|
|
turtle.forward(1)
|
|
|
|
turtle.turnRight()
|
|
|
|
turtle.forward(4)
|
|
|
|
turtle.turnLeft()
|
|
|
|
turtle.forward(1)
|
|
|
|
turtle.turnLeft()
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
|
|
|
```package
|
2018-10-16 00:32:09 +02:00
|
|
|
microturtle=github:Microsoft/pxt-microturtle#v0.0.9
|
2017-12-08 23:56:39 +01:00
|
|
|
```
|