This commit is contained in:
2026-04-10 12:30:30 +02:00
parent 6ae7d5dca3
commit a97737f136

View File

@@ -14,7 +14,8 @@ int main(void) {
// Example to turn on the Pico W LED // Example to turn on the Pico W LED
bool led_on = true; bool led_on = true;
printf("Test print\n");
while (true) { while (true) {
cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, led_on); cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, led_on);
led_on = !led_on; // Toggle LED state led_on = !led_on; // Toggle LED state