""" 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 ############################## from machine import freq from sys import path ############################## Code ############################## freq(250000000) # overclock CPU from 133 MHz to 250 MHz path.append("/Libs") # add path for libraries