""" 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(125000000) # CPU Clock path.append("/Libs") # add path for libraries