2018-02-07 04:43:50 +01:00
# stop All Motors
Stops all motors currently running on the brick.
```sig
2018-02-14 17:56:12 +01:00
motors.stopAll();
2018-02-07 04:43:50 +01:00
```
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
2018-04-17 01:15:58 +02:00
Tank the EV3 Brick forward at half speed for 5 seconds and then stop.
2018-02-07 04:43:50 +01:00
```blocks
motors.largeAB.tank(50, 50);
2018-02-15 01:05:31 +01:00
pause(5000);
2018-02-14 17:56:12 +01:00
motors.stopAll();
2018-02-07 04:43:50 +01:00
```
## See also
[stop ](/reference/motors/motor/stop ),
[reset ](/reference/motors/motor/reset ),
[set brake ](/reference/motors/motor/set-brake )