14 lines
388 B
Markdown
14 lines
388 B
Markdown
# Reversing the robot Activity 1
|
|
|
|
```blocks
|
|
brick.buttonEnter.onEvent(ButtonEvent.Click, function () {
|
|
motors.largeBC.setSpeed(50)
|
|
sensors.touchSensor1.pauseUntil(TouchSensorEvent.Pressed)
|
|
motors.largeBC.setSpeed(0)
|
|
loops.pause(1000)
|
|
brick.setLight(LightsPattern.OrangeFlash)
|
|
motors.largeBC.setSpeed(-50)
|
|
loops.pause(2000)
|
|
motors.largeBC.setSpeed(0)
|
|
})
|
|
``` |