Upload files to "/"

This commit is contained in:
2026-03-26 22:35:02 +00:00
parent 560582ec9f
commit 4be958987e
3 changed files with 305 additions and 0 deletions

9
CMakeLists.txt Normal file
View File

@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.13)
include(pico_sdk_import.cmake)
project(hello_world)
pico_sdk_init()
add_executable(blink blink.c)
target_link_libraries(blink pico_stdlib hardware_pwm hardware_i2c)
pico_add_extra_outputs(blink)