15 lines
421 B
Markdown
15 lines
421 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)
|
|
pause(1000)
|
|
brick.setStatusLight(StatusLight.OrangeFlash)
|
|
motors.largeBC.setSpeed(-50)
|
|
pause(2000)
|
|
motors.largeBC.setSpeed(0)
|
|
})
|
|
``` |