pxt-calliope/docs/examples/egg-and-spoon.md
2017-08-23 11:40:37 -07:00

29 lines
484 B
Markdown

# Egg and Spoon race
```blocks
let accY = 0
let accX = 0
let y = 0
let x = 0
basic.forever(() => {
led.plot(x, y)
accX = input.acceleration(Dimension.X)
accY = input.acceleration(Dimension.Y)
if (accX < -150 && x > 0) {
x += -1
} else if (accX > 150 && x < 4) {
x += 1
}
if (accY < -150 && y > 0) {
y += -1
} else if (accY > 150 && y < 4) {
y += 1
}
basic.pause(500)
basic.clearScreen()
})
x = 2
y = 2
```