pxt-ev3/docs/coding/traffic-lights-1.md
Peli de Halleux ea956f1a73
Buttons rename (#287)
* renaming up/down/click to released/pressed/bump

* missing images

* fixing signature issue

* updated strings

* white lego logo
2018-01-31 08:28:00 -08:00

222 B

Traffic Lights Activity 1

brick.buttonEnter.onEvent(ButtonEvent.Bumped, function () {
    motors.largeBC.tank(20, 20)
    sensors.color3.pauseForColor(ColorSensorColor.Red)
    motors.largeBC.tank(0, 0)
})