ea956f1a73
* renaming up/down/click to released/pressed/bump * missing images * fixing signature issue * updated strings * white lego logo
15 lines
426 B
Markdown
15 lines
426 B
Markdown
# Reversing the robot Activity 2
|
|
|
|
```blocks
|
|
brick.buttonEnter.onEvent(ButtonEvent.Bumped, function () {
|
|
sensors.touch1.pauseUntil(ButtonEvent.Pressed)
|
|
motors.largeBC.setSpeed(50)
|
|
sensors.touch2.pauseUntil(ButtonEvent.Pressed)
|
|
motors.largeBC.setSpeed(0)
|
|
loops.pause(1000)
|
|
brick.setLight(BrickLight.OrangeFlash)
|
|
motors.largeBC.setSpeed(-50)
|
|
loops.pause(2000)
|
|
motors.largeBC.setSpeed(0)
|
|
})
|
|
``` |