Pico 1 W angelegt

This commit is contained in:
2026-07-04 00:45:27 +02:00
parent ad05cef1bf
commit 5234c8d23d
4 changed files with 165 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "pico/stdlib.h"
#include "pico/cyw43_arch.h"
int main(void) {
if (cyw43_arch_init()) {
return -1;
}
while (true) {
cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, true);
sleep_ms(250);
cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, false);
sleep_ms(250);
}
}