12345678910111213141516171819 |
- """
- Author: Tobias Müller
- Date: 30.06.2023
- Version: 1.0
- The "boot.py" will be started before "main.py" and is used to setup the Pico.
- """
- ############################## Modules ##############################
- import gc
- from sys import path
- from machine import freq
- ############################## Code ##############################
- freq(125000000) # set clock speed of pico
- gc.enable() # enable automatic garbage collector
- path.append("/libs") # add path for libraries
|