2023-03-16 13:33:17 +00:00
|
|
|
# Essential
|
2022-05-27 11:12:44 +01:00
|
|
|
include(pimoroni_i2c/micropython)
|
2022-05-28 18:09:39 +01:00
|
|
|
include(pimoroni_bus/micropython)
|
2022-05-27 11:12:44 +01:00
|
|
|
|
2023-03-16 13:33:17 +00:00
|
|
|
# Pico Graphics Essential
|
|
|
|
include(hershey_fonts/micropython)
|
|
|
|
include(bitmap_fonts/micropython)
|
|
|
|
include(picographics/micropython)
|
|
|
|
|
|
|
|
# Pico Graphics Extra
|
|
|
|
include(jpegdec/micropython)
|
|
|
|
include(qrcode/micropython/micropython)
|
|
|
|
|
|
|
|
# Sensors & Breakouts
|
2023-02-20 15:35:52 +00:00
|
|
|
include(micropython-common-breakouts)
|
2022-05-27 11:12:44 +01:00
|
|
|
|
2023-03-16 13:33:17 +00:00
|
|
|
# Packs & Bases
|
|
|
|
include(pico_unicorn/micropython)
|
2022-05-27 11:12:44 +01:00
|
|
|
include(pico_scroll/micropython)
|
|
|
|
include(pico_rgb_keypad/micropython)
|
2022-05-28 18:09:39 +01:00
|
|
|
include(pico_explorer/micropython)
|
2022-05-27 11:12:44 +01:00
|
|
|
|
2023-03-16 13:33:17 +00:00
|
|
|
# LEDs & Matrices
|
2022-05-27 11:12:44 +01:00
|
|
|
include(plasma/micropython)
|
|
|
|
include(hub75/micropython)
|
2023-03-16 13:33:17 +00:00
|
|
|
|
|
|
|
# Servos & Motors
|
2022-05-27 11:12:44 +01:00
|
|
|
include(pwm/micropython)
|
|
|
|
include(servo/micropython)
|
|
|
|
include(encoder/micropython)
|
|
|
|
include(motor/micropython)
|
|
|
|
|
2023-03-16 13:33:17 +00:00
|
|
|
# Utility
|
|
|
|
include(adcfft/micropython)
|
2022-07-26 20:52:37 +01:00
|
|
|
|
2023-03-16 13:33:17 +00:00
|
|
|
# RTC (Badger 2040W, Enviro)
|
|
|
|
if(PICO_BOARD STREQUAL "pico_w")
|
|
|
|
include(pcf85063a/micropython)
|
|
|
|
endif()
|
2022-05-27 11:12:44 +01:00
|
|
|
|
|
|
|
include(modules_py/modules_py)
|
|
|
|
|
2023-03-09 11:13:06 +00:00
|
|
|
# Most board specific ports wont need all of these
|
2023-05-03 17:51:48 +01:00
|
|
|
# copy_module(gfx_pack.py)
|
|
|
|
# copy_module(interstate75.py)
|
|
|
|
# if(PICO_BOARD STREQUAL "pico_w")
|
|
|
|
# copy_module(automation.py)
|
|
|
|
# copy_module(inventor.py)
|
|
|
|
# endif()
|
2023-03-09 11:13:06 +00:00
|
|
|
|
2023-03-16 13:33:17 +00:00
|
|
|
# Must call `enable_ulab()` to enable
|
2023-02-02 15:31:01 +00:00
|
|
|
include(micropython-common-ulab)
|