Projectupdate1 (#325)

* integrating test lesson from lego

* adding side card annotations
This commit is contained in:
Peli de Halleux
2018-02-14 08:56:12 -08:00
committed by GitHub
parent d6cbbcc3d9
commit 523c507c35
30 changed files with 404 additions and 223 deletions

View File

@ -0,0 +1,25 @@
# stop All Motors
Stops all motors currently running on the brick.
```sig
motors.stopAll();
```
The motors stops but any motion caused from previously running the motors continues until it runs down. If you are driving your brick and then stop the motors, it will coast for awhile before stopping.
## Example
Tank the @boardname@ forward at half speed for 5 seconds and then stop.
```blocks
motors.largeAB.tank(50, 50);
loops.pause(5000);
motors.stopAll();
```
## See also
[stop](/reference/motors/motor/stop),
[reset](/reference/motors/motor/reset),
[set brake](/reference/motors/motor/set-brake)