boot.py 488 B

1234567891011121314151617
  1. """
  2. Author: Tobias Müller
  3. Date: 30.06.2023
  4. Version: 1.0
  5. The "boot.py" will be started before "main.py" and is used to setup the Pico.
  6. """
  7. ############################## Modules ##############################
  8. from machine import freq
  9. from sys import path
  10. ############################## Code ##############################
  11. freq(125000000) # CPU Clock
  12. path.append("/Libs") # add path for libraries