2018-01-06 03:36:20 +01:00
|
|
|
# Reversing the robot Activity 1
|
|
|
|
|
|
|
|
```blocks
|
2018-01-31 17:28:00 +01:00
|
|
|
brick.buttonEnter.onEvent(ButtonEvent.Bumped, function () {
|
2018-02-19 16:35:08 +01:00
|
|
|
motors.largeBC.run(50)
|
2018-01-31 17:28:00 +01:00
|
|
|
sensors.touch1.pauseUntil(ButtonEvent.Pressed)
|
2018-02-19 16:35:08 +01:00
|
|
|
motors.largeBC.run(0)
|
2018-02-15 01:05:31 +01:00
|
|
|
pause(1000)
|
2018-02-07 07:18:39 +01:00
|
|
|
brick.setStatusLight(StatusLight.OrangeFlash)
|
2018-02-19 16:35:08 +01:00
|
|
|
motors.largeBC.run(-50)
|
2018-02-15 01:05:31 +01:00
|
|
|
pause(2000)
|
2018-02-19 16:35:08 +01:00
|
|
|
motors.largeBC.run(0)
|
2018-01-06 03:36:20 +01:00
|
|
|
})
|
|
|
|
```
|