pimoroni-pico/examples/servo2040/servo2040_current_meter.cmake

17 wiersze
442 B
CMake

set(OUTPUT_NAME servo2040_current_meter)
add_executable(${OUTPUT_NAME} servo2040_current_meter.cpp)
target_link_libraries(${OUTPUT_NAME}
pico_stdlib
servo2040
analogmux
analog
button
)
# enable usb output, disable uart output (so it doesn't confuse any connected servos)
pico_enable_stdio_usb(${OUTPUT_NAME} 1)
pico_enable_stdio_uart(${OUTPUT_NAME} 0)
pico_add_extra_outputs(${OUTPUT_NAME})