diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-03-31 17:01:58 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-03-31 17:01:58 +0200 |
commit | 4b405fe0f6dbf6c6e377c1b04f20be27d7b7a761 (patch) | |
tree | 01cabcbfc7889aac43f44709771f4b5ff8fbc235 /main/main.cpp | |
parent | 41932400f68b7af671ee18df958c078e0c8d06e1 (diff) |
add led blink + compile_commands.json for CoC autocomplete
Diffstat (limited to 'main/main.cpp')
-rw-r--r-- | main/main.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index e3e3b92..9fd3123 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -5,13 +5,17 @@ #include "pico/stdlib.h" #include "pico/cyw43_arch.h" +const unsigned int LED_PIN = CYW43_WL_GPIO_LED_PIN; + int main() { stdio_init_all(); + sleep_ms(2000); - if (cyw43_arch_init_with_country(CYW43_COUNTRY_UK)) { + if (cyw43_arch_init_with_country(CONF_NET_COUNTRY)) { printf("failed to initialize\n"); return 1; } + cyw43_arch_gpio_put(LED_PIN, 1); printf("initialised\n"); cyw43_arch_enable_sta_mode(); @@ -21,5 +25,12 @@ int main() { return 1; } printf("connected\n"); + + while (true) { + cyw43_arch_gpio_put(LED_PIN, 0); + sleep_ms(250); + cyw43_arch_gpio_put(LED_PIN, 1); + sleep_ms(250); + } } |