pxt-common-packages
Version:
Microsoft MakeCode (PXT) common packages
20 lines (13 loc) • 349 B
Markdown
# reset
Reset the board and start the program from the beginning.
```sig
control.reset()
```
Everything that the program did with the board is set back to the way it was before the
program started. The program starts over again from the beginning.
## Example #example
Reset the board and begin again.
```blocks
control.reset()
```
## #seealso