2021-02-22 21:46:48 +00:00
|
|
|
add_executable(
|
|
|
|
tof_display
|
2022-05-29 14:42:31 +01:00
|
|
|
pico_tof_display.cpp
|
2021-02-22 21:46:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Pull in pico libraries that we need
|
2022-06-07 19:18:32 +01:00
|
|
|
target_link_libraries(tof_display pico_stdlib pico_explorer pico_display vl53l1x pico_graphics st7789 rgbled button)
|
2021-02-22 21:46:48 +00:00
|
|
|
|
|
|
|
pico_enable_stdio_uart(tof_display 1)
|
|
|
|
|
|
|
|
# create map/bin/hex file etc.
|
|
|
|
pico_add_extra_outputs(tof_display)
|
|
|
|
|
|
|
|
#example_auto_set_url(tof_display)
|