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

15 lines
426 B
Markdown
Raw Normal View History

2018-01-06 03:36:20 +01:00
# Reversing the robot Activity 2
```blocks
brick.buttonEnter.onEvent(ButtonEvent.Bumped, function () {
sensors.touch1.pauseUntil(ButtonEvent.Pressed)
2018-01-06 03:36:20 +01:00
motors.largeBC.setSpeed(50)
sensors.touch2.pauseUntil(ButtonEvent.Pressed)
2018-01-06 03:36:20 +01:00
motors.largeBC.setSpeed(0)
loops.pause(1000)
2018-01-19 01:43:16 +01:00
brick.setLight(BrickLight.OrangeFlash)
2018-01-06 03:36:20 +01:00
motors.largeBC.setSpeed(-50)
loops.pause(2000)
motors.largeBC.setSpeed(0)
})
```