pxt-ev3/docs/reference/brick/exit-program.md

18 lines
249 B
Markdown
Raw Normal View History

# exit Program
Stops the program and returns to the brick menu
```sig
brick.exitProgram();
```
## Example
Do a sequence of motor commands and stop the program.
```blocks
motors.largeA.run(50)
pause(500)
motors.stopAll()
brick.exitProgram();
```