pxt-ev3/docs/coding/reversing-the-robot-1.md

14 lines
350 B
Markdown
Raw Normal View History

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