mirror of
https://github.com/pimoroni/pimoroni-pico.git
synced 2025-02-12 13:05:27 +00:00
Add IS31FL3731 driver Add RGBMatrix5x5 library and example Add Matrix11x7 library and example Co-authored-by: ZodiusInfuser <christopher.parrott2@gmail.com>
13 lines
273 B
CMake
13 lines
273 B
CMake
set(OUTPUT_NAME matrix11x7_demo)
|
|
|
|
add_executable(
|
|
${OUTPUT_NAME}
|
|
demo.cpp
|
|
)
|
|
|
|
# Pull in pico libraries that we need
|
|
target_link_libraries(${OUTPUT_NAME} pico_stdlib hardware_i2c breakout_matrix11x7)
|
|
|
|
# create map/bin/hex file etc.
|
|
pico_add_extra_outputs(${OUTPUT_NAME})
|