bc4b71e0d6
* show ports on start * don't run show ports automatically * polarity in synched motor (#945) * account for polarity * more comments * handle dual motor in runtime * invert steer * don't use firmware polarity * add block to stop program (#943) * add block to stop program * renaming * fix translation
249 B
249 B
exit Program
Stops the program and returns to the brick menu
brick.exitProgram();
Example
Do a sequence of motor commands and stop the program.
motors.largeA.run(50)
pause(500)
motors.stopAll()
brick.exitProgram();