pxt-ev3/docs/coding/cruise-control-1.md

10 lines
199 B
Markdown
Raw Normal View History

2018-01-05 21:49:04 -08:00
# Cruise Control Activity 1
```blocks
let speed = 0;
sensors.touch1.onEvent(ButtonEvent.Pressed, function () {
2018-01-05 21:49:04 -08:00
if (speed < 100)
speed = speed + 10;
2018-02-19 07:35:08 -08:00
motors.largeBC.run(speed);
2018-01-05 21:49:04 -08:00
})
```