Skip to content
Snippets Groups Projects
Commit 8bed1213 authored by abp1g20's avatar abp1g20
Browse files

Upload New File

parent 3b32d5e3
No related branches found
No related tags found
No related merge requests found
cmake_minimum_required(VERSION 3.12)
include(pico_sdk_import.cmake)
project(pico-displayTemperature C CXX ASM)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
pico_sdk_init()
add_executable(main
main.c
lib/fonts.c
lib/st7735.c
lib/DEV_Config.c
)
pico_add_extra_outputs(main)
target_link_libraries(main
pico_stdlib
hardware_adc
hardware_pwm
hardware_pio
hardware_spi
hardware_i2c
hardware_dma
)
pico_enable_stdio_usb(main 1)
pico_enable_stdio_uart(main 0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment