From 7c30fe0be98a3028964d437f5c31cc968fbf9755 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 15 Sep 2024 23:16:00 -0600 Subject: wip --- hello_world.c | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 hello_world.c (limited to 'hello_world.c') diff --git a/hello_world.c b/hello_world.c deleted file mode 100644 index 53e341c..0000000 --- a/hello_world.c +++ /dev/null @@ -1,14 +0,0 @@ -#include -#include "pico/stdlib.h" - -int main() { - stdio_init_all(); - gpio_init(PICO_DEFAULT_LED_PIN); - gpio_set_dir(PICO_DEFAULT_LED_PIN, GPIO_OUT); - - for (bool st = true; true; st = !st) { - gpio_put(PICO_DEFAULT_LED_PIN, st); - printf("Hello, world!\n"); - sleep_ms(1000); - } -} -- cgit v1.2.3-2-g168b