UNPKG

pxt-ev3

Version:

LEGO MINDSTORMS EV3 for Microsoft MakeCode

18 lines (13 loc) 249 B
# 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(); ```