10 lines
209 B
Markdown
10 lines
209 B
Markdown
|
# Cruise Control Activity 1
|
||
|
|
||
|
```blocks
|
||
|
let speed = 0;
|
||
|
sensors.touch1.onEvent(TouchSensorEvent.Pressed, function () {
|
||
|
if (speed < 100)
|
||
|
speed = speed + 10;
|
||
|
motors.largeBC.setSpeed(speed);
|
||
|
})
|
||
|
```
|