2018-01-06 04:28:24 +01:00
|
|
|
# Traffic Lights Activity 1
|
|
|
|
|
|
|
|
```blocks
|
2018-01-31 17:28:00 +01:00
|
|
|
brick.buttonEnter.onEvent(ButtonEvent.Bumped, function () {
|
2018-01-06 04:28:24 +01:00
|
|
|
motors.largeBC.tank(20, 20)
|
2018-04-03 14:05:01 +02:00
|
|
|
sensors.color3.pauseUntilColorDetected(ColorSensorColor.Red)
|
2018-01-06 04:28:24 +01:00
|
|
|
motors.largeBC.tank(0, 0)
|
|
|
|
})
|
|
|
|
```
|